diff --git a/CMakeLists.txt b/CMakeLists.txt index aac9a8394..f1ce94baa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,6 +61,9 @@ endif (NOT WIN32 AND NOT APPLE AND NOT ENABLE_UBUNTU) if (WIN32 OR APPLE) option(ENABLE_DEVICES_SUPPORT "Enable suport for external devices" OFF) + if (NOT CANTATA_ICON_THEME) + set(CANTATA_ICON_THEME "humanity") + endif (NOT CANTATA_ICON_THEME) else (WIN32 OR APPLE) option(ENABLE_DEVICES_SUPPORT "Enable suport for external devices" ON) endif (WIN32 OR APPLE) @@ -80,7 +83,7 @@ option(ENABLE_MTP "Enable MTP library (required to support MTP devices)" ON) option(ENABLE_UNCACHED_MTP "Open MTP devices in un-cached mode (faster)" ON) if (WIN32) - set(CANTATA_ICON_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}/icons/oxygen) + set(CANTATA_ICON_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}/icons/${CANTATA_ICON_THEME}) elseif (APPLE) set(ENABLE_QT5 ON) set(MACOSX_BUNDLE_BUNDLE_NAME Cantata) @@ -92,7 +95,7 @@ elseif (APPLE) set(CANTATA_APP_CONTENTS_DIR ${CMAKE_INSTALL_PREFIX}/Cantata.app/Contents) set(MACOSX_BUNDLE_RESOURCES ${CANTATA_APP_CONTENTS_DIR}/Resources) set(MACOSX_BUNDLE_APP_DIR ${CANTATA_APP_CONTENTS_DIR}/MacOS) - set(CANTATA_ICON_INSTALL_PREFIX ${MACOSX_BUNDLE_RESOURCES}/icons/oxygen) + set(CANTATA_ICON_INSTALL_PREFIX ${MACOSX_BUNDLE_RESOURCES}/icons/${CANTATA_ICON_THEME}) elseif (NOT ENABLE_UBUNTU) set(CANTATA_ICON_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor) endif (WIN32) @@ -899,7 +902,7 @@ else (ENABLE_UBUNTU) if (NOT CMAKE_SYSTEM_NAME MATCHES Linux) message("-----------------------------------------------------------------------------") - message("-- You NEED to have the Oxygen icons installed!!!") + message("-- You NEED to have the ${CANTATA_ICON_THEME} icons installed!!!") message("-----------------------------------------------------------------------------") message("") endif (NOT CMAKE_SYSTEM_NAME MATCHES Linux) diff --git a/ChangeLog b/ChangeLog index 46d3f6d6b..676452e4b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -68,6 +68,7 @@ 48. libCDDB can crash if it cannot talk to server, so before querying check whether we can connect. 49. Save scaled covers as PNG, as the quality is much better. +50. Use Huanity/gnome icons for Windows and Mac builds. 1.5.2 ----- diff --git a/INSTALL b/INSTALL index 4aaf0ebd5..f0c2e79df 100644 --- a/INSTALL +++ b/INSTALL @@ -166,6 +166,13 @@ The following options may be passed to CMake: Windows/Mac specific: + -DCANTATA_ICON_THEME= + Name of icon theme to package. Currently only humanity and oxygen are + supported. Also, humanity requires 2 icons from gnome - for this reason + please use the copy from Cantata's googledrive (refer to README for the + location) + Default: humanity + -DCANTATA_ICONS_DIR= Path to icons, required for install stage. Default: diff --git a/README b/README index d41f0b228..4b64b45d0 100644 --- a/README +++ b/README @@ -920,7 +920,7 @@ This assumes the following folder structure: z:\cantata\src [ Checkout of Cantata's source code ] z:\cantata\build z:\cantata\install [ make install will place target files here ] - z:\cantata\icons [ Oxygen icons folder ] + z:\cantata\icons [ Humanity/Oxygen icons folder ] z:\dev\MingGW z:\dev\Qt\4.8.4 z:\dev\taglib @@ -935,7 +935,12 @@ This assumes the following folder structure: QTDIR=z:\dev\Qt\4.8.4 PATH=z:\dev\Qt\4.8.4\bin;z:\dev\MinGW\bin;z:\dev\taglib\bin;z:\dev\cmake\bin -3. Download oxygen icons required for Cantata from the following link +3a. Download Humanity/gnome required for Cantata from the following link + https://drive.google.com/file/d/0Bzghs6gQWi60QUxuakFQNWF0VU0/view?usp=sharing + + - OR - + +3b. Download oxygen icons required for Cantata from the following link https://drive.google.com/file/d/0Bzghs6gQWi60cXlvUURjeEVRUms/edit?usp=sharing 4. Unzip this *within* icons/ @@ -943,8 +948,11 @@ This assumes the following folder structure: 5. Call cmake (e.g. from build folder): cmake ../src -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DENABLE_TAGLIB=OFF -DTAGLIB_FOUND=1 -DTAGLIB_INCLUDES=z:/dev/taglib/include -DTAGLIB_LIBRARIES=z:/dev/taglib/lib/libtag.dll.a -DTAGLIB_MP4_FOUND=1 -DTAGLIB_ASF_FOUND=1 -DTAGLIB_CAN_SAVE_ID3VER=1 -DZLIB_INCLUDE_DIR=z:/dev/zlib/include -DZLIB_LIBRARY=z:/dev/zlib/lib/libz.dll.a -DCMAKE_INSTALL_PREFIX=z:/cantata/install -DCANTATA_WINDOWS_INSTALLER_DEST=z:/cantata -DCANTATA_MINGW_LIBS=z:/dev/MinGW/bin/mingwm10.dll;z:/dev/MinGW/bin/libgcc_s_dw2-1.dll -DCANTATA_SSL_LIBS=z:/dev/ssl/libeay32.dll;z:/dev/ssl/ssleay32.dll -DCANTATA_ICONS_DIR=z:/cantata/icons - (Note: -DENABLE_TAGLIB=OFF stops cmake from trying to find TagLib, as the - TagLib settings have been manually set) + Notes: -DENABLE_TAGLIB=OFF stops cmake from trying to find TagLib, as the + TagLib settings have been manually set, + + If using oxygen icons (i.e. you used step 3b not 3a), then also pass + -DCANTATA_ICON_THEME=oxygen 6. make @@ -966,7 +974,7 @@ This assumes the following folder structure: z:\cantata\src [ Checkout of Cantata's source code ] z:\cantata\build z:\cantata\install [ make install will place target files here ] - z:\cantata\icons [ Oxygen icons folder ] + z:\cantata\icons [ Humanity/Oxygen icons folder ] z:\dev\Qt z:\dev\taglib z:\dev\zlib @@ -980,7 +988,12 @@ s QTDIR=z:\dev\Qt\5.3\mingw482_32 PATH=z:\dev\Qt\5.3\mingw482_32\bin;z:\dev\Qt\Tools\mingw482_32\bin;z:\dev\taglib\bin;z:\dev\cmake\bin -3. Download oxygen icons required for Cantata from the following link +3a. Download Humanity/gnome required for Cantata from the following link + https://drive.google.com/file/d/0Bzghs6gQWi60QUxuakFQNWF0VU0/view?usp=sharing + + - OR - + +3b. Download oxygen icons required for Cantata from the following link https://drive.google.com/file/d/0Bzghs6gQWi60cXlvUURjeEVRUms/edit?usp=sharing 4. Unzip this *within* icons/ @@ -988,8 +1001,11 @@ s 5. Load cantata's CMakeLists.txt in QtCreator, and pass the following to cmake: ../src -DCMAKE_BUILD_TYPE=Release -DENABLE_TAGLIB=OFF -DTAGLIB_FOUND=1 -DTAGLIB_INCLUDES=z:/dev/taglib/include -DTAGLIB_LIBRARIES=z:/dev/taglib/lib/libtag.dll.a -DTAGLIB_MP4_FOUND=1 -DTAGLIB_ASF_FOUND=1 -DTAGLIB_CAN_SAVE_ID3VER=1 -DZLIB_INCLUDE_DIR=z:/dev/zlib/include -DZLIB_LIBRARY=z:/dev/zlib/lib/libz.dll.a -DCMAKE_INSTALL_PREFIX=z:/cantata/install -DCANTATA_WINDOWS_INSTALLER_DEST=z:/cantata -DENABLE_QT5=ON -DCANTATA_SSL_LIBS=z:/dev/ssl/libeay32.dll;z:/dev/ssl/ssleay32.dll -DCANTATA_ICONS_DIR=z:/cantata/icons - (Note: -DENABLE_TAGLIB=OFF stops cmake from trying to find TagLib, as the - TagLib settings have been manually set) + Notes: -DENABLE_TAGLIB=OFF stops cmake from trying to find TagLib, as the + TagLib settings have been manually set, + + If using oxygen icons (i.e. you used step 3b not 3a), then also pass + -DCANTATA_ICON_THEME=oxygen 6. Build via QtCreator @@ -1046,7 +1062,12 @@ These steps assume the following structure: 3. brew install cmake taglib ffmpeg speex -4. Download oxygen icons required for Cantata from the following link +4a. Download Humanity/gnome required for Cantata from the following link + https://drive.google.com/file/d/0Bzghs6gQWi60QUxuakFQNWF0VU0/view?usp=sharing + + - OR - + +4b. Download oxygen icons required for Cantata from the following link https://drive.google.com/file/d/0Bzghs6gQWi60cXlvUURjeEVRUms/edit?usp=sharing 5. Unzip this *within* icons/ @@ -1054,6 +1075,8 @@ These steps assume the following structure: 6. Load cantata's CMakeLists.txt in QtCreator, and pass the following to cmake: ../src -DCMAKE_PREFIX_PATH=/Users/$USER/Qt/5.3/clang_64/ -DCMAKE_BUILD_TYPE=Release -DCANTATA_ICONS_DIR=`pwd`/../icons -DCMAKE_INSTALL_PREFIX=`pwd`/../install + If using oxygen icons (i.e. you used step 4b not 4a), then also pass -DCANTATA_ICON_THEME=oxygen + 7. Build via QtCreator 8. Create an 'install' project in QtCreator diff --git a/config.h.cmake b/config.h.cmake index 6323da807..fbf2e1eee 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -69,4 +69,6 @@ #define LINUX_LIB_DIR "@LINUX_LIB_DIR@" +#define CANTATA_ICON_THEME "@CANTATA_ICON_THEME@" + #endif diff --git a/gui/application_mac.cpp b/gui/application_mac.cpp index d667d57d1..eeccfd722 100644 --- a/gui/application_mac.cpp +++ b/gui/application_mac.cpp @@ -24,6 +24,7 @@ #include "application_mac.h" #include "settings.h" #include "support/utils.h" +#include "config.h" #include Application::Application(int &argc, char **argv) @@ -43,5 +44,5 @@ Application::Application(int &argc, char **argv) QIcon::setThemeSearchPaths(QStringList() << path << paths); } - QIcon::setThemeName(QLatin1String("oxygen")); + QIcon::setThemeName(QLatin1String(CANTATA_ICON_THEME)); } diff --git a/gui/application_win.cpp b/gui/application_win.cpp index 42bcb7c69..9a152d777 100644 --- a/gui/application_win.cpp +++ b/gui/application_win.cpp @@ -23,6 +23,7 @@ #include "application_win.h" #include "settings.h" +#include "config.h" #include #include @@ -32,7 +33,7 @@ Application::Application(int &argc, char **argv) #if QT_VERSION >= 0x050000 installNativeEventFilter(this); #endif - QIcon::setThemeName(QLatin1String("oxygen")); + QIcon::setThemeName(QLatin1String(CANTATA_ICON_THEME)); #if QT_VERSION >= 0x050400 if (Settings::self()->retinaSupport()) { setAttribute(Qt::AA_UseHighDpiPixmaps); diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt index 4da6e5c7d..cdc3ecf5a 100644 --- a/icons/CMakeLists.txt +++ b/icons/CMakeLists.txt @@ -13,13 +13,23 @@ if (NOT WIN32 AND NOT APPLE) endmacro (update_iconcache) endif (NOT WIN32 AND NOT APPLE) -install(FILES cantata.svg DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/scalable/apps) -install(FILES cantata16.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/16x16/apps RENAME cantata.png) -install(FILES cantata22.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/22x22/apps RENAME cantata.png) -install(FILES cantata24.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/24x24/apps RENAME cantata.png) -install(FILES cantata32.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/32x32/apps RENAME cantata.png) -install(FILES cantata48.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/48x48/apps RENAME cantata.png) -install(FILES cantata64.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/64x64/apps RENAME cantata.png) +if ((NOT WIN32 AND NOT APPLE) OR (CANTATA_ICON_THEME STREQUAL "oxygen")) + install(FILES cantata.svg DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/scalable/apps) + install(FILES cantata16.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/16x16/apps RENAME cantata.png) + install(FILES cantata22.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/22x22/apps RENAME cantata.png) + install(FILES cantata24.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/24x24/apps RENAME cantata.png) + install(FILES cantata32.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/32x32/apps RENAME cantata.png) + install(FILES cantata48.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/48x48/apps RENAME cantata.png) + install(FILES cantata64.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/64x64/apps RENAME cantata.png) +else ((NOT WIN32 AND NOT APPLE) OR (CANTATA_ICON_THEME STREQUAL "oxygen")) + install(FILES cantata.svg DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/apps/scalable) + install(FILES cantata16.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/apps/16 RENAME cantata.png) + install(FILES cantata22.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/apps/22 RENAME cantata.png) + install(FILES cantata24.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/apps/24 RENAME cantata.png) + install(FILES cantata32.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/apps/32 RENAME cantata.png) + install(FILES cantata48.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/apps/48 RENAME cantata.png) + install(FILES cantata64.png DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/apps/64 RENAME cantata.png) +endif ((NOT WIN32 AND NOT APPLE) OR (CANTATA_ICON_THEME STREQUAL "oxygen")) if (NOT WIN32 AND NOT APPLE) update_iconcache(hicolor) diff --git a/mac/CMakeLists.txt b/mac/CMakeLists.txt index ddcd51621..f401ed42a 100644 --- a/mac/CMakeLists.txt +++ b/mac/CMakeLists.txt @@ -10,6 +10,6 @@ endforeach(qm ${qt_trans}) install(FILES ${qt_translations} DESTINATION ${MACOSX_BUNDLE_RESOURCES}/translations/) if (CANTATA_ICONS_DIR) - add_subdirectory(${CMAKE_SOURCE_DIR}/windows/icons ${CMAKE_CURRENT_BINARY_DIR}/icons) + add_subdirectory(${CMAKE_SOURCE_DIR}/windows/icons-${CANTATA_ICON_THEME} ${CMAKE_CURRENT_BINARY_DIR}/icons) endif (CANTATA_ICONS_DIR) diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt index c5261c6b7..ae4ecaf21 100644 --- a/windows/CMakeLists.txt +++ b/windows/CMakeLists.txt @@ -13,7 +13,7 @@ if (ENABLE_QT5) set(QT_PLUGINS_DIR ${QT_DIR}/plugins) set(QT_TRANSLATIONS_DIR ${QT_DIR}/translations) - configure_file(cantata-qt5.nsi.cmake ${CMAKE_CURRENT_BINARY_DIR}/cantata.nsi) + configure_file(cantata-qt5-${CANTATA_ICON_THEME}.nsi.cmake ${CMAKE_CURRENT_BINARY_DIR}/cantata.nsi) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cantata.nsi cantata.ico LICENSE.txt "Cantata README.txt" "Qt License (LGPL V2).txt" "TagLib README.txt" DESTINATION ${CMAKE_INSTALL_PREFIX}) @@ -37,7 +37,7 @@ if (ENABLE_QT5) ${QT_BINARY_DIR}/libgcc_s_dw2-1.dll ${QT_BINARY_DIR}/libstdc++-6.dll ${QT_BINARY_DIR}/libwinpthread-1.dll ${ZLIB_INCLUDE_DIR}/../bin/libz-1.dll ${TAGLIB_INCLUDES}/../bin/libtag.dll) else (ENABLE_QT5) - configure_file(cantata.nsi.cmake ${CMAKE_CURRENT_BINARY_DIR}/cantata.nsi) + configure_file(cantata-${CANTATA_ICON_THEME}.nsi.cmake ${CMAKE_CURRENT_BINARY_DIR}/cantata.nsi) configure_file(cantata.iss.cmake ${CMAKE_CURRENT_BINARY_DIR}/cantata.iss) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cantata.nsi cantata.ico LICENSE.txt "Cantata README.txt" "Qt4 README.txt" "Qt License (LGPL V2).txt" "TagLib README.txt" DESTINATION ${CMAKE_INSTALL_PREFIX}) @@ -69,5 +69,5 @@ install(FILES ${EXTRA_WIN_LIBS} DESTINATION ${CMAKE_INSTALL_PREFIX}) install(FILES LICENSE.txt DESTINATION ${CMAKE_INSTALL_PREFIX} RENAME "Cantata License (GPL V3).txt") if (CANTATA_ICONS_DIR) - add_subdirectory(icons) + add_subdirectory(icons-${CANTATA_ICON_THEME}) endif (CANTATA_ICONS_DIR) diff --git a/windows/cantata-humanity.nsi.cmake b/windows/cantata-humanity.nsi.cmake new file mode 100644 index 000000000..da79b317e --- /dev/null +++ b/windows/cantata-humanity.nsi.cmake @@ -0,0 +1,988 @@ +!define APPNAME "@WINDOWS_APP_NAME@" +!define COMPANYNAME "@WINDOWS_COMPANY_NAME@" +!define DESCRIPTION "MPD Client" +!define VERSIONMAJOR @CPACK_PACKAGE_VERSION_MAJOR@ +!define VERSIONMINOR @CPACK_PACKAGE_VERSION_MINOR@ +!define VERSIONBUILD @CPACK_PACKAGE_VERSION_PATCH@@CPACK_PACKAGE_VERSION_SPIN@ +#!define HELPURL "http://..." # "Support Information" link +#!define UPDATEURL "http://..." # "Product Updates" link +!define ABOUTURL "https://github.com/CDrummond/cantata" # "Publisher" link + +RequestExecutionLevel admin + +SetCompressor /SOLID lzma +!include "MUI2.nsh" + +InstallDir "$PROGRAMFILES\@WINDOWS_APP_NAME@" +# This will be in the installer/uninstaller's title bar +Name "@WINDOWS_APP_NAME@" +Icon "cantata.ico" +outFile "@WINDOWS_APP_NAME@-@CANTATA_VERSION_WITH_SPIN@-Setup.exe" + +!define MUI_ABORTWARNING +!define MUI_ICON "cantata.ico" + +!insertmacro MUI_PAGE_WELCOME +!insertmacro MUI_PAGE_LICENSE "LICENSE.txt" +!insertmacro MUI_PAGE_DIRECTORY +!insertmacro MUI_PAGE_INSTFILES +!insertmacro MUI_PAGE_FINISH + +!insertmacro MUI_UNPAGE_CONFIRM +!insertmacro MUI_UNPAGE_INSTFILES +!insertmacro MUI_UNPAGE_FINISH + +!insertmacro MUI_LANGUAGE "English" ;first language is the default language +!insertmacro MUI_LANGUAGE "French" +!insertmacro MUI_LANGUAGE "German" +!insertmacro MUI_LANGUAGE "Spanish" +!insertmacro MUI_LANGUAGE "SpanishInternational" +!insertmacro MUI_LANGUAGE "SimpChinese" +!insertmacro MUI_LANGUAGE "TradChinese" +!insertmacro MUI_LANGUAGE "Japanese" +!insertmacro MUI_LANGUAGE "Korean" +!insertmacro MUI_LANGUAGE "Italian" +!insertmacro MUI_LANGUAGE "Dutch" +!insertmacro MUI_LANGUAGE "Danish" +!insertmacro MUI_LANGUAGE "Swedish" +!insertmacro MUI_LANGUAGE "Norwegian" +!insertmacro MUI_LANGUAGE "NorwegianNynorsk" +!insertmacro MUI_LANGUAGE "Finnish" +!insertmacro MUI_LANGUAGE "Greek" +!insertmacro MUI_LANGUAGE "Russian" +!insertmacro MUI_LANGUAGE "Portuguese" +!insertmacro MUI_LANGUAGE "PortugueseBR" +!insertmacro MUI_LANGUAGE "Polish" +!insertmacro MUI_LANGUAGE "Ukrainian" +!insertmacro MUI_LANGUAGE "Czech" +!insertmacro MUI_LANGUAGE "Slovak" +!insertmacro MUI_LANGUAGE "Croatian" +!insertmacro MUI_LANGUAGE "Bulgarian" +!insertmacro MUI_LANGUAGE "Hungarian" +!insertmacro MUI_LANGUAGE "Thai" +!insertmacro MUI_LANGUAGE "Romanian" +!insertmacro MUI_LANGUAGE "Latvian" +!insertmacro MUI_LANGUAGE "Macedonian" +!insertmacro MUI_LANGUAGE "Estonian" +!insertmacro MUI_LANGUAGE "Turkish" +!insertmacro MUI_LANGUAGE "Lithuanian" +!insertmacro MUI_LANGUAGE "Slovenian" +!insertmacro MUI_LANGUAGE "Serbian" +!insertmacro MUI_LANGUAGE "SerbianLatin" +!insertmacro MUI_LANGUAGE "Arabic" +!insertmacro MUI_LANGUAGE "Farsi" +!insertmacro MUI_LANGUAGE "Hebrew" +!insertmacro MUI_LANGUAGE "Indonesian" +!insertmacro MUI_LANGUAGE "Mongolian" +!insertmacro MUI_LANGUAGE "Luxembourgish" +!insertmacro MUI_LANGUAGE "Albanian" +!insertmacro MUI_LANGUAGE "Breton" +!insertmacro MUI_LANGUAGE "Belarusian" +!insertmacro MUI_LANGUAGE "Icelandic" +!insertmacro MUI_LANGUAGE "Malay" +!insertmacro MUI_LANGUAGE "Bosnian" +!insertmacro MUI_LANGUAGE "Kurdish" +!insertmacro MUI_LANGUAGE "Irish" +!insertmacro MUI_LANGUAGE "Uzbek" +!insertmacro MUI_LANGUAGE "Galician" +!insertmacro MUI_LANGUAGE "Afrikaans" +!insertmacro MUI_LANGUAGE "Catalan" +!insertmacro MUI_LANGUAGE "Esperanto" + +section "install" + # Files for the install directory - to build the installer, these should be in the same directory as the install script (this file) + setOutPath $INSTDIR + # Files added here should be removed by the uninstaller (see section "uninstall") + file "cantata.exe" + file "cantata-tags.exe" + file "Cantata License (GPL V3).txt" + file "Cantata README.txt" + file "Qt4 README.txt" + file "Qt License (LGPL V2).txt" + file "TagLib README.txt" + file "libz-1.dll" + @CANTATA_SSL_WIN_NSIS_INSTALL@ + file "libgcc_s_dw2-1.dll" + file "libtag.dll" + file "mingwm10.dll" + file "QtCore4.dll" + file "QtGui4.dll" + file "QtNetwork4.dll" + file "QtSvg4.dll" + file "QtXml4.dll" + file "QtSql4.dll" + file "libtag.dll" + setOutPath $INSTDIR\config + file "config\lyrics_providers.xml" + file "config\podcast_directories.xml" + file "config\scrobblers.xml" + file "config\tag_fixes.xml" + file "config\weblinks.xml" + setOutPath $INSTDIR\iconengines + file "iconengines\qsvgicon4.dll" + setOutPath $INSTDIR\sqldrivers + file "sqldrivers\qsqlite4.dll" + setOutPath $INSTDIR\icons + file "icons\bbc.svg" + file "icons\cbc.svg" + file "icons\npr.svg" + file "icons\podcasts.png" + file "icons\soundcloud.png" + file "icons\stream.png" + setOutPath $INSTDIR\icons\humanity + file "icons\humanity\gnome.copyright" + file "icons\humanity\Humanity.copyright" + file "icons\humanity\index.theme" + file "icons\humanity\README" + setOutPath $INSTDIR\icons\humanity\status\16 + file "icons\humanity\status\16\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\48 + file "icons\humanity\status\48\media-playlist-shuffle.svg" + file "icons\humanity\status\48\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\128 + file "icons\humanity\status\128\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\24 + file "icons\humanity\status\24\media-playlist-shuffle.svg" + file "icons\humanity\status\24\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\32 + file "icons\humanity\status\32\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\64 + file "icons\humanity\status\64\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\22 + file "icons\humanity\status\22\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\devices\16 + file "icons\humanity\devices\16\drive-harddisk.svg" + file "icons\humanity\devices\16\media-optical.svg" + file "icons\humanity\devices\16\media-optical-cd.svg" + file "icons\humanity\devices\16\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\48 + file "icons\humanity\devices\48\drive-harddisk.svg" + file "icons\humanity\devices\48\media-optical.svg" + file "icons\humanity\devices\48\media-optical-cd.svg" + file "icons\humanity\devices\48\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\128 + file "icons\humanity\devices\128\drive-harddisk.svg" + file "icons\humanity\devices\128\media-optical.svg" + file "icons\humanity\devices\128\media-optical-cd.svg" + setOutPath $INSTDIR\icons\humanity\devices\24 + file "icons\humanity\devices\24\drive-harddisk.svg" + file "icons\humanity\devices\24\media-optical.svg" + file "icons\humanity\devices\24\media-optical-cd.svg" + file "icons\humanity\devices\24\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\32 + file "icons\humanity\devices\32\drive-harddisk.svg" + file "icons\humanity\devices\32\media-optical.svg" + file "icons\humanity\devices\32\media-optical-cd.svg" + file "icons\humanity\devices\32\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\64 + file "icons\humanity\devices\64\drive-harddisk.svg" + file "icons\humanity\devices\64\media-optical.svg" + file "icons\humanity\devices\64\media-optical-cd.svg" + setOutPath $INSTDIR\icons\humanity\devices\22 + file "icons\humanity\devices\22\drive-harddisk.svg" + file "icons\humanity\devices\22\media-optical.svg" + file "icons\humanity\devices\22\media-optical-cd.svg" + file "icons\humanity\devices\22\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\places\16 + file "icons\humanity\places\16\folder-documents.svg" + file "icons\humanity\places\16\folder-templates.svg" + file "icons\humanity\places\16\folder-publicshare.svg" + file "icons\humanity\places\16\inode-directory.svg" + file "icons\humanity\places\16\folder-download.svg" + file "icons\humanity\places\16\folder.svg" + file "icons\humanity\places\16\user-desktop.svg" + file "icons\humanity\places\16\folder-downloads.svg" + file "icons\humanity\places\16\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\48 + file "icons\humanity\places\48\folder-documents.svg" + file "icons\humanity\places\48\folder-templates.svg" + file "icons\humanity\places\48\folder-publicshare.svg" + file "icons\humanity\places\48\inode-directory.svg" + file "icons\humanity\places\48\folder-download.svg" + file "icons\humanity\places\48\folder.svg" + file "icons\humanity\places\48\user-desktop.svg" + file "icons\humanity\places\48\folder-downloads.svg" + file "icons\humanity\places\48\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\128 + file "icons\humanity\places\128\user-desktop.svg" + setOutPath $INSTDIR\icons\humanity\places\24 + file "icons\humanity\places\24\folder-documents.svg" + file "icons\humanity\places\24\folder-templates.svg" + file "icons\humanity\places\24\folder-publicshare.svg" + file "icons\humanity\places\24\inode-directory.svg" + file "icons\humanity\places\24\folder-download.svg" + file "icons\humanity\places\24\folder.svg" + file "icons\humanity\places\24\user-desktop.svg" + file "icons\humanity\places\24\folder-downloads.svg" + file "icons\humanity\places\24\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\32 + file "icons\humanity\places\32\folder-documents.svg" + file "icons\humanity\places\32\folder-templates.svg" + file "icons\humanity\places\32\folder-publicshare.svg" + file "icons\humanity\places\32\inode-directory.svg" + file "icons\humanity\places\32\folder-download.svg" + file "icons\humanity\places\32\folder.svg" + file "icons\humanity\places\32\user-desktop.svg" + file "icons\humanity\places\32\folder-downloads.svg" + file "icons\humanity\places\32\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\64 + file "icons\humanity\places\64\folder-documents.svg" + file "icons\humanity\places\64\folder-templates.svg" + file "icons\humanity\places\64\folder-publicshare.svg" + file "icons\humanity\places\64\inode-directory.svg" + file "icons\humanity\places\64\folder-download.svg" + file "icons\humanity\places\64\folder.svg" + file "icons\humanity\places\64\user-desktop.svg" + file "icons\humanity\places\64\folder-downloads.svg" + file "icons\humanity\places\64\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\22 + file "icons\humanity\places\22\folder-documents.svg" + file "icons\humanity\places\22\folder-templates.svg" + file "icons\humanity\places\22\folder-publicshare.svg" + file "icons\humanity\places\22\inode-directory.svg" + file "icons\humanity\places\22\folder-download.svg" + file "icons\humanity\places\22\folder.svg" + file "icons\humanity\places\22\user-desktop.svg" + file "icons\humanity\places\22\folder-downloads.svg" + file "icons\humanity\places\22\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\actions\16 + file "icons\humanity\actions\16\go-down.svg" + file "icons\humanity\actions\16\gtk-edit.svg" + file "icons\humanity\actions\16\edit-clear.svg" + file "icons\humanity\actions\16\go-previous.svg" + file "icons\humanity\actions\16\go-up.svg" + file "icons\humanity\actions\16\document-open.svg" + file "icons\humanity\actions\16\edit-find.png" + file "icons\humanity\actions\16\document-new.svg" + file "icons\humanity\actions\16\go-next.svg" + setOutPath $INSTDIR\icons\humanity\actions\48 + file "icons\humanity\actions\48\go-down.svg" + file "icons\humanity\actions\48\gtk-edit.svg" + file "icons\humanity\actions\48\edit-clear.svg" + file "icons\humanity\actions\48\gtk-execute.svg" + file "icons\humanity\actions\48\document-open-recent.svg" + file "icons\humanity\actions\48\go-previous.svg" + file "icons\humanity\actions\48\go-up.svg" + file "icons\humanity\actions\48\document-open.svg" + file "icons\humanity\actions\48\edit-find.png" + file "icons\humanity\actions\48\document-new.svg" + file "icons\humanity\actions\48\go-next.svg" + setOutPath $INSTDIR\icons\humanity\actions\128 + file "icons\humanity\actions\128\document-new.svg" + setOutPath $INSTDIR\icons\humanity\actions\24 + file "icons\humanity\actions\24\go-down.svg" + file "icons\humanity\actions\24\gtk-edit.svg" + file "icons\humanity\actions\24\edit-clear.svg" + file "icons\humanity\actions\24\gtk-execute.svg" + file "icons\humanity\actions\24\document-open-recent.svg" + file "icons\humanity\actions\24\go-previous.svg" + file "icons\humanity\actions\24\go-up.svg" + file "icons\humanity\actions\24\document-open.svg" + file "icons\humanity\actions\24\edit-find.png" + file "icons\humanity\actions\24\document-new.svg" + file "icons\humanity\actions\24\go-next.svg" + setOutPath $INSTDIR\icons\humanity\actions\32 + file "icons\humanity\actions\32\edit-find.png" + file "icons\humanity\actions\32\document-new.svg" + setOutPath $INSTDIR\icons\humanity\actions\64 + file "icons\humanity\actions\64\document-new.svg" + setOutPath $INSTDIR\icons\humanity\actions\22 + file "icons\humanity\actions\22\go-down.svg" + file "icons\humanity\actions\22\gtk-edit.svg" + file "icons\humanity\actions\22\document-open-recent.svg" + file "icons\humanity\actions\22\go-previous.svg" + file "icons\humanity\actions\22\go-up.svg" + file "icons\humanity\actions\22\edit-find.png" + file "icons\humanity\actions\22\document-new.svg" + file "icons\humanity\actions\22\go-next.svg" + setOutPath $INSTDIR\icons\humanity\categories\48 + file "icons\humanity\categories\48\preferences-other.svg" + setOutPath $INSTDIR\icons\humanity\categories\24 + file "icons\humanity\categories\24\preferences-other.svg" + setOutPath $INSTDIR\icons\humanity\categories\64 + file "icons\humanity\categories\64\preferences-other.svg" + setOutPath $INSTDIR\icons\humanity\mimes\16 + file "icons\humanity\mimes\16\image-png.svg" + file "icons\humanity\mimes\16\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\16\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\mimes\48 + file "icons\humanity\mimes\48\image-png.svg" + file "icons\humanity\mimes\48\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\48\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\mimes\24 + file "icons\humanity\mimes\24\image-png.svg" + file "icons\humanity\mimes\24\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\24\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\mimes\22 + file "icons\humanity\mimes\22\image-png.svg" + file "icons\humanity\mimes\22\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\22\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\apps\16 + file "icons\humanity\apps\16\preferences-desktop-keyboard.svg" + file "icons\humanity\apps\16\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\48 + file "icons\humanity\apps\48\preferences-desktop-keyboard.svg" + file "icons\humanity\apps\48\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\24 + file "icons\humanity\apps\24\preferences-desktop-keyboard.svg" + file "icons\humanity\apps\24\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\22 + file "icons\humanity\apps\22\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\32 + file "icons\humanity\apps\32\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\64 + file "icons\humanity\apps\64\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\scalable + file "icons\humanity\apps\scalable\cantata.svg" + setOutPath $INSTDIR\imageformats + file "imageformats\qjpeg4.dll" + file "imageformats\qsvg4.dll" + setOutPath $INSTDIR\translations + file "translations\cantata_cs.qm" + file "translations\cantata_de.qm" + file "translations\cantata_en_GB.qm" + file "translations\cantata_es.qm" + file "translations\cantata_fr.qm" + file "translations\cantata_hu.qm" + file "translations\cantata_ko.qm" + file "translations\cantata_pl.qm" + file "translations\cantata_ru.qm" + file "translations\cantata_zh_CN.qm" + file "translations\qt_ar.qm" + file "translations\qt_cs.qm" + file "translations\qt_da.qm" + file "translations\qt_de.qm" + file "translations\qt_es.qm" + file "translations\qt_fa.qm" + file "translations\qt_fr.qm" + file "translations\qt_gl.qm" + file "translations\qt_he.qm" + file "translations\qt_hu.qm" + file "translations\qt_ja.qm" + file "translations\qt_ko.qm" + file "translations\qt_lt.qm" + file "translations\qt_pl.qm" + file "translations\qt_pt.qm" + file "translations\qt_ru.qm" + file "translations\qt_sk.qm" + file "translations\qt_sl.qm" + file "translations\qt_sv.qm" + file "translations\qt_uk.qm" + file "translations\qt_zh_CN.qm" + file "translations\qt_zh_TW.qm" + + writeUninstaller "$INSTDIR\uninstall.exe" + + # Start Menu + createShortCut "$SMPROGRAMS\@WINDOWS_APP_NAME@.lnk" "$INSTDIR\cantata.exe" "" "$INSTDIR\cantata.exe" + + # Registry information for add/remove programs + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "DisplayName" "@WINDOWS_APP_NAME@" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "UninstallString" "$\"$INSTDIR\uninstall.exe$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "QuietUninstallString" "$\"$INSTDIR\uninstall.exe$\" /S" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "InstallLocation" "$\"$INSTDIR$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "DisplayIcon" "$\"$INSTDIR\cantata.exe$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "Publisher" "@WINDOWS_COMPANY_NAME@" +# WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "HelpLink" "$\"${HELPURL}$\"" +# WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "URLUpdateInfo" "$\"${UPDATEURL}$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "URLInfoAbout" "$\"@WINDOWS_URL@$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "DisplayVersion" "@CANTATA_VERSION_WITH_SPIN@" + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "VersionMajor" @CPACK_PACKAGE_VERSION_MAJOR@ + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "VersionMinor" @CPACK_PACKAGE_VERSION_MINOR@ + # There is no option for modifying or repairing the install + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "NoModify" 1 + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "NoRepair" 1 + # Set the INSTALLSIZE constant (!defined at the top of this script) so Add/Remove Programs can accurately report the size + # WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "EstimatedSize" ${INSTALLSIZE} +sectionEnd + +# Uninstaller + +section "uninstall" + # Remove Start Menu launcher + delete "$SMPROGRAMS\@WINDOWS_APP_NAME@.lnk" + + delete "$INSTDIR\cantata.exe" + delete "$INSTDIR\cantata-tags.exe" + delete "$INSTDIR\Cantata README.txt" + delete "$INSTDIR\Cantata License (GPL V3).txt" + delete "$INSTDIR\config\lyrics_providers.xml" + delete "$INSTDIR\config\podcast_directories.xml" + delete "$INSTDIR\config\scrobblers.xml" + delete "$INSTDIR\config\tag_fixes.xml" + delete "$INSTDIR\config\weblinks.xml" + delete "$INSTDIR\helpers\cantata-tags.exe" + delete "$INSTDIR\iconengines\qsvgicon4.dll" + delete "$INSTDIR\sqldrivers\qsqlite4.dll" + delete "$INSTDIR\icons\bbc.svg" + delete "$INSTDIR\icons\cbc.svg" + delete "$INSTDIR\icons\npr.svg" + delete "$INSTDIR\icons\podcasts.png" + delete "$INSTDIR\icons\soundcloud.png" + delete "$INSTDIR\icons\stream.png" + delete "$INSTDIR\icons\oxygen\index.theme" + delete "$INSTDIR\icons\oxygen\Oxygen License (Creative Common Attribution-ShareAlike 3.0).html" + delete "$INSTDIR\icons\oxygen\Oxygen README.txt" + delete "$INSTDIR\icons\oxygen\128x128\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\128x128\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\application-exit.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\configure.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\dialog-cancel.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\dialog-close.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\dialog-ok.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-edit.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-export.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-import.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-new.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-open.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-save-as.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-save.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-clear-list.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-clear-locationbar-ltr.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-clear-locationbar-rtl.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-delete.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-rename.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\folder-sync.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-next.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-previous.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-up.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\list-add.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\list-remove.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-playback-pause.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-playback-start.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-playback-stop.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-skip-backward.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-skip-forward.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\process-stop.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\speaker.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\tools-wizard.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\fork.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-media-artist.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-refresh.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\clock.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\system-file-manager.png" + delete "$INSTDIR\icons\oxygen\16x16\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\16x16\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\16x16\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\16x16\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\16x16\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\16x16\mimetypes\audio-x-generic.png" + delete "$INSTDIR\icons\oxygen\16x16\mimetypes\inode-directory.png" + delete "$INSTDIR\icons\oxygen\16x16\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\16x16\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\16x16\places\favorites.png" + delete "$INSTDIR\icons\oxygen\16x16\places\network-server.png" + delete "$INSTDIR\icons\oxygen\16x16\places\server-database.png" + delete "$INSTDIR\icons\oxygen\16x16\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\16x16\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\16x16\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\16x16\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\16x16\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\16x16\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\16x16\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\application-exit.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\bookmarks.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\configure.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\dialog-cancel.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\dialog-close.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\dialog-ok.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-edit.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-export.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-import.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-new.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-open.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-save-as.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-save.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-clear-list.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-clear-locationbar-ltr.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-clear-locationbar-rtl.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-delete.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-rename.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\folder-sync.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-next.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-previous.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-up.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\list-add.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\list-remove.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-playback-pause.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-playback-start.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-playback-stop.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-skip-backward.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-skip-forward.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\process-stop.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\speaker.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\tools-wizard.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\fork.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-media-artist.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-refresh.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\clock.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\system-file-manager.png" + delete "$INSTDIR\icons\oxygen\22x22\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\22x22\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\22x22\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\22x22\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\22x22\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\22x22\mimetypes\audio-x-generic.png" + delete "$INSTDIR\icons\oxygen\22x22\mimetypes\inode-directory.png" + delete "$INSTDIR\icons\oxygen\22x22\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\22x22\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\22x22\places\favorites.png" + delete "$INSTDIR\icons\oxygen\22x22\places\network-server.png" + delete "$INSTDIR\icons\oxygen\22x22\places\server-database.png" + delete "$INSTDIR\icons\oxygen\22x22\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\22x22\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\22x22\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\22x22\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\22x22\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\22x22\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\22x22\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\24x24\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\256x256\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\256x256\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\application-exit.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\configure.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\dialog-cancel.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\dialog-close.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\dialog-ok.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-edit.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-export.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-import.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-new.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-open.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-save-as.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-save.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-clear-list.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-clear-locationbar-ltr.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-clear-locationbar-rtl.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-delete.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-rename.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\folder-sync.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-next.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-previous.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-up.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\list-add.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\list-remove.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-playback-pause.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-playback-start.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-playback-stop.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-skip-backward.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-skip-forward.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\process-stop.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\speaker.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\tools-wizard.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\fork.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-media-artist.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-refresh.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\clock.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\system-file-manager.png" + delete "$INSTDIR\icons\oxygen\32x32\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\32x32\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\32x32\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\32x32\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\32x32\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\32x32\mimetypes\audio-x-generic.png" + delete "$INSTDIR\icons\oxygen\32x32\mimetypes\inode-directory.png" + delete "$INSTDIR\icons\oxygen\32x32\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\32x32\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\32x32\places\favorites.png" + delete "$INSTDIR\icons\oxygen\32x32\places\network-server.png" + delete "$INSTDIR\icons\oxygen\32x32\places\server-database.png" + delete "$INSTDIR\icons\oxygen\32x32\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\32x32\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\32x32\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\32x32\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\32x32\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\32x32\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\32x32\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\fork.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\48x48\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\48x48\apps\clock.png" + delete "$INSTDIR\icons\oxygen\48x48\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\48x48\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\48x48\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\48x48\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\48x48\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\48x48\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\48x48\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\48x48\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\48x48\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\48x48\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\48x48\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\48x48\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\48x48\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\48x48\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\48x48\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\64x64\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\64x64\apps\clock.png" + delete "$INSTDIR\icons\oxygen\64x64\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\64x64\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\64x64\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\64x64\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\64x64\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\64x64\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\64x64\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\64x64\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\64x64\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\64x64\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\64x64\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\64x64\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\64x64\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\scalable\apps\cantata.svg" + delete "$INSTDIR\icons\humanity\gnome.copyright" + delete "$INSTDIR\icons\humanity\Humanity.copyright" + delete "$INSTDIR\icons\humanity\index.theme" + delete "$INSTDIR\icons\humanity\README" + delete "$INSTDIR\icons\humanity\status\16\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\48\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\48\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\128\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\24\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\24\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\32\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\64\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\22\dialog-information.svg" + delete "$INSTDIR\icons\humanity\devices\16\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\16\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\48\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\48\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\128\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\32\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\32\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\64\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\audio-speakers.png" + delete "$INSTDIR\icons\humanity\places\16\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\16\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\16\folder.svg" + delete "$INSTDIR\icons\humanity\places\16\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\48\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\48\folder.svg" + delete "$INSTDIR\icons\humanity\places\48\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\128\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\24\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\24\folder.svg" + delete "$INSTDIR\icons\humanity\places\24\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\32\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\32\folder.svg" + delete "$INSTDIR\icons\humanity\places\32\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\64\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\64\folder.svg" + delete "$INSTDIR\icons\humanity\places\64\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\22\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\22\folder.svg" + delete "$INSTDIR\icons\humanity\places\22\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-music.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\16\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\16\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\16\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\48\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\128\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\24\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\32\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\32\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\64\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\22\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\22\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\22\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\22\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-next.svg" + delete "$INSTDIR\icons\humanity\categories\48\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\24\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\64\preferences-other.svg" + delete "$INSTDIR\icons\humanity\mimes\16\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\48\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\24\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\22\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\apps\16\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\48\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\24\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\16\cantata.png" + delete "$INSTDIR\icons\humanity\apps\22\cantata.png" + delete "$INSTDIR\icons\humanity\apps\24\cantata.png" + delete "$INSTDIR\icons\humanity\apps\32\cantata.png" + delete "$INSTDIR\icons\humanity\apps\48\cantata.png" + delete "$INSTDIR\icons\humanity\apps\64\cantata.png" + delete "$INSTDIR\icons\humanity\apps\scalable\cantata.svg" + delete "$INSTDIR\imageformats\qjpeg4.dll" + delete "$INSTDIR\imageformats\qsvg4.dll" + delete "$INSTDIR\Qt4 README.txt" + delete "$INSTDIR\Qt License (LGPL V2).txt" + delete "$INSTDIR\TagLib README.txt" + delete "$INSTDIR\QtNetwork4.dll" + delete "$INSTDIR\QtSvg4.dll" + delete "$INSTDIR\QtXml4.dll" + delete "$INSTDIR\QtCore4.dll" + delete "$INSTDIR\QtGui4.dll" + delete "$INSTDIR\QtSql4.dll" + delete "$INSTDIR\libgcc_s_dw2-1.dll" + delete "$INSTDIR\libtag.dll" + delete "$INSTDIR\mingwm10.dll" + delete "$INSTDIR\translations\cantata_cs.qm" + delete "$INSTDIR\translations\cantata_de.qm" + delete "$INSTDIR\translations\cantata_en_GB.qm" + delete "$INSTDIR\translations\cantata_es.qm" + delete "$INSTDIR\translations\cantata_fr.qm" + delete "$INSTDIR\translations\cantata_hu.qm" + delete "$INSTDIR\translations\cantata_ko.qm" + delete "$INSTDIR\translations\cantata_pl.qm" + delete "$INSTDIR\translations\cantata_ru.qm" + delete "$INSTDIR\translations\cantata_zh_CN.qm" + delete "$INSTDIR\translations\qt_ar.qm" + delete "$INSTDIR\translations\qt_cs.qm" + delete "$INSTDIR\translations\qt_da.qm" + delete "$INSTDIR\translations\qt_de.qm" + delete "$INSTDIR\translations\qt_es.qm" + delete "$INSTDIR\translations\qt_fa.qm" + delete "$INSTDIR\translations\qt_fr.qm" + delete "$INSTDIR\translations\qt_gl.qm" + delete "$INSTDIR\translations\qt_he.qm" + delete "$INSTDIR\translations\qt_hu.qm" + delete "$INSTDIR\translations\qt_ja.qm" + delete "$INSTDIR\translations\qt_ko.qm" + delete "$INSTDIR\translations\qt_lt.qm" + delete "$INSTDIR\translations\qt_pl.qm" + delete "$INSTDIR\translations\qt_pt.qm" + delete "$INSTDIR\translations\qt_ru.qm" + delete "$INSTDIR\translations\qt_sk.qm" + delete "$INSTDIR\translations\qt_sl.qm" + delete "$INSTDIR\translations\qt_sv.qm" + delete "$INSTDIR\translations\qt_uk.qm" + delete "$INSTDIR\translations\qt_zh_CN.qm" + delete "$INSTDIR\translations\qt_zh_TW.qm" + delete "$INSTDIR\zlib1.dll" + delete "$INSTDIR\libz-1.dll" + delete "$INSTDIR\libeay32.dll" + delete "$INSTDIR\ssleay32.dll" + + rmDir $INSTDIR\config + rmDir $INSTDIR\helpers + rmDir $INSTDIR\iconengines + rmDir $INSTDIR\sqldrivers + rmDir $INSTDIR\icons\oxygen\128x128\categories + rmDir $INSTDIR\icons\oxygen\128x128\devices + rmDir $INSTDIR\icons\oxygen\128x128 + rmDir $INSTDIR\icons\oxygen\16x16\actions + rmDir $INSTDIR\icons\oxygen\16x16\apps + rmDir $INSTDIR\icons\oxygen\16x16\categories + rmDir $INSTDIR\icons\oxygen\16x16\devices + rmDir $INSTDIR\icons\oxygen\16x16\mimetypes + rmDir $INSTDIR\icons\oxygen\16x16\places + rmDir $INSTDIR\icons\oxygen\16x16\status + rmDir $INSTDIR\icons\oxygen\16x16 + rmDir $INSTDIR\icons\oxygen\22x22\actions + rmDir $INSTDIR\icons\oxygen\22x22\apps + rmDir $INSTDIR\icons\oxygen\22x22\categories + rmDir $INSTDIR\icons\oxygen\22x22\devices + rmDir $INSTDIR\icons\oxygen\22x22\mimetypes + rmDir $INSTDIR\icons\oxygen\22x22\places + rmDir $INSTDIR\icons\oxygen\22x22\status + rmDir $INSTDIR\icons\oxygen\22x22\apps + rmDir $INSTDIR\icons\oxygen\22x22 + rmDir $INSTDIR\icons\oxygen\256x256\categories + rmDir $INSTDIR\icons\oxygen\256x256\devices + rmDir $INSTDIR\icons\oxygen\256x256 + rmDir $INSTDIR\icons\oxygen\32x32\actions + rmDir $INSTDIR\icons\oxygen\32x32\apps + rmDir $INSTDIR\icons\oxygen\32x32\categories + rmDir $INSTDIR\icons\oxygen\32x32\devices + rmDir $INSTDIR\icons\oxygen\32x32\mimetypes + rmDir $INSTDIR\icons\oxygen\32x32\places + rmDir $INSTDIR\icons\oxygen\32x32\status + rmDir $INSTDIR\icons\oxygen\32x32 + rmDir $INSTDIR\icons\oxygen\48x48\actions + rmDir $INSTDIR\icons\oxygen\48x48\apps + rmDir $INSTDIR\icons\oxygen\48x48\categories + rmDir $INSTDIR\icons\oxygen\48x48\devices + rmDir $INSTDIR\icons\oxygen\48x48\places + rmDir $INSTDIR\icons\oxygen\48x48\status + rmDir $INSTDIR\icons\oxygen\48x48 + rmDir $INSTDIR\icons\oxygen\64x64\actions + rmDir $INSTDIR\icons\oxygen\64x64\apps + rmDir $INSTDIR\icons\oxygen\64x64\categories + rmDir $INSTDIR\icons\oxygen\64x64\devices + rmDir $INSTDIR\icons\oxygen\64x64\places + rmDir $INSTDIR\icons\oxygen\64x64\status + rmDir $INSTDIR\icons\oxygen\64x64 + rmDir $INSTDIR\icons\oxygen\scalable\apps + rmDir $INSTDIR\icons\oxygen\scalable + rmDir $INSTDIR\icons\oxygen + rmDir $INSTDIR\icons\humanity\status\16 + rmDir $INSTDIR\icons\humanity\status\48 + rmDir $INSTDIR\icons\humanity\status\128 + rmDir $INSTDIR\icons\humanity\status\24 + rmDir $INSTDIR\icons\humanity\status\32 + rmDir $INSTDIR\icons\humanity\status\64 + rmDir $INSTDIR\icons\humanity\status\22 + rmDir $INSTDIR\icons\humanity\devices\16 + rmDir $INSTDIR\icons\humanity\devices\48 + rmDir $INSTDIR\icons\humanity\devices\128 + rmDir $INSTDIR\icons\humanity\devices\24 + rmDir $INSTDIR\icons\humanity\devices\32 + rmDir $INSTDIR\icons\humanity\devices\64 + rmDir $INSTDIR\icons\humanity\devices\22 + rmDir $INSTDIR\icons\humanity\places\16 + rmDir $INSTDIR\icons\humanity\places\48 + rmDir $INSTDIR\icons\humanity\places\128 + rmDir $INSTDIR\icons\humanity\places\24 + rmDir $INSTDIR\icons\humanity\places\32 + rmDir $INSTDIR\icons\humanity\places\64 + rmDir $INSTDIR\icons\humanity\places\22 + rmDir $INSTDIR\icons\humanity\actions\16 + rmDir $INSTDIR\icons\humanity\actions\48 + rmDir $INSTDIR\icons\humanity\actions\128 + rmDir $INSTDIR\icons\humanity\actions\24 + rmDir $INSTDIR\icons\humanity\actions\32 + rmDir $INSTDIR\icons\humanity\actions\64 + rmDir $INSTDIR\icons\humanity\actions\22 + rmDir $INSTDIR\icons\humanity\categories\48 + rmDir $INSTDIR\icons\humanity\categories\24 + rmDir $INSTDIR\icons\humanity\categories\64 + rmDir $INSTDIR\icons\humanity\mimes\16 + rmDir $INSTDIR\icons\humanity\mimes\48 + rmDir $INSTDIR\icons\humanity\mimes\24 + rmDir $INSTDIR\icons\humanity\mimes\22 + rmDir $INSTDIR\icons\humanity\apps\16 + rmDir $INSTDIR\icons\humanity\apps\48 + rmDir $INSTDIR\icons\humanity\apps\24 + rmDir $INSTDIR\icons\humanity\apps\22 + rmDir $INSTDIR\icons\humanity\apps\32 + rmDir $INSTDIR\icons\humanity\apps\64 + rmDir $INSTDIR\icons\humanity\apps\scalable + rmDir $INSTDIR\icons\humanity\status + rmDir $INSTDIR\icons\humanity\devices + rmDir $INSTDIR\icons\humanity\places + rmDir $INSTDIR\icons\humanity\actions + rmDir $INSTDIR\icons\humanity\categories + rmDir $INSTDIR\icons\humanity\mimes + rmDir $INSTDIR\icons\humanity\apps + rmDir $INSTDIR\icons\humanity + rmDir $INSTDIR\icons + rmDir $INSTDIR\imageformats + rmDir $INSTDIR\translations + + # Always delete uninstaller as the last action + delete $INSTDIR\uninstall.exe + + # Try to remove the install directory - this will only happen if it is empty + rmDir $INSTDIR + + # Remove uninstaller information from the registry + DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" +sectionEnd diff --git a/windows/cantata.nsi.cmake b/windows/cantata-oxygen.nsi.cmake similarity index 78% rename from windows/cantata.nsi.cmake rename to windows/cantata-oxygen.nsi.cmake index 61197fa7e..debd55531 100644 --- a/windows/cantata.nsi.cmake +++ b/windows/cantata-oxygen.nsi.cmake @@ -726,6 +726,168 @@ section "uninstall" delete "$INSTDIR\icons\oxygen\64x64\status\dialog-information.png" delete "$INSTDIR\icons\oxygen\64x64\status\dialog-warning.png" delete "$INSTDIR\icons\oxygen\scalable\apps\cantata.svg" + delete "$INSTDIR\icons\humanity\gnome.copyright" + delete "$INSTDIR\icons\humanity\Humanity.copyright" + delete "$INSTDIR\icons\humanity\index.theme" + delete "$INSTDIR\icons\humanity\README" + delete "$INSTDIR\icons\humanity\status\16\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\48\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\48\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\128\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\24\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\24\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\32\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\64\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\22\dialog-information.svg" + delete "$INSTDIR\icons\humanity\devices\16\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\16\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\48\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\48\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\128\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\32\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\32\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\64\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\audio-speakers.png" + delete "$INSTDIR\icons\humanity\places\16\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\16\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\16\folder.svg" + delete "$INSTDIR\icons\humanity\places\16\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\48\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\48\folder.svg" + delete "$INSTDIR\icons\humanity\places\48\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\128\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\24\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\24\folder.svg" + delete "$INSTDIR\icons\humanity\places\24\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\32\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\32\folder.svg" + delete "$INSTDIR\icons\humanity\places\32\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\64\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\64\folder.svg" + delete "$INSTDIR\icons\humanity\places\64\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\22\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\22\folder.svg" + delete "$INSTDIR\icons\humanity\places\22\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-music.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\16\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\16\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\16\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\48\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\128\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\24\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\32\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\32\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\64\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\22\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\22\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\22\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\22\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-next.svg" + delete "$INSTDIR\icons\humanity\categories\48\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\24\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\64\preferences-other.svg" + delete "$INSTDIR\icons\humanity\mimes\16\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\48\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\24\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\22\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\apps\16\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\48\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\24\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\16\cantata.png" + delete "$INSTDIR\icons\humanity\apps\22\cantata.png" + delete "$INSTDIR\icons\humanity\apps\24\cantata.png" + delete "$INSTDIR\icons\humanity\apps\32\cantata.png" + delete "$INSTDIR\icons\humanity\apps\48\cantata.png" + delete "$INSTDIR\icons\humanity\apps\64\cantata.png" + delete "$INSTDIR\icons\humanity\apps\scalable\cantata.svg" delete "$INSTDIR\imageformats\qjpeg4.dll" delete "$INSTDIR\imageformats\qsvg4.dll" delete "$INSTDIR\Qt4 README.txt" @@ -829,6 +991,56 @@ section "uninstall" rmDir $INSTDIR\icons\oxygen\scalable\apps rmDir $INSTDIR\icons\oxygen\scalable rmDir $INSTDIR\icons\oxygen + rmDir $INSTDIR\icons\humanity\status\16 + rmDir $INSTDIR\icons\humanity\status\48 + rmDir $INSTDIR\icons\humanity\status\128 + rmDir $INSTDIR\icons\humanity\status\24 + rmDir $INSTDIR\icons\humanity\status\32 + rmDir $INSTDIR\icons\humanity\status\64 + rmDir $INSTDIR\icons\humanity\status\22 + rmDir $INSTDIR\icons\humanity\devices\16 + rmDir $INSTDIR\icons\humanity\devices\48 + rmDir $INSTDIR\icons\humanity\devices\128 + rmDir $INSTDIR\icons\humanity\devices\24 + rmDir $INSTDIR\icons\humanity\devices\32 + rmDir $INSTDIR\icons\humanity\devices\64 + rmDir $INSTDIR\icons\humanity\devices\22 + rmDir $INSTDIR\icons\humanity\places\16 + rmDir $INSTDIR\icons\humanity\places\48 + rmDir $INSTDIR\icons\humanity\places\128 + rmDir $INSTDIR\icons\humanity\places\24 + rmDir $INSTDIR\icons\humanity\places\32 + rmDir $INSTDIR\icons\humanity\places\64 + rmDir $INSTDIR\icons\humanity\places\22 + rmDir $INSTDIR\icons\humanity\actions\16 + rmDir $INSTDIR\icons\humanity\actions\48 + rmDir $INSTDIR\icons\humanity\actions\128 + rmDir $INSTDIR\icons\humanity\actions\24 + rmDir $INSTDIR\icons\humanity\actions\32 + rmDir $INSTDIR\icons\humanity\actions\64 + rmDir $INSTDIR\icons\humanity\actions\22 + rmDir $INSTDIR\icons\humanity\categories\48 + rmDir $INSTDIR\icons\humanity\categories\24 + rmDir $INSTDIR\icons\humanity\categories\64 + rmDir $INSTDIR\icons\humanity\mimes\16 + rmDir $INSTDIR\icons\humanity\mimes\48 + rmDir $INSTDIR\icons\humanity\mimes\24 + rmDir $INSTDIR\icons\humanity\mimes\22 + rmDir $INSTDIR\icons\humanity\apps\16 + rmDir $INSTDIR\icons\humanity\apps\48 + rmDir $INSTDIR\icons\humanity\apps\24 + rmDir $INSTDIR\icons\humanity\apps\22 + rmDir $INSTDIR\icons\humanity\apps\32 + rmDir $INSTDIR\icons\humanity\apps\64 + rmDir $INSTDIR\icons\humanity\apps\scalable + rmDir $INSTDIR\icons\humanity\status + rmDir $INSTDIR\icons\humanity\devices + rmDir $INSTDIR\icons\humanity\places + rmDir $INSTDIR\icons\humanity\actions + rmDir $INSTDIR\icons\humanity\categories + rmDir $INSTDIR\icons\humanity\mimes + rmDir $INSTDIR\icons\humanity\apps + rmDir $INSTDIR\icons\humanity rmDir $INSTDIR\icons rmDir $INSTDIR\imageformats rmDir $INSTDIR\translations diff --git a/windows/cantata-qt5-humanity.nsi.cmake b/windows/cantata-qt5-humanity.nsi.cmake new file mode 100644 index 000000000..7a59dffef --- /dev/null +++ b/windows/cantata-qt5-humanity.nsi.cmake @@ -0,0 +1,1022 @@ +!define APPNAME "@WINDOWS_APP_NAME@" +!define COMPANYNAME "@WINDOWS_COMPANY_NAME@" +!define DESCRIPTION "MPD Client" +!define VERSIONMAJOR @CPACK_PACKAGE_VERSION_MAJOR@ +!define VERSIONMINOR @CPACK_PACKAGE_VERSION_MINOR@ +!define VERSIONBUILD @CPACK_PACKAGE_VERSION_PATCH@@CPACK_PACKAGE_VERSION_SPIN@ +#!define HELPURL "http://..." # "Support Information" link +#!define UPDATEURL "http://..." # "Product Updates" link +!define ABOUTURL "https://github.com/CDrummond/cantata" # "Publisher" link + +RequestExecutionLevel admin + +SetCompressor /SOLID lzma +!include "MUI2.nsh" + +InstallDir "$PROGRAMFILES\@WINDOWS_APP_NAME@" +# This will be in the installer/uninstaller's title bar +Name "@WINDOWS_APP_NAME@" +Icon "cantata.ico" +outFile "@WINDOWS_APP_NAME@-@CANTATA_VERSION_WITH_SPIN@-Setup.exe" + +!define MUI_ABORTWARNING +!define MUI_ICON "cantata.ico" + +!insertmacro MUI_PAGE_WELCOME +!insertmacro MUI_PAGE_LICENSE "LICENSE.txt" +!insertmacro MUI_PAGE_DIRECTORY +!insertmacro MUI_PAGE_INSTFILES +!insertmacro MUI_PAGE_FINISH + +!insertmacro MUI_UNPAGE_CONFIRM +!insertmacro MUI_UNPAGE_INSTFILES +!insertmacro MUI_UNPAGE_FINISH + +!insertmacro MUI_LANGUAGE "English" ;first language is the default language +!insertmacro MUI_LANGUAGE "French" +!insertmacro MUI_LANGUAGE "German" +!insertmacro MUI_LANGUAGE "Spanish" +!insertmacro MUI_LANGUAGE "SpanishInternational" +!insertmacro MUI_LANGUAGE "SimpChinese" +!insertmacro MUI_LANGUAGE "TradChinese" +!insertmacro MUI_LANGUAGE "Japanese" +!insertmacro MUI_LANGUAGE "Korean" +!insertmacro MUI_LANGUAGE "Italian" +!insertmacro MUI_LANGUAGE "Dutch" +!insertmacro MUI_LANGUAGE "Danish" +!insertmacro MUI_LANGUAGE "Swedish" +!insertmacro MUI_LANGUAGE "Norwegian" +!insertmacro MUI_LANGUAGE "NorwegianNynorsk" +!insertmacro MUI_LANGUAGE "Finnish" +!insertmacro MUI_LANGUAGE "Greek" +!insertmacro MUI_LANGUAGE "Russian" +!insertmacro MUI_LANGUAGE "Portuguese" +!insertmacro MUI_LANGUAGE "PortugueseBR" +!insertmacro MUI_LANGUAGE "Polish" +!insertmacro MUI_LANGUAGE "Ukrainian" +!insertmacro MUI_LANGUAGE "Czech" +!insertmacro MUI_LANGUAGE "Slovak" +!insertmacro MUI_LANGUAGE "Croatian" +!insertmacro MUI_LANGUAGE "Bulgarian" +!insertmacro MUI_LANGUAGE "Hungarian" +!insertmacro MUI_LANGUAGE "Thai" +!insertmacro MUI_LANGUAGE "Romanian" +!insertmacro MUI_LANGUAGE "Latvian" +!insertmacro MUI_LANGUAGE "Macedonian" +!insertmacro MUI_LANGUAGE "Estonian" +!insertmacro MUI_LANGUAGE "Turkish" +!insertmacro MUI_LANGUAGE "Lithuanian" +!insertmacro MUI_LANGUAGE "Slovenian" +!insertmacro MUI_LANGUAGE "Serbian" +!insertmacro MUI_LANGUAGE "SerbianLatin" +!insertmacro MUI_LANGUAGE "Arabic" +!insertmacro MUI_LANGUAGE "Farsi" +!insertmacro MUI_LANGUAGE "Hebrew" +!insertmacro MUI_LANGUAGE "Indonesian" +!insertmacro MUI_LANGUAGE "Mongolian" +!insertmacro MUI_LANGUAGE "Luxembourgish" +!insertmacro MUI_LANGUAGE "Albanian" +!insertmacro MUI_LANGUAGE "Breton" +!insertmacro MUI_LANGUAGE "Belarusian" +!insertmacro MUI_LANGUAGE "Icelandic" +!insertmacro MUI_LANGUAGE "Malay" +!insertmacro MUI_LANGUAGE "Bosnian" +!insertmacro MUI_LANGUAGE "Kurdish" +!insertmacro MUI_LANGUAGE "Irish" +!insertmacro MUI_LANGUAGE "Uzbek" +!insertmacro MUI_LANGUAGE "Galician" +!insertmacro MUI_LANGUAGE "Afrikaans" +!insertmacro MUI_LANGUAGE "Catalan" +!insertmacro MUI_LANGUAGE "Esperanto" + +section "install" + # Files for the install directory - to build the installer, these should be in the same directory as the install script (this file) + setOutPath $INSTDIR + # Files added here should be removed by the uninstaller (see section "uninstall") + file "cantata.exe" + file "cantata-tags.exe" + file "Cantata License (GPL V3).txt" + file "Cantata README.txt" + file "Qt License (LGPL V2).txt" + file "TagLib README.txt" + file "Qt5Core.dll" + file "Qt5Gui.dll" + file "Qt5Network.dll" + file "Qt5Svg.dll" + file "Qt5Widgets.dll" + file "Qt5WinExtras.dll" + file "Qt5Sql.dll" + file "icudt52.dll" + file "icuin52.dll" + file "icuuc52.dll" + file "libgcc_s_dw2-1.dll" + file "libstdc++-6.dll" + file "libtag.dll" + file "libwinpthread-1.dll" + file "libz-1.dll" + @CANTATA_SSL_WIN_NSIS_INSTALL@ + setOutPath $INSTDIR\config + file "config\lyrics_providers.xml" + file "config\podcast_directories.xml" + file "config\scrobblers.xml" + file "config\tag_fixes.xml" + file "config\weblinks.xml" + setOutPath $INSTDIR\iconengines + file "iconengines\qsvgicon.dll" + setOutPath $INSTDIR\sqldrivers + file "sqldrivers\qsqlite.dll" + setOutPath $INSTDIR\platforms + file "platforms\qwindows.dll" + setOutPath $INSTDIR\icons + file "icons\bbc.svg" + file "icons\cbc.svg" + file "icons\npr.svg" + file "icons\podcasts.png" + file "icons\soundcloud.png" + file "icons\stream.png" + setOutPath $INSTDIR\icons\humanity + file "icons\humanity\gnome.copyright" + file "icons\humanity\Humanity.copyright" + file "icons\humanity\index.theme" + file "icons\humanity\README" + setOutPath $INSTDIR\icons\humanity\status\16 + file "icons\humanity\status\16\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\48 + file "icons\humanity\status\48\media-playlist-shuffle.svg" + file "icons\humanity\status\48\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\128 + file "icons\humanity\status\128\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\24 + file "icons\humanity\status\24\media-playlist-shuffle.svg" + file "icons\humanity\status\24\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\32 + file "icons\humanity\status\32\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\64 + file "icons\humanity\status\64\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\status\22 + file "icons\humanity\status\22\dialog-information.svg" + setOutPath $INSTDIR\icons\humanity\devices\16 + file "icons\humanity\devices\16\drive-harddisk.svg" + file "icons\humanity\devices\16\media-optical.svg" + file "icons\humanity\devices\16\media-optical-cd.svg" + file "icons\humanity\devices\16\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\48 + file "icons\humanity\devices\48\drive-harddisk.svg" + file "icons\humanity\devices\48\media-optical.svg" + file "icons\humanity\devices\48\media-optical-cd.svg" + file "icons\humanity\devices\48\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\128 + file "icons\humanity\devices\128\drive-harddisk.svg" + file "icons\humanity\devices\128\media-optical.svg" + file "icons\humanity\devices\128\media-optical-cd.svg" + setOutPath $INSTDIR\icons\humanity\devices\24 + file "icons\humanity\devices\24\drive-harddisk.svg" + file "icons\humanity\devices\24\media-optical.svg" + file "icons\humanity\devices\24\media-optical-cd.svg" + file "icons\humanity\devices\24\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\32 + file "icons\humanity\devices\32\drive-harddisk.svg" + file "icons\humanity\devices\32\media-optical.svg" + file "icons\humanity\devices\32\media-optical-cd.svg" + file "icons\humanity\devices\32\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\devices\64 + file "icons\humanity\devices\64\drive-harddisk.svg" + file "icons\humanity\devices\64\media-optical.svg" + file "icons\humanity\devices\64\media-optical-cd.svg" + setOutPath $INSTDIR\icons\humanity\devices\22 + file "icons\humanity\devices\22\drive-harddisk.svg" + file "icons\humanity\devices\22\media-optical.svg" + file "icons\humanity\devices\22\media-optical-cd.svg" + file "icons\humanity\devices\22\audio-speakers.png" + setOutPath $INSTDIR\icons\humanity\places\16 + file "icons\humanity\places\16\folder-documents.svg" + file "icons\humanity\places\16\folder-templates.svg" + file "icons\humanity\places\16\folder-publicshare.svg" + file "icons\humanity\places\16\inode-directory.svg" + file "icons\humanity\places\16\folder-download.svg" + file "icons\humanity\places\16\folder.svg" + file "icons\humanity\places\16\user-desktop.svg" + file "icons\humanity\places\16\folder-downloads.svg" + file "icons\humanity\places\16\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\48 + file "icons\humanity\places\48\folder-documents.svg" + file "icons\humanity\places\48\folder-templates.svg" + file "icons\humanity\places\48\folder-publicshare.svg" + file "icons\humanity\places\48\inode-directory.svg" + file "icons\humanity\places\48\folder-download.svg" + file "icons\humanity\places\48\folder.svg" + file "icons\humanity\places\48\user-desktop.svg" + file "icons\humanity\places\48\folder-downloads.svg" + file "icons\humanity\places\48\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\128 + file "icons\humanity\places\128\user-desktop.svg" + setOutPath $INSTDIR\icons\humanity\places\24 + file "icons\humanity\places\24\folder-documents.svg" + file "icons\humanity\places\24\folder-templates.svg" + file "icons\humanity\places\24\folder-publicshare.svg" + file "icons\humanity\places\24\inode-directory.svg" + file "icons\humanity\places\24\folder-download.svg" + file "icons\humanity\places\24\folder.svg" + file "icons\humanity\places\24\user-desktop.svg" + file "icons\humanity\places\24\folder-downloads.svg" + file "icons\humanity\places\24\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\32 + file "icons\humanity\places\32\folder-documents.svg" + file "icons\humanity\places\32\folder-templates.svg" + file "icons\humanity\places\32\folder-publicshare.svg" + file "icons\humanity\places\32\inode-directory.svg" + file "icons\humanity\places\32\folder-download.svg" + file "icons\humanity\places\32\folder.svg" + file "icons\humanity\places\32\user-desktop.svg" + file "icons\humanity\places\32\folder-downloads.svg" + file "icons\humanity\places\32\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\64 + file "icons\humanity\places\64\folder-documents.svg" + file "icons\humanity\places\64\folder-templates.svg" + file "icons\humanity\places\64\folder-publicshare.svg" + file "icons\humanity\places\64\inode-directory.svg" + file "icons\humanity\places\64\folder-download.svg" + file "icons\humanity\places\64\folder.svg" + file "icons\humanity\places\64\user-desktop.svg" + file "icons\humanity\places\64\folder-downloads.svg" + file "icons\humanity\places\64\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\places\22 + file "icons\humanity\places\22\folder-documents.svg" + file "icons\humanity\places\22\folder-templates.svg" + file "icons\humanity\places\22\folder-publicshare.svg" + file "icons\humanity\places\22\inode-directory.svg" + file "icons\humanity\places\22\folder-download.svg" + file "icons\humanity\places\22\folder.svg" + file "icons\humanity\places\22\user-desktop.svg" + file "icons\humanity\places\22\folder-downloads.svg" + file "icons\humanity\places\22\folder-music.svg" + setOutPath $INSTDIR\icons\humanity\actions\16 + file "icons\humanity\actions\16\go-down.svg" + file "icons\humanity\actions\16\gtk-edit.svg" + file "icons\humanity\actions\16\edit-clear.svg" + file "icons\humanity\actions\16\go-previous.svg" + file "icons\humanity\actions\16\go-up.svg" + file "icons\humanity\actions\16\document-open.svg" + file "icons\humanity\actions\16\edit-find.png" + file "icons\humanity\actions\16\document-new.svg" + file "icons\humanity\actions\16\go-next.svg" + setOutPath $INSTDIR\icons\humanity\actions\48 + file "icons\humanity\actions\48\go-down.svg" + file "icons\humanity\actions\48\gtk-edit.svg" + file "icons\humanity\actions\48\edit-clear.svg" + file "icons\humanity\actions\48\gtk-execute.svg" + file "icons\humanity\actions\48\document-open-recent.svg" + file "icons\humanity\actions\48\go-previous.svg" + file "icons\humanity\actions\48\go-up.svg" + file "icons\humanity\actions\48\document-open.svg" + file "icons\humanity\actions\48\edit-find.png" + file "icons\humanity\actions\48\document-new.svg" + file "icons\humanity\actions\48\go-next.svg" + setOutPath $INSTDIR\icons\humanity\actions\128 + file "icons\humanity\actions\128\document-new.svg" + setOutPath $INSTDIR\icons\humanity\actions\24 + file "icons\humanity\actions\24\go-down.svg" + file "icons\humanity\actions\24\gtk-edit.svg" + file "icons\humanity\actions\24\edit-clear.svg" + file "icons\humanity\actions\24\gtk-execute.svg" + file "icons\humanity\actions\24\document-open-recent.svg" + file "icons\humanity\actions\24\go-previous.svg" + file "icons\humanity\actions\24\go-up.svg" + file "icons\humanity\actions\24\document-open.svg" + file "icons\humanity\actions\24\edit-find.png" + file "icons\humanity\actions\24\document-new.svg" + file "icons\humanity\actions\24\go-next.svg" + setOutPath $INSTDIR\icons\humanity\actions\32 + file "icons\humanity\actions\32\edit-find.png" + file "icons\humanity\actions\32\document-new.svg" + setOutPath $INSTDIR\icons\humanity\actions\64 + file "icons\humanity\actions\64\document-new.svg" + setOutPath $INSTDIR\icons\humanity\actions\22 + file "icons\humanity\actions\22\go-down.svg" + file "icons\humanity\actions\22\gtk-edit.svg" + file "icons\humanity\actions\22\document-open-recent.svg" + file "icons\humanity\actions\22\go-previous.svg" + file "icons\humanity\actions\22\go-up.svg" + file "icons\humanity\actions\22\edit-find.png" + file "icons\humanity\actions\22\document-new.svg" + file "icons\humanity\actions\22\go-next.svg" + setOutPath $INSTDIR\icons\humanity\categories\48 + file "icons\humanity\categories\48\preferences-other.svg" + setOutPath $INSTDIR\icons\humanity\categories\24 + file "icons\humanity\categories\24\preferences-other.svg" + setOutPath $INSTDIR\icons\humanity\categories\64 + file "icons\humanity\categories\64\preferences-other.svg" + setOutPath $INSTDIR\icons\humanity\mimes\16 + file "icons\humanity\mimes\16\image-png.svg" + file "icons\humanity\mimes\16\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\16\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\mimes\48 + file "icons\humanity\mimes\48\image-png.svg" + file "icons\humanity\mimes\48\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\48\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\mimes\24 + file "icons\humanity\mimes\24\image-png.svg" + file "icons\humanity\mimes\24\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\24\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\mimes\22 + file "icons\humanity\mimes\22\image-png.svg" + file "icons\humanity\mimes\22\audio-x-mp3-playlist.svg" + file "icons\humanity\mimes\22\audio-x-generic.svg" + setOutPath $INSTDIR\icons\humanity\apps\16 + file "icons\humanity\apps\16\preferences-desktop-keyboard.svg" + file "icons\humanity\apps\16\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\48 + file "icons\humanity\apps\48\preferences-desktop-keyboard.svg" + file "icons\humanity\apps\48\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\24 + file "icons\humanity\apps\24\preferences-desktop-keyboard.svg" + file "icons\humanity\apps\24\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\22 + file "icons\humanity\apps\22\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\32 + file "icons\humanity\apps\32\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\64 + file "icons\humanity\apps\64\cantata.png" + setOutPath $INSTDIR\icons\humanity\apps\scalable + file "icons\humanity\apps\scalable\cantata.svg" + setOutPath $INSTDIR\imageformats + file "imageformats\qjpeg.dll" + file "imageformats\qsvg.dll" + setOutPath $INSTDIR\translations + file "translations\cantata_cs.qm" + file "translations\cantata_de.qm" + file "translations\cantata_en_GB.qm" + file "translations\cantata_es.qm" + file "translations\cantata_fr.qm" + file "translations\cantata_hu.qm" + file "translations\cantata_ko.qm" + file "translations\cantata_pl.qm" + file "translations\cantata_ru.qm" + file "translations\cantata_zh_CN.qm" + + file "translations\qt_ar.qm" + file "translations\qt_cs.qm" + file "translations\qt_da.qm" + file "translations\qt_de.qm" + file "translations\qt_es.qm" + file "translations\qt_fa.qm" + file "translations\qt_fi.qm" + file "translations\qt_fr.qm" + file "translations\qt_gl.qm" + file "translations\qt_he.qm" + file "translations\qt_hu.qm" + file "translations\qt_it.qm" + file "translations\qt_ja.qm" + file "translations\qt_ko.qm" + file "translations\qt_lt.qm" + file "translations\qt_pl.qm" + file "translations\qt_pt.qm" + file "translations\qt_ru.qm" + file "translations\qt_sk.qm" + file "translations\qt_sl.qm" + file "translations\qt_sv.qm" + file "translations\qt_uk.qm" + file "translations\qt_zh_CN.qm" + file "translations\qt_zh_TW.qm" + + writeUninstaller "$INSTDIR\uninstall.exe" + + # Start Menu + createShortCut "$SMPROGRAMS\@WINDOWS_APP_NAME@.lnk" "$INSTDIR\cantata.exe" "" "$INSTDIR\cantata.exe" + + # Registry information for add/remove programs + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "DisplayName" "@WINDOWS_APP_NAME@" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "UninstallString" "$\"$INSTDIR\uninstall.exe$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "QuietUninstallString" "$\"$INSTDIR\uninstall.exe$\" /S" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "InstallLocation" "$\"$INSTDIR$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "DisplayIcon" "$\"$INSTDIR\cantata.exe$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "Publisher" "@WINDOWS_COMPANY_NAME@" +# WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "HelpLink" "$\"${HELPURL}$\"" +# WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "URLUpdateInfo" "$\"${UPDATEURL}$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "URLInfoAbout" "$\"@WINDOWS_URL@$\"" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "DisplayVersion" "@CANTATA_VERSION_WITH_SPIN@" + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "VersionMajor" @CPACK_PACKAGE_VERSION_MAJOR@ + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "VersionMinor" @CPACK_PACKAGE_VERSION_MINOR@ + # There is no option for modifying or repairing the install + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "NoModify" 1 + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "NoRepair" 1 + # Set the INSTALLSIZE constant (!defined at the top of this script) so Add/Remove Programs can accurately report the size + # WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" "EstimatedSize" ${INSTALLSIZE} +sectionEnd + +# Uninstaller + +section "uninstall" + # Remove Start Menu launcher + delete "$SMPROGRAMS\@WINDOWS_APP_NAME@.lnk" + + delete "$INSTDIR\cantata.exe" + delete "$INSTDIR\cantata-tags.exe" + delete "$INSTDIR\Cantata README.txt" + delete "$INSTDIR\Cantata License (GPL V3).txt" + delete "$INSTDIR\config\lyrics_providers.xml" + delete "$INSTDIR\config\podcast_directories.xml" + delete "$INSTDIR\config\scrobblers.xml" + delete "$INSTDIR\config\tag_fixes.xml" + delete "$INSTDIR\config\weblinks.xml" + delete "$INSTDIR\helpers\cantata-tags.exe" + delete "$INSTDIR\iconengines\qsvgicon4.dll" + delete "$INSTDIR\iconengines\qsvgicon.dll" + delete "$INSTDIR\sqldrivers\qsqlite4.dll" + delete "$INSTDIR\sqldrivers\qsqlite.dll" + delete "$INSTDIR\icons\bbc.svg" + delete "$INSTDIR\icons\cbc.svg" + delete "$INSTDIR\icons\npr.svg" + delete "$INSTDIR\icons\podcasts.png" + delete "$INSTDIR\icons\soundcloud.png" + delete "$INSTDIR\icons\stream.png" + delete "$INSTDIR\icons\oxygen\index.theme" + delete "$INSTDIR\icons\oxygen\Oxygen License (Creative Common Attribution-ShareAlike 3.0).html" + delete "$INSTDIR\icons\oxygen\Oxygen README.txt" + delete "$INSTDIR\icons\oxygen\128x128\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\128x128\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\application-exit.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\configure.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\dialog-cancel.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\dialog-close.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\dialog-ok.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-edit.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-export.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-import.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-new.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-open.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-save-as.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\document-save.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-clear-list.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-clear-locationbar-ltr.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-clear-locationbar-rtl.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-delete.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\edit-rename.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\folder-sync.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-next.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-previous.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\go-up.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\list-add.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\list-remove.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-playback-pause.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-playback-start.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-playback-stop.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-skip-backward.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\media-skip-forward.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\process-stop.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\speaker.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\tools-wizard.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\fork.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-media-artist.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\16x16\actions\view-refresh.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\clock.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\16x16\apps\system-file-manager.png" + delete "$INSTDIR\icons\oxygen\16x16\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\16x16\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\16x16\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\16x16\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\16x16\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\16x16\mimetypes\audio-x-generic.png" + delete "$INSTDIR\icons\oxygen\16x16\mimetypes\inode-directory.png" + delete "$INSTDIR\icons\oxygen\16x16\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\16x16\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\16x16\places\favorites.png" + delete "$INSTDIR\icons\oxygen\16x16\places\network-server.png" + delete "$INSTDIR\icons\oxygen\16x16\places\server-database.png" + delete "$INSTDIR\icons\oxygen\16x16\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\16x16\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\16x16\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\16x16\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\16x16\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\16x16\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\16x16\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\application-exit.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\bookmarks.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\configure.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\dialog-cancel.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\dialog-close.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\dialog-ok.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-edit.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-export.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-import.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-new.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-open.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-save-as.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\document-save.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-clear-list.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-clear-locationbar-ltr.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-clear-locationbar-rtl.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-delete.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\edit-rename.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\folder-sync.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-next.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-previous.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\go-up.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\list-add.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\list-remove.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-playback-pause.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-playback-start.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-playback-stop.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-skip-backward.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\media-skip-forward.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\process-stop.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\speaker.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\tools-wizard.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\fork.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-media-artist.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\22x22\actions\view-refresh.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\clock.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\22x22\apps\system-file-manager.png" + delete "$INSTDIR\icons\oxygen\22x22\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\22x22\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\22x22\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\22x22\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\22x22\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\22x22\mimetypes\audio-x-generic.png" + delete "$INSTDIR\icons\oxygen\22x22\mimetypes\inode-directory.png" + delete "$INSTDIR\icons\oxygen\22x22\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\22x22\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\22x22\places\favorites.png" + delete "$INSTDIR\icons\oxygen\22x22\places\network-server.png" + delete "$INSTDIR\icons\oxygen\22x22\places\server-database.png" + delete "$INSTDIR\icons\oxygen\22x22\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\22x22\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\22x22\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\22x22\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\22x22\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\22x22\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\22x22\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\24x24\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\256x256\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\256x256\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\application-exit.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\configure.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\dialog-cancel.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\dialog-close.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\dialog-ok.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-edit.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-export.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-import.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-new.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-open.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-save-as.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\document-save.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-clear-list.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-clear-locationbar-ltr.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-clear-locationbar-rtl.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-delete.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\edit-rename.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\folder-sync.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-next.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-previous.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\go-up.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\list-add.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\list-remove.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-playback-pause.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-playback-start.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-playback-stop.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-skip-backward.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\media-skip-forward.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\process-stop.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\speaker.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\tools-wizard.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\fork.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-media-artist.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\32x32\actions\view-refresh.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\clock.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\32x32\apps\system-file-manager.png" + delete "$INSTDIR\icons\oxygen\32x32\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\32x32\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\32x32\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\32x32\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\32x32\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\32x32\mimetypes\audio-x-generic.png" + delete "$INSTDIR\icons\oxygen\32x32\mimetypes\inode-directory.png" + delete "$INSTDIR\icons\oxygen\32x32\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\32x32\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\32x32\places\favorites.png" + delete "$INSTDIR\icons\oxygen\32x32\places\network-server.png" + delete "$INSTDIR\icons\oxygen\32x32\places\server-database.png" + delete "$INSTDIR\icons\oxygen\32x32\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\32x32\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\32x32\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\32x32\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\32x32\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\32x32\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\32x32\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\fork.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\view-fullscreen.png" + delete "$INSTDIR\icons\oxygen\48x48\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\48x48\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\48x48\apps\clock.png" + delete "$INSTDIR\icons\oxygen\48x48\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\48x48\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\48x48\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\48x48\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\48x48\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\48x48\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\48x48\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\48x48\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\48x48\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\48x48\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\48x48\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\48x48\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\48x48\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\48x48\status\media-playlist-shuffle.png" + delete "$INSTDIR\icons\oxygen\48x48\status\object-locked.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\bookmark-new.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\edit-find.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\go-down.png" + delete "$INSTDIR\icons\oxygen\64x64\actions\view-media-playlist.png" + delete "$INSTDIR\icons\oxygen\64x64\apps\cantata.png" + delete "$INSTDIR\icons\oxygen\64x64\apps\clock.png" + delete "$INSTDIR\icons\oxygen\64x64\apps\preferences-desktop-keyboard.png" + delete "$INSTDIR\icons\oxygen\64x64\categories\applications-internet.png" + delete "$INSTDIR\icons\oxygen\64x64\categories\preferences-other.png" + delete "$INSTDIR\icons\oxygen\64x64\categories\preferences-system-network.png" + delete "$INSTDIR\icons\oxygen\64x64\devices\media-optical.png" + delete "$INSTDIR\icons\oxygen\64x64\devices\multimedia-player.png" + delete "$INSTDIR\icons\oxygen\64x64\places\bookmarks.png" + delete "$INSTDIR\icons\oxygen\64x64\places\document-multiple.png" + delete "$INSTDIR\icons\oxygen\64x64\places\folder-temp.png" + delete "$INSTDIR\icons\oxygen\64x64\places\folder-downloads.png" + delete "$INSTDIR\icons\oxygen\64x64\status\dialog-error.png" + delete "$INSTDIR\icons\oxygen\64x64\status\dialog-information.png" + delete "$INSTDIR\icons\oxygen\64x64\status\dialog-warning.png" + delete "$INSTDIR\icons\oxygen\scalable\apps\cantata.svg" + delete "$INSTDIR\icons\humanity\gnome.copyright" + delete "$INSTDIR\icons\humanity\Humanity.copyright" + delete "$INSTDIR\icons\humanity\index.theme" + delete "$INSTDIR\icons\humanity\README" + delete "$INSTDIR\icons\humanity\status\16\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\48\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\48\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\128\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\24\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\24\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\32\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\64\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\22\dialog-information.svg" + delete "$INSTDIR\icons\humanity\devices\16\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\16\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\48\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\48\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\128\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\32\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\32\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\64\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\audio-speakers.png" + delete "$INSTDIR\icons\humanity\places\16\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\16\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\16\folder.svg" + delete "$INSTDIR\icons\humanity\places\16\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\48\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\48\folder.svg" + delete "$INSTDIR\icons\humanity\places\48\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\128\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\24\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\24\folder.svg" + delete "$INSTDIR\icons\humanity\places\24\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\32\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\32\folder.svg" + delete "$INSTDIR\icons\humanity\places\32\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\64\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\64\folder.svg" + delete "$INSTDIR\icons\humanity\places\64\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\22\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\22\folder.svg" + delete "$INSTDIR\icons\humanity\places\22\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-music.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\16\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\16\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\16\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\48\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\128\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\24\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\32\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\32\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\64\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\22\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\22\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\22\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\22\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-next.svg" + delete "$INSTDIR\icons\humanity\categories\48\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\24\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\64\preferences-other.svg" + delete "$INSTDIR\icons\humanity\mimes\16\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\48\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\24\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\22\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\apps\16\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\48\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\24\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\16\cantata.png" + delete "$INSTDIR\icons\humanity\apps\22\cantata.png" + delete "$INSTDIR\icons\humanity\apps\24\cantata.png" + delete "$INSTDIR\icons\humanity\apps\32\cantata.png" + delete "$INSTDIR\icons\humanity\apps\48\cantata.png" + delete "$INSTDIR\icons\humanity\apps\64\cantata.png" + delete "$INSTDIR\icons\humanity\apps\scalable\cantata.svg" + delete "$INSTDIR\imageformats\qjpeg4.dll" + delete "$INSTDIR\imageformats\qsvg4.dll" + delete "$INSTDIR\imageformats\qjpeg.dll" + delete "$INSTDIR\imageformats\qsvg.dll" + delete "$INSTDIR\platforms\qwindows.dll" + delete "$INSTDIR\Qt4 README.txt" + delete "$INSTDIR\Qt License (LGPL V2).txt" + delete "$INSTDIR\QtNetwork4.dll" + delete "$INSTDIR\TagLib README.txt" + + delete "$INSTDIR\QtNetwork4.dll" + delete "$INSTDIR\QtSvg4.dll" + delete "$INSTDIR\QtXml4.dll" + delete "$INSTDIR\QtCore4.dll" + delete "$INSTDIR\QtGui4.dll" + delete "$INSTDIR\QtSql4.dll" + delete "$INSTDIR\libgcc_s_dw2-1.dll" + delete "$INSTDIR\libtag.dll" + delete "$INSTDIR\mingwm10.dll" + + delete "$INSTDIR\Qt5Core.dll" + delete "$INSTDIR\Qt5Gui.dll" + delete "$INSTDIR\Qt5Network.dll" + delete "$INSTDIR\Qt5Svg.dll" + delete "$INSTDIR\Qt5Widgets.dll" + delete "$INSTDIR\Qt5WinExtras.dll" + delete "$INSTDIR\Qt5Sql.dll" + + delete "$INSTDIR\icudt52.dll" + delete "$INSTDIR\icuin52.dll" + delete "$INSTDIR\icuuc52.dll" + delete "$INSTDIR\libgcc_s_dw2-1.dll" + delete "$INSTDIR\libstdc++-6.dll" + delete "$INSTDIR\libwinpthread-1.dll" + delete "$INSTDIR\zlib1.dll" + delete "$INSTDIR\libz-1.dll" + delete "$INSTDIR\libeay32.dll" + delete "$INSTDIR\ssleay32.dll" + + delete "$INSTDIR\translations\cantata_cs.qm" + delete "$INSTDIR\translations\cantata_de.qm" + delete "$INSTDIR\translations\cantata_en_GB.qm" + delete "$INSTDIR\translations\cantata_es.qm" + delete "$INSTDIR\translations\cantata_fr.qm" + delete "$INSTDIR\translations\cantata_hu.qm" + delete "$INSTDIR\translations\cantata_ko.qm" + delete "$INSTDIR\translations\cantata_pl.qm" + delete "$INSTDIR\translations\cantata_ru.qm" + delete "$INSTDIR\translations\cantata_zh_CN.qm" + delete "$INSTDIR\translations\qt_ar.qm" + delete "$INSTDIR\translations\qt_cs.qm" + delete "$INSTDIR\translations\qt_da.qm" + delete "$INSTDIR\translations\qt_de.qm" + delete "$INSTDIR\translations\qt_es.qm" + delete "$INSTDIR\translations\qt_fa.qm" + delete "$INSTDIR\translations\qt_fi.qm" + delete "$INSTDIR\translations\qt_fr.qm" + delete "$INSTDIR\translations\qt_gl.qm" + delete "$INSTDIR\translations\qt_he.qm" + delete "$INSTDIR\translations\qt_hu.qm" + delete "$INSTDIR\translations\qt_it.qm" + delete "$INSTDIR\translations\qt_ja.qm" + delete "$INSTDIR\translations\qt_ko.qm" + delete "$INSTDIR\translations\qt_lt.qm" + delete "$INSTDIR\translations\qt_pl.qm" + delete "$INSTDIR\translations\qt_pt.qm" + delete "$INSTDIR\translations\qt_ru.qm" + delete "$INSTDIR\translations\qt_sk.qm" + delete "$INSTDIR\translations\qt_sl.qm" + delete "$INSTDIR\translations\qt_sv.qm" + delete "$INSTDIR\translations\qt_uk.qm" + delete "$INSTDIR\translations\qt_zh_CN.qm" + delete "$INSTDIR\translations\qt_zh_TW.qm" + + rmDir $INSTDIR\config + rmDir $INSTDIR\helpers + rmDir $INSTDIR\iconengines + rmDir $INSTDIR\sqldrivers + rmDir $INSTDIR\icons\oxygen\128x128\categories + rmDir $INSTDIR\icons\oxygen\128x128\devices + rmDir $INSTDIR\icons\oxygen\128x128 + rmDir $INSTDIR\icons\oxygen\16x16\actions + rmDir $INSTDIR\icons\oxygen\16x16\apps + rmDir $INSTDIR\icons\oxygen\16x16\categories + rmDir $INSTDIR\icons\oxygen\16x16\devices + rmDir $INSTDIR\icons\oxygen\16x16\mimetypes + rmDir $INSTDIR\icons\oxygen\16x16\places + rmDir $INSTDIR\icons\oxygen\16x16\status + rmDir $INSTDIR\icons\oxygen\16x16 + rmDir $INSTDIR\icons\oxygen\22x22\actions + rmDir $INSTDIR\icons\oxygen\22x22\apps + rmDir $INSTDIR\icons\oxygen\22x22\categories + rmDir $INSTDIR\icons\oxygen\22x22\devices + rmDir $INSTDIR\icons\oxygen\22x22\mimetypes + rmDir $INSTDIR\icons\oxygen\22x22\places + rmDir $INSTDIR\icons\oxygen\22x22\status + rmDir $INSTDIR\icons\oxygen\22x22\apps + rmDir $INSTDIR\icons\oxygen\22x22 + rmDir $INSTDIR\icons\oxygen\256x256\categories + rmDir $INSTDIR\icons\oxygen\256x256\devices + rmDir $INSTDIR\icons\oxygen\256x256 + rmDir $INSTDIR\icons\oxygen\32x32\actions + rmDir $INSTDIR\icons\oxygen\32x32\apps + rmDir $INSTDIR\icons\oxygen\32x32\categories + rmDir $INSTDIR\icons\oxygen\32x32\devices + rmDir $INSTDIR\icons\oxygen\32x32\mimetypes + rmDir $INSTDIR\icons\oxygen\32x32\places + rmDir $INSTDIR\icons\oxygen\32x32\status + rmDir $INSTDIR\icons\oxygen\32x32 + rmDir $INSTDIR\icons\oxygen\48x48\actions + rmDir $INSTDIR\icons\oxygen\48x48\apps + rmDir $INSTDIR\icons\oxygen\48x48\categories + rmDir $INSTDIR\icons\oxygen\48x48\devices + rmDir $INSTDIR\icons\oxygen\48x48\places + rmDir $INSTDIR\icons\oxygen\48x48\status + rmDir $INSTDIR\icons\oxygen\48x48 + rmDir $INSTDIR\icons\oxygen\64x64\actions + rmDir $INSTDIR\icons\oxygen\64x64\apps + rmDir $INSTDIR\icons\oxygen\64x64\categories + rmDir $INSTDIR\icons\oxygen\64x64\devices + rmDir $INSTDIR\icons\oxygen\64x64\places + rmDir $INSTDIR\icons\oxygen\64x64\status + rmDir $INSTDIR\icons\oxygen\64x64 + rmDir $INSTDIR\icons\oxygen\scalable\apps + rmDir $INSTDIR\icons\oxygen\scalable + rmDir $INSTDIR\icons\oxygen + rmDir $INSTDIR\icons\humanity\status\16 + rmDir $INSTDIR\icons\humanity\status\48 + rmDir $INSTDIR\icons\humanity\status\128 + rmDir $INSTDIR\icons\humanity\status\24 + rmDir $INSTDIR\icons\humanity\status\32 + rmDir $INSTDIR\icons\humanity\status\64 + rmDir $INSTDIR\icons\humanity\status\22 + rmDir $INSTDIR\icons\humanity\devices\16 + rmDir $INSTDIR\icons\humanity\devices\48 + rmDir $INSTDIR\icons\humanity\devices\128 + rmDir $INSTDIR\icons\humanity\devices\24 + rmDir $INSTDIR\icons\humanity\devices\32 + rmDir $INSTDIR\icons\humanity\devices\64 + rmDir $INSTDIR\icons\humanity\devices\22 + rmDir $INSTDIR\icons\humanity\places\16 + rmDir $INSTDIR\icons\humanity\places\48 + rmDir $INSTDIR\icons\humanity\places\128 + rmDir $INSTDIR\icons\humanity\places\24 + rmDir $INSTDIR\icons\humanity\places\32 + rmDir $INSTDIR\icons\humanity\places\64 + rmDir $INSTDIR\icons\humanity\places\22 + rmDir $INSTDIR\icons\humanity\actions\16 + rmDir $INSTDIR\icons\humanity\actions\48 + rmDir $INSTDIR\icons\humanity\actions\128 + rmDir $INSTDIR\icons\humanity\actions\24 + rmDir $INSTDIR\icons\humanity\actions\32 + rmDir $INSTDIR\icons\humanity\actions\64 + rmDir $INSTDIR\icons\humanity\actions\22 + rmDir $INSTDIR\icons\humanity\categories\48 + rmDir $INSTDIR\icons\humanity\categories\24 + rmDir $INSTDIR\icons\humanity\categories\64 + rmDir $INSTDIR\icons\humanity\mimes\16 + rmDir $INSTDIR\icons\humanity\mimes\48 + rmDir $INSTDIR\icons\humanity\mimes\24 + rmDir $INSTDIR\icons\humanity\mimes\22 + rmDir $INSTDIR\icons\humanity\apps\16 + rmDir $INSTDIR\icons\humanity\apps\48 + rmDir $INSTDIR\icons\humanity\apps\24 + rmDir $INSTDIR\icons\humanity\apps\22 + rmDir $INSTDIR\icons\humanity\apps\32 + rmDir $INSTDIR\icons\humanity\apps\64 + rmDir $INSTDIR\icons\humanity\apps\scalable + rmDir $INSTDIR\icons\humanity\status + rmDir $INSTDIR\icons\humanity\devices + rmDir $INSTDIR\icons\humanity\places + rmDir $INSTDIR\icons\humanity\actions + rmDir $INSTDIR\icons\humanity\categories + rmDir $INSTDIR\icons\humanity\mimes + rmDir $INSTDIR\icons\humanity\apps + rmDir $INSTDIR\icons\humanity + rmDir $INSTDIR\icons + rmDir $INSTDIR\imageformats + rmDir $INSTDIR\platforms + rmDir $INSTDIR\translations + + # Always delete uninstaller as the last action + delete $INSTDIR\uninstall.exe + + # Try to remove the install directory - this will only happen if it is empty + rmDir $INSTDIR + + # Remove uninstaller information from the registry + DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@WINDOWS_COMPANY_NAME@ @WINDOWS_APP_NAME@" +sectionEnd diff --git a/windows/cantata-qt5.nsi.cmake b/windows/cantata-qt5-oxygen.nsi.cmake similarity index 78% rename from windows/cantata-qt5.nsi.cmake rename to windows/cantata-qt5-oxygen.nsi.cmake index c7f60ad33..16dbd668a 100644 --- a/windows/cantata-qt5.nsi.cmake +++ b/windows/cantata-qt5-oxygen.nsi.cmake @@ -736,6 +736,168 @@ section "uninstall" delete "$INSTDIR\icons\oxygen\64x64\status\dialog-information.png" delete "$INSTDIR\icons\oxygen\64x64\status\dialog-warning.png" delete "$INSTDIR\icons\oxygen\scalable\apps\cantata.svg" + delete "$INSTDIR\icons\humanity\gnome.copyright" + delete "$INSTDIR\icons\humanity\Humanity.copyright" + delete "$INSTDIR\icons\humanity\index.theme" + delete "$INSTDIR\icons\humanity\README" + delete "$INSTDIR\icons\humanity\status\16\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\48\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\48\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\128\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\24\media-playlist-shuffle.svg" + delete "$INSTDIR\icons\humanity\status\24\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\32\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\64\dialog-information.svg" + delete "$INSTDIR\icons\humanity\status\22\dialog-information.svg" + delete "$INSTDIR\icons\humanity\devices\16\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\16\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\16\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\48\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\48\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\48\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\128\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\128\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\24\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\24\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\32\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\32\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\32\audio-speakers.png" + delete "$INSTDIR\icons\humanity\devices\64\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\64\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\drive-harddisk.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical.svg" + delete "$INSTDIR\icons\humanity\devices\22\media-optical-cd.svg" + delete "$INSTDIR\icons\humanity\devices\22\audio-speakers.png" + delete "$INSTDIR\icons\humanity\places\16\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\16\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\16\folder.svg" + delete "$INSTDIR\icons\humanity\places\16\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\16\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\48\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\48\folder.svg" + delete "$INSTDIR\icons\humanity\places\48\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\48\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\128\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\24\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\24\folder.svg" + delete "$INSTDIR\icons\humanity\places\24\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\24\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\32\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\32\folder.svg" + delete "$INSTDIR\icons\humanity\places\32\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\32\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\64\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\64\folder.svg" + delete "$INSTDIR\icons\humanity\places\64\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\64\folder-music.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-documents.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-templates.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-publicshare.svg" + delete "$INSTDIR\icons\humanity\places\22\inode-directory.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-download.svg" + delete "$INSTDIR\icons\humanity\places\22\folder.svg" + delete "$INSTDIR\icons\humanity\places\22\user-desktop.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-downloads.svg" + delete "$INSTDIR\icons\humanity\places\22\folder-music.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\16\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\16\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\16\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\16\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\16\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\48\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\48\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\48\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\48\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\48\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\128\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-clear.svg" + delete "$INSTDIR\icons\humanity\actions\24\gtk-execute.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\24\document-open.svg" + delete "$INSTDIR\icons\humanity\actions\24\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\24\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\24\go-next.svg" + delete "$INSTDIR\icons\humanity\actions\32\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\32\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\64\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-down.svg" + delete "$INSTDIR\icons\humanity\actions\22\gtk-edit.svg" + delete "$INSTDIR\icons\humanity\actions\22\document-open-recent.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-previous.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-up.svg" + delete "$INSTDIR\icons\humanity\actions\22\edit-find.png" + delete "$INSTDIR\icons\humanity\actions\22\document-new.svg" + delete "$INSTDIR\icons\humanity\actions\22\go-next.svg" + delete "$INSTDIR\icons\humanity\categories\48\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\24\preferences-other.svg" + delete "$INSTDIR\icons\humanity\categories\64\preferences-other.svg" + delete "$INSTDIR\icons\humanity\mimes\16\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\16\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\48\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\48\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\24\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\24\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\mimes\22\image-png.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-mp3-playlist.svg" + delete "$INSTDIR\icons\humanity\mimes\22\audio-x-generic.svg" + delete "$INSTDIR\icons\humanity\apps\16\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\48\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\24\preferences-desktop-keyboard.svg" + delete "$INSTDIR\icons\humanity\apps\16\cantata.png" + delete "$INSTDIR\icons\humanity\apps\22\cantata.png" + delete "$INSTDIR\icons\humanity\apps\24\cantata.png" + delete "$INSTDIR\icons\humanity\apps\32\cantata.png" + delete "$INSTDIR\icons\humanity\apps\48\cantata.png" + delete "$INSTDIR\icons\humanity\apps\64\cantata.png" + delete "$INSTDIR\icons\humanity\apps\scalable\cantata.svg" delete "$INSTDIR\imageformats\qjpeg4.dll" delete "$INSTDIR\imageformats\qsvg4.dll" delete "$INSTDIR\imageformats\qjpeg.dll" @@ -862,6 +1024,56 @@ section "uninstall" rmDir $INSTDIR\icons\oxygen\scalable\apps rmDir $INSTDIR\icons\oxygen\scalable rmDir $INSTDIR\icons\oxygen + rmDir $INSTDIR\icons\humanity\status\16 + rmDir $INSTDIR\icons\humanity\status\48 + rmDir $INSTDIR\icons\humanity\status\128 + rmDir $INSTDIR\icons\humanity\status\24 + rmDir $INSTDIR\icons\humanity\status\32 + rmDir $INSTDIR\icons\humanity\status\64 + rmDir $INSTDIR\icons\humanity\status\22 + rmDir $INSTDIR\icons\humanity\devices\16 + rmDir $INSTDIR\icons\humanity\devices\48 + rmDir $INSTDIR\icons\humanity\devices\128 + rmDir $INSTDIR\icons\humanity\devices\24 + rmDir $INSTDIR\icons\humanity\devices\32 + rmDir $INSTDIR\icons\humanity\devices\64 + rmDir $INSTDIR\icons\humanity\devices\22 + rmDir $INSTDIR\icons\humanity\places\16 + rmDir $INSTDIR\icons\humanity\places\48 + rmDir $INSTDIR\icons\humanity\places\128 + rmDir $INSTDIR\icons\humanity\places\24 + rmDir $INSTDIR\icons\humanity\places\32 + rmDir $INSTDIR\icons\humanity\places\64 + rmDir $INSTDIR\icons\humanity\places\22 + rmDir $INSTDIR\icons\humanity\actions\16 + rmDir $INSTDIR\icons\humanity\actions\48 + rmDir $INSTDIR\icons\humanity\actions\128 + rmDir $INSTDIR\icons\humanity\actions\24 + rmDir $INSTDIR\icons\humanity\actions\32 + rmDir $INSTDIR\icons\humanity\actions\64 + rmDir $INSTDIR\icons\humanity\actions\22 + rmDir $INSTDIR\icons\humanity\categories\48 + rmDir $INSTDIR\icons\humanity\categories\24 + rmDir $INSTDIR\icons\humanity\categories\64 + rmDir $INSTDIR\icons\humanity\mimes\16 + rmDir $INSTDIR\icons\humanity\mimes\48 + rmDir $INSTDIR\icons\humanity\mimes\24 + rmDir $INSTDIR\icons\humanity\mimes\22 + rmDir $INSTDIR\icons\humanity\apps\16 + rmDir $INSTDIR\icons\humanity\apps\48 + rmDir $INSTDIR\icons\humanity\apps\24 + rmDir $INSTDIR\icons\humanity\apps\22 + rmDir $INSTDIR\icons\humanity\apps\32 + rmDir $INSTDIR\icons\humanity\apps\64 + rmDir $INSTDIR\icons\humanity\apps\scalable + rmDir $INSTDIR\icons\humanity\status + rmDir $INSTDIR\icons\humanity\devices + rmDir $INSTDIR\icons\humanity\places + rmDir $INSTDIR\icons\humanity\actions + rmDir $INSTDIR\icons\humanity\categories + rmDir $INSTDIR\icons\humanity\mimes + rmDir $INSTDIR\icons\humanity\apps + rmDir $INSTDIR\icons\humanity rmDir $INSTDIR\icons rmDir $INSTDIR\imageformats rmDir $INSTDIR\platforms diff --git a/windows/icons-humanity/CMakeLists.txt b/windows/icons-humanity/CMakeLists.txt new file mode 100644 index 000000000..870b29289 --- /dev/null +++ b/windows/icons-humanity/CMakeLists.txt @@ -0,0 +1,159 @@ +set(ICON_FILES +status/16/dialog-information.svg +status/48/media-playlist-shuffle.svg +status/48/dialog-information.svg +status/128/dialog-information.svg +status/24/media-playlist-shuffle.svg +status/24/dialog-information.svg +status/32/dialog-information.svg +status/64/dialog-information.svg +status/22/dialog-information.svg +devices/16/drive-harddisk.svg +devices/16/media-optical.svg +devices/16/media-optical-cd.svg +devices/16/audio-speakers.png +devices/48/drive-harddisk.svg +devices/48/media-optical.svg +devices/48/media-optical-cd.svg +devices/48/audio-speakers.png +devices/128/drive-harddisk.svg +devices/128/media-optical.svg +devices/128/media-optical-cd.svg +devices/24/drive-harddisk.svg +devices/24/media-optical.svg +devices/24/media-optical-cd.svg +devices/24/audio-speakers.png +devices/32/drive-harddisk.svg +devices/32/media-optical.svg +devices/32/media-optical-cd.svg +devices/32/audio-speakers.png +devices/64/drive-harddisk.svg +devices/64/media-optical.svg +devices/64/media-optical-cd.svg +devices/22/drive-harddisk.svg +devices/22/media-optical.svg +devices/22/media-optical-cd.svg +devices/22/audio-speakers.png +places/16/folder-documents.svg +places/16/folder-templates.svg +places/16/folder-publicshare.svg +places/16/inode-directory.svg +places/16/folder-download.svg +places/16/folder.svg +places/16/user-desktop.svg +places/16/folder-downloads.svg +places/16/folder-music.svg +places/48/folder-documents.svg +places/48/folder-templates.svg +places/48/folder-publicshare.svg +places/48/inode-directory.svg +places/48/folder-download.svg +places/48/folder.svg +places/48/user-desktop.svg +places/48/folder-downloads.svg +places/48/folder-music.svg +places/128/user-desktop.svg +places/24/folder-documents.svg +places/24/folder-templates.svg +places/24/folder-publicshare.svg +places/24/inode-directory.svg +places/24/folder-download.svg +places/24/folder.svg +places/24/user-desktop.svg +places/24/folder-downloads.svg +places/24/folder-music.svg +places/32/folder-documents.svg +places/32/folder-templates.svg +places/32/folder-publicshare.svg +places/32/inode-directory.svg +places/32/folder-download.svg +places/32/folder.svg +places/32/user-desktop.svg +places/32/folder-downloads.svg +places/32/folder-music.svg +places/64/folder-documents.svg +places/64/folder-templates.svg +places/64/folder-publicshare.svg +places/64/inode-directory.svg +places/64/folder-download.svg +places/64/folder.svg +places/64/user-desktop.svg +places/64/folder-downloads.svg +places/64/folder-music.svg +places/22/folder-documents.svg +places/22/folder-templates.svg +places/22/folder-publicshare.svg +places/22/inode-directory.svg +places/22/folder-download.svg +places/22/folder.svg +places/22/user-desktop.svg +places/22/folder-downloads.svg +places/22/folder-music.svg +actions/16/go-down.svg +actions/16/gtk-edit.svg +actions/16/edit-clear.svg +actions/16/go-previous.svg +actions/16/go-up.svg +actions/16/document-open.svg +actions/16/edit-find.png +actions/16/document-new.svg +actions/16/go-next.svg +actions/48/go-down.svg +actions/48/gtk-edit.svg +actions/48/edit-clear.svg +actions/48/gtk-execute.svg +actions/48/document-open-recent.svg +actions/48/go-previous.svg +actions/48/go-up.svg +actions/48/document-open.svg +actions/48/edit-find.png +actions/48/document-new.svg +actions/48/go-next.svg +actions/128/document-new.svg +actions/24/go-down.svg +actions/24/gtk-edit.svg +actions/24/edit-clear.svg +actions/24/gtk-execute.svg +actions/24/document-open-recent.svg +actions/24/go-previous.svg +actions/24/go-up.svg +actions/24/document-open.svg +actions/24/edit-find.png +actions/24/document-new.svg +actions/24/go-next.svg +actions/32/edit-find.png +actions/32/document-new.svg +actions/64/document-new.svg +actions/22/go-down.svg +actions/22/gtk-edit.svg +actions/22/document-open-recent.svg +actions/22/go-previous.svg +actions/22/go-up.svg +actions/22/edit-find.png +actions/22/document-new.svg +actions/22/go-next.svg +categories/48/preferences-other.svg +categories/24/preferences-other.svg +categories/64/preferences-other.svg +mimes/16/image-png.svg +mimes/16/audio-x-mp3-playlist.svg +mimes/16/audio-x-generic.svg +mimes/48/image-png.svg +mimes/48/audio-x-mp3-playlist.svg +mimes/48/audio-x-generic.svg +mimes/24/image-png.svg +mimes/24/audio-x-mp3-playlist.svg +mimes/24/audio-x-generic.svg +mimes/22/image-png.svg +mimes/22/audio-x-mp3-playlist.svg +mimes/22/audio-x-generic.svg +apps/16/preferences-desktop-keyboard.svg +apps/48/preferences-desktop-keyboard.svg +apps/24/preferences-desktop-keyboard.svg +) + +foreach(ICON ${ICON_FILES}) + get_filename_component(ICON_PATH ${ICON} PATH) + install(FILES ${CANTATA_ICONS_DIR}/${ICON} DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/${ICON_PATH}) +endforeach(ICON ${ICON_FILES}) +install(FILES gnome.copyright Humanity.copyright index.theme README DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}) diff --git a/windows/icons-humanity/Humanity.copyright b/windows/icons-humanity/Humanity.copyright new file mode 100644 index 000000000..661492ac0 --- /dev/null +++ b/windows/icons-humanity/Humanity.copyright @@ -0,0 +1,32 @@ +This package was debianized by Steve Kowalik on +Tue, 25 Aug 2009 13:41:32 +1000. + +This package was downloaded from https://launchpad.net/humanity/+download + +Upstream Author: + Daniel Fore + Jonian Guveli + K.Vishnoo Charan Reddy . + +License: + +The Humanity Icon Theme is licensed under the GPL v2. + +Parts of the work are based on the Tango icons, which are released under the +public domain. + +LibreOffice icons,libreoffice-*.png, are LibreOffice icons and libreoffice-*.svg +are modified from LibreOffice icons, which are licenced under CC-by-SA, +LGPL 3+, MPL 1.1. + +open-menu-here and pan-{down,end,start,up} icons were taken from the +adwaita-icon-theme package, and are licensed under CC-by-SA 3.0. + +The Debian packaging is Copyright Canonical Ltd, and is under the terms of the +GPL v3. + +On Debian/Ubuntu systems, the full text of the GPL version 2 can be found in +`/usr/share/common-licenses/GPL-2', the full text of the GPL version 3 +can be found in `/usr/share/common-licenses/GPL-3', and the full text of the +LGPL version 3 can be found in `/usr/share/common-licenses/LGPL-3'. + diff --git a/windows/icons-humanity/README b/windows/icons-humanity/README new file mode 100644 index 000000000..a0dca01d9 --- /dev/null +++ b/windows/icons-humanity/README @@ -0,0 +1,3 @@ +The icons included here are (apart from the cantata icon) are taken from the +Humanity and gnome icon sets. Only the minimum set of icons needed for Cantata. +are included. diff --git a/windows/icons-humanity/gnome.copyright b/windows/icons-humanity/gnome.copyright new file mode 100644 index 000000000..22b8ccaa4 --- /dev/null +++ b/windows/icons-humanity/gnome.copyright @@ -0,0 +1,205 @@ +This package was debianized by Takuo KITAME on +Fri, 17 Jan 2003 14:57:28 +0900. + +It was downloaded from + +Copyright © 2002-2008: + Ulisse Perusin + Riccardo Buzzotta + Josef Vybíral + Hylke Bons + Ricardo González + Lapo Calamandrei + Rodney Dawes + Luca Ferretti + Tuomas Kuosmanen + Andreas Nilsson + Jakub Steiner + +Copyright: + +GNOME icon theme is distributed under the terms of either +GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. + + +This work is licenced under the Creative Commons Attribution-Share Alike 3.0 +United States License. To view a copy of this licence, visit +http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative +Commons, 171 Second Street, Suite 300, San Francisco, California 94105, USA. + +When attributing the artwork, using "GNOME Project" is enough. +Please link to http://www.gnome.org where available. + + +============ + + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + + +On Debian GNU/Linux systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-3'. diff --git a/windows/icons-humanity/index.theme b/windows/icons-humanity/index.theme new file mode 100644 index 000000000..bdad65593 --- /dev/null +++ b/windows/icons-humanity/index.theme @@ -0,0 +1,231 @@ +[Icon Theme] +Name=Humanity +Comment=Smooth modern theme designed to be intuitive. +Inherits=Adwaita,hicolor + +Example=directory-x-normal + +#Directory list +Directories=actions/16,actions/22,actions/24,actions/32,actions/48,actions/64,actions/128,apps/16,apps/22,apps/24,apps/32,apps/48,apps/64,apps/scalable,categories/24,categories/48,categories/64,devices/16,devices/22,devices/24,devices/32,devices/48,devices/64,devices/128,mimes/16,mimes/22,mimes/24,mimes/48,places/16,places/22,places/24,places/32,places/48,places/64,places/128,status/16,status/22,status/24,status/32,status/48,status/64,status/128 + +[actions/16] +Size=16 +Context=Actions +Type=Fixed + +[actions/22] +Size=22 +Context=Actions +Type=Fixed + +[actions/24] +Size=24 +Context=Actions +Type=Fixed + +[actions/32] +Size=32 +Context=Actions +Type=Fixed + +[actions/48] +Size=48 +Context=Actions +Type=Scalable + +[actions/64] +Size=64 +Context=Actions +Type=Scalable + +[actions/128] +Size=128 +MaxSize=512 +Context=Actions +Type=Scalable + +[apps/16] +Size=16 +Context=Applications +Type=Fixed + +[apps/22] +Size=22 +Context=Applications +Type=Fixed + +[apps/24] +Size=24 +Context=Applications +Type=Fixed + +[apps/32] +Size=32 +Context=Applications +Type=Fixed + +[apps/48] +Size=48 +MaxSize=512 +Context=Applications +Type=Scalable + +[apps/64] +Size=64 +Context=Applications +Type=Fixed + +[apps/scalable] +MinSize=1 +Size=128 +MaxSize=256 +Context=Applications +Type=Scalable + +[categories/24] +Size=24 +Context=Categories +Type=Fixed + +[categories/48] +Size=48 +Context=Categories +Type=Scalable + +[categories/64] +Size=64 +MaxSize=512 +Context=Categories +Type=Scalable + +[devices/16] +Size=16 +Context=Devices +Type=Fixed + +[devices/22] +Size=22 +Context=Devices +Type=Fixed + +[devices/24] +Size=24 +Context=Devices +Type=Fixed + +[devices/32] +Size=32 +Context=Devices +Type=Fixed + +[devices/48] +Size=48 +MaxSize=512 +Context=Devices +Type=Scalable + +[devices/64] +Size=64 +MaxSize=512 +Context=Devices +Type=Scalable + +[devices/128] +Size=128 +MaxSize=512 +Context=Devices +Type=Scalable + +[mimes/16] +Size=16 +Context=MimeTypes +Type=Fixed + +[mimes/22] +Size=22 +Context=MimeTypes +Type=Fixed + +[mimes/24] +Size=24 +Context=MimeTypes +Type=Fixed + +[mimes/48] +Size=48 +MaxSize=512 +Context=MimeTypes +Type=Scalable + +[places/16] +Size=16 +Context=Places +Type=Fixed + +[places/22] +Size=22 +Context=Places +Type=Fixed + +[places/24] +Size=24 +Context=Places +Type=Fixed + +[places/32] +Size=32 +Context=Places +Type=Fixed + +[places/48] +Size=48 +Context=Places +Type=Scalable + +[places/64] +Size=64 +MaxSize=512 +Context=Places +Type=Scalable + +[places/128] +Size=128 +MinSize=64 +MaxSize=512 +Context=Places +Type=Scalable + +[status/16] +Size=16 +Context=Status +Type=Fixed + +[status/22] +Size=22 +Context=Status +Type=Fixed + +[status/24] +Size=24 +Context=Status +Type=Fixed + +[status/32] +Size=32 +Context=Status +Type=Fixed + +[status/48] +Size=48 +Context=Status +Type=Scalable + +[status/64] +Size=64 +Context=Status +Type=Scalable + +[status/128] +Size=128 +Context=Status +Type=Scalable diff --git a/windows/icons/CMakeLists.txt b/windows/icons-oxygen/CMakeLists.txt similarity index 100% rename from windows/icons/CMakeLists.txt rename to windows/icons-oxygen/CMakeLists.txt diff --git a/windows/icons/LICENSE.Creative Common Attribution-ShareAlike 3.0 License.html b/windows/icons-oxygen/LICENSE.Creative Common Attribution-ShareAlike 3.0 License.html similarity index 100% rename from windows/icons/LICENSE.Creative Common Attribution-ShareAlike 3.0 License.html rename to windows/icons-oxygen/LICENSE.Creative Common Attribution-ShareAlike 3.0 License.html diff --git a/windows/icons/LICENSE.LGPL_V3 b/windows/icons-oxygen/LICENSE.LGPL_V3 similarity index 100% rename from windows/icons/LICENSE.LGPL_V3 rename to windows/icons-oxygen/LICENSE.LGPL_V3 diff --git a/windows/icons/README b/windows/icons-oxygen/README similarity index 100% rename from windows/icons/README rename to windows/icons-oxygen/README diff --git a/windows/icons/index.theme b/windows/icons-oxygen/index.theme similarity index 100% rename from windows/icons/index.theme rename to windows/icons-oxygen/index.theme