1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- SectionGroup $(IDS_GRP_WALIB_CORE) IDX_GRP_WALIB_CORE ; Core Media Library Components
- ${WinampSection} "mediaLibraryLocalMedia" $(sec_ML_LOCAL) IDX_SEC_ML_LOCAL ; >>> [Local Media]
- ${SECTIONIN_STD}
- SetOutPath $INSTDIR\Shared
- File ${FILES_PATH}\Shared\nde.dll
- File ${FILES_PATH}\Shared\nxlite.dll
- File ${FILES_PATH}\Shared\jnetlib.dll
- SetOutPath $INSTDIR\System
- ; File ${FILES_PATH}\System\dlmgr.w5s
- ; File /nonfatal ${FILES_PATH}\System\dlmgr.wbm
- File "${FILES_PATH}\System\wac_downloadManager.w5s"
- SetOutPath $INSTDIR\Plugins
- File ${FILES_PATH}\Plugins\ml_local.dll
- ${If} ${FileExists} "$INSTDIR\Plugins\gen_pcfix.dll"
- Rename "$INSTDIR\Plugins\gen_pcfix.dll" "$INSTDIR\Plugins\gen_pcfix.dll.off" ; disable ShaneH's playcount tracking plugin
- ${EndIf}
- ${WinampSectionEnd} ; <<< [Local Media]
- ${WinampSection} "mediaLibraryPlaylists" $(sec_ML_PLAYLISTS) IDX_SEC_ML_PLAYLISTS ; >>> [Playlists]
- ${SECTIONIN_STD}
- SetOutPath $INSTDIR\Plugins
- File ${FILES_PATH}\Plugins\ml_playlists.dll
- SetOutPath $INSTDIR\Shared
- File ${FILES_PATH}\Shared\nxlite.dll
- ${WinampSectionEnd} ; <<< [Playlists]
-
- !ifndef WINAMP64
- !ifdef full
- ${WinampSection} "mediaLibraryRipBurn" $(sec_ML_DISC) IDX_SEC_ML_DISC ; >>> [CD Rip & Burn]
- ${SECTIONIN_FULL}
- SetOutPath $INSTDIR
- SetOutPath $INSTDIR\Plugins
- File ${FILES_PATH}\Plugins\ml_disc.dll
- ${WinampSectionEnd} ; <<< [CD Rip & Burn]
- !endif
- !endif
- !ifndef WINAMP64
- !ifdef full
- ${WinampSection} "mediaLibraryBookmarks" $(sec_ML_BOOKMARKS) IDX_SEC_ML_BOOKMARKS ; >>> [Bookmarks]
- ${SECTIONIN_FULL}
- SetOutPath $INSTDIR\Plugins
- File ${FILES_PATH}\Plugins\ml_bookmarks.dll
- ${WinampSectionEnd} ; <<< [Bookmarks]
- !endif
- !endif ;WINAMP64
- !ifndef WINAMP64
- !ifdef full
- ${WinampSection} "mediaLibraryHistory" $(sec_ML_HISTORY) IDX_SEC_ML_HISTORY ; >>> [History]
- ${SECTIONIN_FULL}
- SetOutPath $INSTDIR\Shared
- File ${FILES_PATH}\Shared\nde.dll
- File ${FILES_PATH}\Shared\nxlite.dll
- File ${FILES_PATH}\Shared\jnetlib.dll
- SetOutPath $INSTDIR\Plugins
- File ${FILES_PATH}\Plugins\ml_history.dll
- ${WinampSectionEnd} ; <<< [History]
- !endif
- !endif ;WINAMP64
- SectionGroupEnd ; Core Media Library Components
|