grp_walib_core.nsh 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. SectionGroup $(IDS_GRP_WALIB_CORE) IDX_GRP_WALIB_CORE ; Core Media Library Components
  2. ${WinampSection} "mediaLibraryLocalMedia" $(sec_ML_LOCAL) IDX_SEC_ML_LOCAL ; >>> [Local Media]
  3. ${SECTIONIN_STD}
  4. SetOutPath $INSTDIR\Shared
  5. File ${FILES_PATH}\Shared\nde.dll
  6. File ${FILES_PATH}\Shared\nxlite.dll
  7. File ${FILES_PATH}\Shared\jnetlib.dll
  8. SetOutPath $INSTDIR\System
  9. ; File ${FILES_PATH}\System\dlmgr.w5s
  10. ; File /nonfatal ${FILES_PATH}\System\dlmgr.wbm
  11. File "${FILES_PATH}\System\wac_downloadManager.w5s"
  12. SetOutPath $INSTDIR\Plugins
  13. File ${FILES_PATH}\Plugins\ml_local.dll
  14. ${If} ${FileExists} "$INSTDIR\Plugins\gen_pcfix.dll"
  15. Rename "$INSTDIR\Plugins\gen_pcfix.dll" "$INSTDIR\Plugins\gen_pcfix.dll.off" ; disable ShaneH's playcount tracking plugin
  16. ${EndIf}
  17. ${WinampSectionEnd} ; <<< [Local Media]
  18. ${WinampSection} "mediaLibraryPlaylists" $(sec_ML_PLAYLISTS) IDX_SEC_ML_PLAYLISTS ; >>> [Playlists]
  19. ${SECTIONIN_STD}
  20. SetOutPath $INSTDIR\Plugins
  21. File ${FILES_PATH}\Plugins\ml_playlists.dll
  22. SetOutPath $INSTDIR\Shared
  23. File ${FILES_PATH}\Shared\nxlite.dll
  24. ${WinampSectionEnd} ; <<< [Playlists]
  25. !ifndef WINAMP64
  26. !ifdef full
  27. ${WinampSection} "mediaLibraryRipBurn" $(sec_ML_DISC) IDX_SEC_ML_DISC ; >>> [CD Rip & Burn]
  28. ${SECTIONIN_FULL}
  29. SetOutPath $INSTDIR
  30. SetOutPath $INSTDIR\Plugins
  31. File ${FILES_PATH}\Plugins\ml_disc.dll
  32. ${WinampSectionEnd} ; <<< [CD Rip & Burn]
  33. !endif
  34. !endif
  35. !ifndef WINAMP64
  36. !ifdef full
  37. ${WinampSection} "mediaLibraryBookmarks" $(sec_ML_BOOKMARKS) IDX_SEC_ML_BOOKMARKS ; >>> [Bookmarks]
  38. ${SECTIONIN_FULL}
  39. SetOutPath $INSTDIR\Plugins
  40. File ${FILES_PATH}\Plugins\ml_bookmarks.dll
  41. ${WinampSectionEnd} ; <<< [Bookmarks]
  42. !endif
  43. !endif ;WINAMP64
  44. !ifndef WINAMP64
  45. !ifdef full
  46. ${WinampSection} "mediaLibraryHistory" $(sec_ML_HISTORY) IDX_SEC_ML_HISTORY ; >>> [History]
  47. ${SECTIONIN_FULL}
  48. SetOutPath $INSTDIR\Shared
  49. File ${FILES_PATH}\Shared\nde.dll
  50. File ${FILES_PATH}\Shared\nxlite.dll
  51. File ${FILES_PATH}\Shared\jnetlib.dll
  52. SetOutPath $INSTDIR\Plugins
  53. File ${FILES_PATH}\Plugins\ml_history.dll
  54. ${WinampSectionEnd} ; <<< [History]
  55. !endif
  56. !endif ;WINAMP64
  57. SectionGroupEnd ; Core Media Library Components