...and add missing files!
878
windows/cantata.nsi.cmake
Normal file
@@ -0,0 +1,878 @@
|
||||
!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\oxygen
|
||||
file "icons\oxygen\index.theme"
|
||||
file "icons\oxygen\Oxygen License (Creative Common Attribution-ShareAlike 3.0).html"
|
||||
file "icons\oxygen\Oxygen README.txt"
|
||||
setOutPath $INSTDIR\icons\oxygen\128x128\categories
|
||||
file "icons\oxygen\128x128\categories\applications-internet.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\128x128\devices
|
||||
file "icons\oxygen\128x128\devices\media-optical.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\16x16\actions
|
||||
file "icons\oxygen\16x16\actions\application-exit.png"
|
||||
file "icons\oxygen\16x16\actions\bookmark-new.png"
|
||||
file "icons\oxygen\16x16\actions\configure.png"
|
||||
file "icons\oxygen\16x16\actions\dialog-cancel.png"
|
||||
file "icons\oxygen\16x16\actions\dialog-close.png"
|
||||
file "icons\oxygen\16x16\actions\dialog-ok.png"
|
||||
file "icons\oxygen\16x16\actions\document-edit.png"
|
||||
file "icons\oxygen\16x16\actions\document-export.png"
|
||||
file "icons\oxygen\16x16\actions\document-import.png"
|
||||
file "icons\oxygen\16x16\actions\document-new.png"
|
||||
file "icons\oxygen\16x16\actions\document-open.png"
|
||||
file "icons\oxygen\16x16\actions\document-save-as.png"
|
||||
file "icons\oxygen\16x16\actions\document-save.png"
|
||||
file "icons\oxygen\16x16\actions\edit-clear-list.png"
|
||||
file "icons\oxygen\16x16\actions\edit-clear-locationbar-ltr.png"
|
||||
file "icons\oxygen\16x16\actions\edit-clear-locationbar-rtl.png"
|
||||
file "icons\oxygen\16x16\actions\edit-delete.png"
|
||||
file "icons\oxygen\16x16\actions\edit-find.png"
|
||||
file "icons\oxygen\16x16\actions\edit-rename.png"
|
||||
file "icons\oxygen\16x16\actions\folder-sync.png"
|
||||
file "icons\oxygen\16x16\actions\go-down.png"
|
||||
file "icons\oxygen\16x16\actions\go-next.png"
|
||||
file "icons\oxygen\16x16\actions\go-previous.png"
|
||||
file "icons\oxygen\16x16\actions\go-up.png"
|
||||
file "icons\oxygen\16x16\actions\list-add.png"
|
||||
file "icons\oxygen\16x16\actions\list-remove.png"
|
||||
file "icons\oxygen\16x16\actions\media-playback-pause.png"
|
||||
file "icons\oxygen\16x16\actions\media-playback-start.png"
|
||||
file "icons\oxygen\16x16\actions\media-playback-stop.png"
|
||||
file "icons\oxygen\16x16\actions\media-skip-backward.png"
|
||||
file "icons\oxygen\16x16\actions\media-skip-forward.png"
|
||||
file "icons\oxygen\16x16\actions\process-stop.png"
|
||||
file "icons\oxygen\16x16\actions\speaker.png"
|
||||
file "icons\oxygen\16x16\actions\tools-wizard.png"
|
||||
file "icons\oxygen\16x16\actions\fork.png"
|
||||
file "icons\oxygen\16x16\actions\view-fullscreen.png"
|
||||
file "icons\oxygen\16x16\actions\view-media-artist.png"
|
||||
file "icons\oxygen\16x16\actions\view-media-playlist.png"
|
||||
file "icons\oxygen\16x16\actions\view-refresh.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\16x16\apps
|
||||
file "icons\oxygen\16x16\apps\cantata.png"
|
||||
file "icons\oxygen\16x16\apps\clock.png"
|
||||
file "icons\oxygen\16x16\apps\preferences-desktop-keyboard.png"
|
||||
file "icons\oxygen\16x16\apps\system-file-manager.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\16x16\categories
|
||||
file "icons\oxygen\16x16\categories\applications-internet.png"
|
||||
file "icons\oxygen\16x16\categories\preferences-other.png"
|
||||
file "icons\oxygen\16x16\categories\preferences-system-network.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\16x16\devices
|
||||
file "icons\oxygen\16x16\devices\media-optical.png"
|
||||
file "icons\oxygen\16x16\devices\multimedia-player.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\16x16\mimetypes
|
||||
file "icons\oxygen\16x16\mimetypes\audio-x-generic.png"
|
||||
file "icons\oxygen\16x16\mimetypes\inode-directory.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\16x16\places
|
||||
file "icons\oxygen\16x16\places\bookmarks.png"
|
||||
file "icons\oxygen\16x16\places\favorites.png"
|
||||
file "icons\oxygen\16x16\places\network-server.png"
|
||||
file "icons\oxygen\16x16\places\server-database.png"
|
||||
file "icons\oxygen\16x16\places\folder-temp.png"
|
||||
file "icons\oxygen\16x16\places\folder-downloads.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\16x16\status
|
||||
file "icons\oxygen\16x16\status\dialog-error.png"
|
||||
file "icons\oxygen\16x16\status\dialog-information.png"
|
||||
file "icons\oxygen\16x16\status\dialog-warning.png"
|
||||
file "icons\oxygen\16x16\status\media-playlist-shuffle.png"
|
||||
file "icons\oxygen\16x16\status\object-locked.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\actions
|
||||
file "icons\oxygen\22x22\actions\application-exit.png"
|
||||
file "icons\oxygen\22x22\actions\bookmark-new.png"
|
||||
file "icons\oxygen\22x22\actions\bookmarks.png"
|
||||
file "icons\oxygen\22x22\actions\configure.png"
|
||||
file "icons\oxygen\22x22\actions\dialog-cancel.png"
|
||||
file "icons\oxygen\22x22\actions\dialog-close.png"
|
||||
file "icons\oxygen\22x22\actions\dialog-ok.png"
|
||||
file "icons\oxygen\22x22\actions\document-edit.png"
|
||||
file "icons\oxygen\22x22\actions\document-export.png"
|
||||
file "icons\oxygen\22x22\actions\document-import.png"
|
||||
file "icons\oxygen\22x22\actions\document-new.png"
|
||||
file "icons\oxygen\22x22\actions\document-open.png"
|
||||
file "icons\oxygen\22x22\actions\document-save-as.png"
|
||||
file "icons\oxygen\22x22\actions\document-save.png"
|
||||
file "icons\oxygen\22x22\actions\edit-clear-list.png"
|
||||
file "icons\oxygen\22x22\actions\edit-clear-locationbar-ltr.png"
|
||||
file "icons\oxygen\22x22\actions\edit-clear-locationbar-rtl.png"
|
||||
file "icons\oxygen\22x22\actions\edit-delete.png"
|
||||
file "icons\oxygen\22x22\actions\edit-find.png"
|
||||
file "icons\oxygen\22x22\actions\edit-rename.png"
|
||||
file "icons\oxygen\22x22\actions\folder-sync.png"
|
||||
file "icons\oxygen\22x22\actions\go-down.png"
|
||||
file "icons\oxygen\22x22\actions\go-next.png"
|
||||
file "icons\oxygen\22x22\actions\go-previous.png"
|
||||
file "icons\oxygen\22x22\actions\go-up.png"
|
||||
file "icons\oxygen\22x22\actions\list-add.png"
|
||||
file "icons\oxygen\22x22\actions\list-remove.png"
|
||||
file "icons\oxygen\22x22\actions\media-playback-pause.png"
|
||||
file "icons\oxygen\22x22\actions\media-playback-start.png"
|
||||
file "icons\oxygen\22x22\actions\media-playback-stop.png"
|
||||
file "icons\oxygen\22x22\actions\media-skip-backward.png"
|
||||
file "icons\oxygen\22x22\actions\media-skip-forward.png"
|
||||
file "icons\oxygen\22x22\actions\process-stop.png"
|
||||
file "icons\oxygen\22x22\actions\speaker.png"
|
||||
file "icons\oxygen\22x22\actions\tools-wizard.png"
|
||||
file "icons\oxygen\22x22\actions\fork.png"
|
||||
file "icons\oxygen\22x22\actions\view-fullscreen.png"
|
||||
file "icons\oxygen\22x22\actions\view-media-artist.png"
|
||||
file "icons\oxygen\22x22\actions\view-media-playlist.png"
|
||||
file "icons\oxygen\22x22\actions\view-refresh.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\apps
|
||||
file "icons\oxygen\22x22\apps\cantata.png"
|
||||
file "icons\oxygen\22x22\apps\clock.png"
|
||||
file "icons\oxygen\22x22\apps\preferences-desktop-keyboard.png"
|
||||
file "icons\oxygen\22x22\apps\system-file-manager.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\categories
|
||||
file "icons\oxygen\22x22\categories\applications-internet.png"
|
||||
file "icons\oxygen\22x22\categories\preferences-other.png"
|
||||
file "icons\oxygen\22x22\categories\preferences-system-network.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\devices
|
||||
file "icons\oxygen\22x22\devices\media-optical.png"
|
||||
file "icons\oxygen\22x22\devices\multimedia-player.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\mimetypes
|
||||
file "icons\oxygen\22x22\mimetypes\audio-x-generic.png"
|
||||
file "icons\oxygen\22x22\mimetypes\inode-directory.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\places
|
||||
file "icons\oxygen\22x22\places\bookmarks.png"
|
||||
file "icons\oxygen\22x22\places\favorites.png"
|
||||
file "icons\oxygen\22x22\places\network-server.png"
|
||||
file "icons\oxygen\22x22\places\server-database.png"
|
||||
file "icons\oxygen\22x22\places\folder-temp.png"
|
||||
file "icons\oxygen\22x22\places\folder-downloads.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\status
|
||||
file "icons\oxygen\22x22\status\dialog-error.png"
|
||||
file "icons\oxygen\22x22\status\dialog-information.png"
|
||||
file "icons\oxygen\22x22\status\dialog-warning.png"
|
||||
file "icons\oxygen\22x22\status\media-playlist-shuffle.png"
|
||||
file "icons\oxygen\22x22\status\object-locked.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\22x22\apps
|
||||
file "icons\oxygen\24x24\apps\cantata.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\256x256\categories
|
||||
file "icons\oxygen\256x256\categories\applications-internet.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\256x256\devices
|
||||
file "icons\oxygen\256x256\devices\media-optical.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\32x32\actions
|
||||
file "icons\oxygen\32x32\actions\application-exit.png"
|
||||
file "icons\oxygen\32x32\actions\bookmark-new.png"
|
||||
file "icons\oxygen\32x32\actions\configure.png"
|
||||
file "icons\oxygen\32x32\actions\dialog-cancel.png"
|
||||
file "icons\oxygen\32x32\actions\dialog-close.png"
|
||||
file "icons\oxygen\32x32\actions\dialog-ok.png"
|
||||
file "icons\oxygen\32x32\actions\document-edit.png"
|
||||
file "icons\oxygen\32x32\actions\document-export.png"
|
||||
file "icons\oxygen\32x32\actions\document-import.png"
|
||||
file "icons\oxygen\32x32\actions\document-new.png"
|
||||
file "icons\oxygen\32x32\actions\document-open.png"
|
||||
file "icons\oxygen\32x32\actions\document-save-as.png"
|
||||
file "icons\oxygen\32x32\actions\document-save.png"
|
||||
file "icons\oxygen\32x32\actions\edit-clear-list.png"
|
||||
file "icons\oxygen\32x32\actions\edit-clear-locationbar-ltr.png"
|
||||
file "icons\oxygen\32x32\actions\edit-clear-locationbar-rtl.png"
|
||||
file "icons\oxygen\32x32\actions\edit-delete.png"
|
||||
file "icons\oxygen\32x32\actions\edit-find.png"
|
||||
file "icons\oxygen\32x32\actions\edit-rename.png"
|
||||
file "icons\oxygen\32x32\actions\folder-sync.png"
|
||||
file "icons\oxygen\32x32\actions\go-down.png"
|
||||
file "icons\oxygen\32x32\actions\go-next.png"
|
||||
file "icons\oxygen\32x32\actions\go-previous.png"
|
||||
file "icons\oxygen\32x32\actions\go-up.png"
|
||||
file "icons\oxygen\32x32\actions\list-add.png"
|
||||
file "icons\oxygen\32x32\actions\list-remove.png"
|
||||
file "icons\oxygen\32x32\actions\media-playback-pause.png"
|
||||
file "icons\oxygen\32x32\actions\media-playback-start.png"
|
||||
file "icons\oxygen\32x32\actions\media-playback-stop.png"
|
||||
file "icons\oxygen\32x32\actions\media-skip-backward.png"
|
||||
file "icons\oxygen\32x32\actions\media-skip-forward.png"
|
||||
file "icons\oxygen\32x32\actions\process-stop.png"
|
||||
file "icons\oxygen\32x32\actions\speaker.png"
|
||||
file "icons\oxygen\32x32\actions\tools-wizard.png"
|
||||
file "icons\oxygen\32x32\actions\fork.png"
|
||||
file "icons\oxygen\32x32\actions\view-fullscreen.png"
|
||||
file "icons\oxygen\32x32\actions\view-media-artist.png"
|
||||
file "icons\oxygen\32x32\actions\view-media-playlist.png"
|
||||
file "icons\oxygen\32x32\actions\view-refresh.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\32x32\apps
|
||||
file "icons\oxygen\32x32\apps\cantata.png"
|
||||
file "icons\oxygen\32x32\apps\clock.png"
|
||||
file "icons\oxygen\32x32\apps\preferences-desktop-keyboard.png"
|
||||
file "icons\oxygen\32x32\apps\system-file-manager.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\32x32\categories
|
||||
file "icons\oxygen\32x32\categories\applications-internet.png"
|
||||
file "icons\oxygen\32x32\categories\preferences-other.png"
|
||||
file "icons\oxygen\32x32\categories\preferences-system-network.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\32x32\devices
|
||||
file "icons\oxygen\32x32\devices\media-optical.png"
|
||||
file "icons\oxygen\32x32\devices\multimedia-player.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\32x32\mimetypes
|
||||
file "icons\oxygen\32x32\mimetypes\audio-x-generic.png"
|
||||
file "icons\oxygen\32x32\mimetypes\inode-directory.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\32x32\places
|
||||
file "icons\oxygen\32x32\places\bookmarks.png"
|
||||
file "icons\oxygen\32x32\places\favorites.png"
|
||||
file "icons\oxygen\32x32\places\network-server.png"
|
||||
file "icons\oxygen\32x32\places\server-database.png"
|
||||
file "icons\oxygen\32x32\places\folder-temp.png"
|
||||
file "icons\oxygen\32x32\places\folder-downloads.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\32x32\status
|
||||
file "icons\oxygen\32x32\status\dialog-error.png"
|
||||
file "icons\oxygen\32x32\status\dialog-information.png"
|
||||
file "icons\oxygen\32x32\status\dialog-warning.png"
|
||||
file "icons\oxygen\32x32\status\media-playlist-shuffle.png"
|
||||
file "icons\oxygen\32x32\status\object-locked.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\48x48\actions
|
||||
file "icons\oxygen\48x48\actions\bookmark-new.png"
|
||||
file "icons\oxygen\48x48\actions\edit-find.png"
|
||||
file "icons\oxygen\48x48\actions\go-down.png"
|
||||
file "icons\oxygen\48x48\actions\fork.png"
|
||||
file "icons\oxygen\48x48\actions\view-fullscreen.png"
|
||||
file "icons\oxygen\48x48\actions\view-media-playlist.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\48x48\apps
|
||||
file "icons\oxygen\48x48\apps\cantata.png"
|
||||
file "icons\oxygen\48x48\apps\clock.png"
|
||||
file "icons\oxygen\48x48\apps\preferences-desktop-keyboard.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\48x48\categories
|
||||
file "icons\oxygen\48x48\categories\applications-internet.png"
|
||||
file "icons\oxygen\48x48\categories\preferences-other.png"
|
||||
file "icons\oxygen\48x48\categories\preferences-system-network.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\48x48\devices
|
||||
file "icons\oxygen\48x48\devices\media-optical.png"
|
||||
file "icons\oxygen\48x48\devices\multimedia-player.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\48x48\places
|
||||
file "icons\oxygen\48x48\places\bookmarks.png"
|
||||
file "icons\oxygen\48x48\places\folder-temp.png"
|
||||
file "icons\oxygen\48x48\places\folder-downloads.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\48x48\status
|
||||
file "icons\oxygen\48x48\status\dialog-error.png"
|
||||
file "icons\oxygen\48x48\status\dialog-information.png"
|
||||
file "icons\oxygen\48x48\status\dialog-warning.png"
|
||||
file "icons\oxygen\48x48\status\media-playlist-shuffle.png"
|
||||
file "icons\oxygen\48x48\status\object-locked.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\64x64\actions
|
||||
file "icons\oxygen\64x64\actions\bookmark-new.png"
|
||||
file "icons\oxygen\64x64\actions\edit-find.png"
|
||||
file "icons\oxygen\64x64\actions\go-down.png"
|
||||
file "icons\oxygen\64x64\actions\view-media-playlist.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\64x64\apps
|
||||
file "icons\oxygen\64x64\apps\cantata.png"
|
||||
file "icons\oxygen\64x64\apps\clock.png"
|
||||
file "icons\oxygen\64x64\apps\preferences-desktop-keyboard.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\64x64\categories
|
||||
file "icons\oxygen\64x64\categories\applications-internet.png"
|
||||
file "icons\oxygen\64x64\categories\preferences-other.png"
|
||||
file "icons\oxygen\64x64\categories\preferences-system-network.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\64x64\devices
|
||||
file "icons\oxygen\64x64\devices\media-optical.png"
|
||||
file "icons\oxygen\64x64\devices\multimedia-player.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\64x64\places
|
||||
file "icons\oxygen\64x64\places\bookmarks.png"
|
||||
file "icons\oxygen\64x64\places\folder-temp.png"
|
||||
file "icons\oxygen\64x64\places\folder-downloads.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\64x64\status
|
||||
file "icons\oxygen\64x64\status\dialog-error.png"
|
||||
file "icons\oxygen\64x64\status\dialog-information.png"
|
||||
file "icons\oxygen\64x64\status\dialog-warning.png"
|
||||
setOutPath $INSTDIR\icons\oxygen\scalable\apps
|
||||
file "icons\oxygen\scalable\apps\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\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
|
||||
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
|
||||
BIN
windows/icons/128/media-optical.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
windows/icons/16/media-optical.png
Normal file
|
After Width: | Height: | Size: 998 B |
BIN
windows/icons/22/media-optical.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
windows/icons/256/media-optical.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
windows/icons/32/media-optical.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
windows/icons/48/media-optical.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
windows/icons/64/media-optical.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
13
windows/icons/AUTHORS
Executable file
@@ -0,0 +1,13 @@
|
||||
media-optical.svg is modified from Gnome icon theme
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
playlist.svg and dynamic-playlist.svg are created using papirus
|
||||
mimetype background
|
||||
|
||||
------------------------ ICON THEME PAPIRUS ------------------------
|
||||
SOURCES:
|
||||
Sam Hewitt - author icon theme Paper (https://github.com/snwh/paper-icon-theme)
|
||||
|
||||
CUSTOMIZER:
|
||||
Alexey Varfolomeev - Papirus Pack KDE (https://github.com/varlesh/papirus-pack-kde)
|
||||
26
windows/icons/CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
set(ICON_FILES
|
||||
svg/audio-x-generic.svg
|
||||
svg/dialog-information.svg
|
||||
svg/dynamic-playlist.svg
|
||||
svg/folder-downloads.svg
|
||||
svg/folder-temp.svg
|
||||
svg/fork.svg
|
||||
svg/inode-directory.svg
|
||||
svg/playlist.svg
|
||||
svg/preferences-desktop-keyboard.svg
|
||||
svg/preferences-other.svg
|
||||
svg/speaker.svg
|
||||
16/media-optical.png
|
||||
22/media-optical.png
|
||||
32/media-optical.png
|
||||
48/media-optical.png
|
||||
64/media-optical.png
|
||||
128/media-optical.png
|
||||
256/media-optical.png
|
||||
)
|
||||
|
||||
foreach(ICON ${ICON_FILES})
|
||||
get_filename_component(ICON_PATH ${ICON} PATH)
|
||||
install(FILES ${ICON} DESTINATION ${CANTATA_ICON_INSTALL_PREFIX}/${ICON_PATH})
|
||||
endforeach(ICON ${ICON_FILES})
|
||||
install(FILES AUTHORS index.theme LICENSE DESTINATION ${CANTATA_ICON_INSTALL_PREFIX})
|
||||
425
windows/icons/LICENSE
Executable file
@@ -0,0 +1,425 @@
|
||||
Creative Commons Attribution-ShareAlike 4.0 International
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
||||
does not provide legal services or legal advice. Distribution of
|
||||
Creative Commons public licenses does not create a lawyer-client or
|
||||
other relationship. Creative Commons makes its licenses and related
|
||||
information available on an "as-is" basis. Creative Commons gives no
|
||||
warranties regarding its licenses, any material licensed under their
|
||||
terms and conditions, or any related information. Creative Commons
|
||||
disclaims all liability for damages resulting from their use to the
|
||||
fullest extent possible.
|
||||
|
||||
Using Creative Commons Public Licenses
|
||||
|
||||
Creative Commons public licenses provide a standard set of terms and
|
||||
conditions that creators and other rights holders may use to share
|
||||
original works of authorship and other material subject to copyright
|
||||
and certain other rights specified in the public license below. The
|
||||
following considerations are for informational purposes only, are not
|
||||
exhaustive, and do not form part of our licenses.
|
||||
|
||||
Considerations for licensors: Our public licenses are
|
||||
intended for use by those authorized to give the public
|
||||
permission to use material in ways otherwise restricted by
|
||||
copyright and certain other rights. Our licenses are
|
||||
irrevocable. Licensors should read and understand the terms
|
||||
and conditions of the license they choose before applying it.
|
||||
Licensors should also secure all rights necessary before
|
||||
applying our licenses so that the public can reuse the
|
||||
material as expected. Licensors should clearly mark any
|
||||
material not subject to the license. This includes other CC-
|
||||
licensed material, or material used under an exception or
|
||||
limitation to copyright. More considerations for licensors:
|
||||
wiki.creativecommons.org/Considerations_for_licensors
|
||||
|
||||
Considerations for the public: By using one of our public
|
||||
licenses, a licensor grants the public permission to use the
|
||||
licensed material under specified terms and conditions. If
|
||||
the licensor's permission is not necessary for any reason--for
|
||||
example, because of any applicable exception or limitation to
|
||||
copyright--then that use is not regulated by the license. Our
|
||||
licenses grant only permissions under copyright and certain
|
||||
other rights that a licensor has authority to grant. Use of
|
||||
the licensed material may still be restricted for other
|
||||
reasons, including because others have copyright or other
|
||||
rights in the material. A licensor may make special requests,
|
||||
such as asking that all changes be marked or described.
|
||||
Although not required by our licenses, you are encouraged to
|
||||
respect those requests where reasonable. More_considerations
|
||||
for the public:
|
||||
wiki.creativecommons.org/Considerations_for_licensees
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons Attribution-ShareAlike 4.0 International Public
|
||||
License
|
||||
|
||||
By exercising the Licensed Rights (defined below), You accept and agree
|
||||
to be bound by the terms and conditions of this Creative Commons
|
||||
Attribution-ShareAlike 4.0 International Public License ("Public
|
||||
License"). To the extent this Public License may be interpreted as a
|
||||
contract, You are granted the Licensed Rights in consideration of Your
|
||||
acceptance of these terms and conditions, and the Licensor grants You
|
||||
such rights in consideration of benefits the Licensor receives from
|
||||
making the Licensed Paper available under these terms and
|
||||
conditions.
|
||||
|
||||
|
||||
Section 1 -- Definitions.
|
||||
|
||||
a. Adapted Paper means material subject to Copyright and Similar
|
||||
Rights that is derived from or based upon the Licensed Paper
|
||||
and in which the Licensed Paper is translated, altered,
|
||||
arranged, transformed, or otherwise modified in a manner requiring
|
||||
permission under the Copyright and Similar Rights held by the
|
||||
Licensor. For purposes of this Public License, where the Licensed
|
||||
Paper is a musical work, performance, or sound recording,
|
||||
Adapted Paper is always produced where the Licensed Paper is
|
||||
synched in timed relation with a moving image.
|
||||
|
||||
b. Adapter's License means the license You apply to Your Copyright
|
||||
and Similar Rights in Your contributions to Adapted Paper in
|
||||
accordance with the terms and conditions of this Public License.
|
||||
|
||||
c. BY-SA Compatible License means a license listed at
|
||||
creativecommons.org/compatiblelicenses, approved by Creative
|
||||
Commons as essentially the equivalent of this Public License.
|
||||
|
||||
d. Copyright and Similar Rights means copyright and/or similar rights
|
||||
closely related to copyright including, without limitation,
|
||||
performance, broadcast, sound recording, and Sui Generis Database
|
||||
Rights, without regard to how the rights are labeled or
|
||||
categorized. For purposes of this Public License, the rights
|
||||
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
||||
Rights.
|
||||
|
||||
e. Effective Technological Measures means those measures that, in the
|
||||
absence of proper authority, may not be circumvented under laws
|
||||
fulfilling obligations under Article 11 of the WIPO Copyright
|
||||
Treaty adopted on December 20, 1996, and/or similar international
|
||||
agreements.
|
||||
|
||||
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
||||
any other exception or limitation to Copyright and Similar Rights
|
||||
that applies to Your use of the Licensed Paper.
|
||||
|
||||
g. License Elements means the license attributes listed in the name
|
||||
of a Creative Commons Public License. The License Elements of this
|
||||
Public License are Attribution and ShareAlike.
|
||||
|
||||
h. Licensed Paper means the artistic or literary work, database,
|
||||
or other material to which the Licensor applied this Public
|
||||
License.
|
||||
|
||||
i. Licensed Rights means the rights granted to You subject to the
|
||||
terms and conditions of this Public License, which are limited to
|
||||
all Copyright and Similar Rights that apply to Your use of the
|
||||
Licensed Paper and that the Licensor has authority to license.
|
||||
|
||||
j. Licensor means the individual(s) or entity(ies) granting rights
|
||||
under this Public License.
|
||||
|
||||
k. Share means to provide material to the public by any means or
|
||||
process that requires permission under the Licensed Rights, such
|
||||
as reproduction, public display, public performance, distribution,
|
||||
dissemination, communication, or importation, and to make material
|
||||
available to the public including in ways that members of the
|
||||
public may access the material from a place and at a time
|
||||
individually chosen by them.
|
||||
|
||||
l. Sui Generis Database Rights means rights other than copyright
|
||||
resulting from Directive 96/9/EC of the European Parliament and of
|
||||
the Council of 11 March 1996 on the legal protection of databases,
|
||||
as amended and/or succeeded, as well as other essentially
|
||||
equivalent rights anywhere in the world.
|
||||
|
||||
m. You means the individual or entity exercising the Licensed Rights
|
||||
under this Public License. Your has a corresponding meaning.
|
||||
|
||||
|
||||
Section 2 -- Scope.
|
||||
|
||||
a. License grant.
|
||||
|
||||
1. Subject to the terms and conditions of this Public License,
|
||||
the Licensor hereby grants You a worldwide, royalty-free,
|
||||
non-sublicensable, non-exclusive, irrevocable license to
|
||||
exercise the Licensed Rights in the Licensed Paper to:
|
||||
|
||||
a. reproduce and Share the Licensed Paper, in whole or
|
||||
in part; and
|
||||
|
||||
b. produce, reproduce, and Share Adapted Paper.
|
||||
|
||||
2. Exceptions and Limitations. For the avoidance of doubt, where
|
||||
Exceptions and Limitations apply to Your use, this Public
|
||||
License does not apply, and You do not need to comply with
|
||||
its terms and conditions.
|
||||
|
||||
3. Term. The term of this Public License is specified in Section
|
||||
6(a).
|
||||
|
||||
4. Media and formats; technical modifications allowed. The
|
||||
Licensor authorizes You to exercise the Licensed Rights in
|
||||
all media and formats whether now known or hereafter created,
|
||||
and to make technical modifications necessary to do so. The
|
||||
Licensor waives and/or agrees not to assert any right or
|
||||
authority to forbid You from making technical modifications
|
||||
necessary to exercise the Licensed Rights, including
|
||||
technical modifications necessary to circumvent Effective
|
||||
Technological Measures. For purposes of this Public License,
|
||||
simply making modifications authorized by this Section 2(a)
|
||||
(4) never produces Adapted Paper.
|
||||
|
||||
5. Downstream recipients.
|
||||
|
||||
a. Offer from the Licensor -- Licensed Paper. Every
|
||||
recipient of the Licensed Paper automatically
|
||||
receives an offer from the Licensor to exercise the
|
||||
Licensed Rights under the terms and conditions of this
|
||||
Public License.
|
||||
|
||||
b. Additional offer from the Licensor -- Adapted Paper.
|
||||
Every recipient of Adapted Paper from You
|
||||
automatically receives an offer from the Licensor to
|
||||
exercise the Licensed Rights in the Adapted Paper
|
||||
under the conditions of the Adapter's License You apply.
|
||||
|
||||
c. No downstream restrictions. You may not offer or impose
|
||||
any additional or different terms or conditions on, or
|
||||
apply any Effective Technological Measures to, the
|
||||
Licensed Paper if doing so restricts exercise of the
|
||||
Licensed Rights by any recipient of the Licensed
|
||||
Paper.
|
||||
|
||||
6. No endorsement. Nothing in this Public License constitutes or
|
||||
may be construed as permission to assert or imply that You
|
||||
are, or that Your use of the Licensed Paper is, connected
|
||||
with, or sponsored, endorsed, or granted official status by,
|
||||
the Licensor or others designated to receive attribution as
|
||||
provided in Section 3(a)(1)(A)(i).
|
||||
|
||||
b. Other rights.
|
||||
|
||||
1. Moral rights, such as the right of integrity, are not
|
||||
licensed under this Public License, nor are publicity,
|
||||
privacy, and/or other similar personality rights; however, to
|
||||
the extent possible, the Licensor waives and/or agrees not to
|
||||
assert any such rights held by the Licensor to the limited
|
||||
extent necessary to allow You to exercise the Licensed
|
||||
Rights, but not otherwise.
|
||||
|
||||
2. Patent and trademark rights are not licensed under this
|
||||
Public License.
|
||||
|
||||
3. To the extent possible, the Licensor waives any right to
|
||||
collect royalties from You for the exercise of the Licensed
|
||||
Rights, whether directly or through a collecting society
|
||||
under any voluntary or waivable statutory or compulsory
|
||||
licensing scheme. In all other cases the Licensor expressly
|
||||
reserves any right to collect such royalties.
|
||||
|
||||
|
||||
Section 3 -- License Conditions.
|
||||
|
||||
Your exercise of the Licensed Rights is expressly made subject to the
|
||||
following conditions.
|
||||
|
||||
a. Attribution.
|
||||
|
||||
1. If You Share the Licensed Paper (including in modified
|
||||
form), You must:
|
||||
|
||||
a. retain the following if it is supplied by the Licensor
|
||||
with the Licensed Paper:
|
||||
|
||||
i. identification of the creator(s) of the Licensed
|
||||
Paper and any others designated to receive
|
||||
attribution, in any reasonable manner requested by
|
||||
the Licensor (including by pseudonym if
|
||||
designated);
|
||||
|
||||
ii. a copyright notice;
|
||||
|
||||
iii. a notice that refers to this Public License;
|
||||
|
||||
iv. a notice that refers to the disclaimer of
|
||||
warranties;
|
||||
|
||||
v. a URI or hyperlink to the Licensed Paper to the
|
||||
extent reasonably practicable;
|
||||
|
||||
b. indicate if You modified the Licensed Paper and
|
||||
retain an indication of any previous modifications; and
|
||||
|
||||
c. indicate the Licensed Paper is licensed under this
|
||||
Public License, and include the text of, or the URI or
|
||||
hyperlink to, this Public License.
|
||||
|
||||
2. You may satisfy the conditions in Section 3(a)(1) in any
|
||||
reasonable manner based on the medium, means, and context in
|
||||
which You Share the Licensed Paper. For example, it may be
|
||||
reasonable to satisfy the conditions by providing a URI or
|
||||
hyperlink to a resource that includes the required
|
||||
information.
|
||||
|
||||
3. If requested by the Licensor, You must remove any of the
|
||||
information required by Section 3(a)(1)(A) to the extent
|
||||
reasonably practicable.
|
||||
|
||||
b. ShareAlike.
|
||||
|
||||
In addition to the conditions in Section 3(a), if You Share
|
||||
Adapted Paper You produce, the following conditions also apply.
|
||||
|
||||
1. The Adapter's License You apply must be a Creative Commons
|
||||
license with the same License Elements, this version or
|
||||
later, or a BY-SA Compatible License.
|
||||
|
||||
2. You must include the text of, or the URI or hyperlink to, the
|
||||
Adapter's License You apply. You may satisfy this condition
|
||||
in any reasonable manner based on the medium, means, and
|
||||
context in which You Share Adapted Paper.
|
||||
|
||||
3. You may not offer or impose any additional or different terms
|
||||
or conditions on, or apply any Effective Technological
|
||||
Measures to, Adapted Paper that restrict exercise of the
|
||||
rights granted under the Adapter's License You apply.
|
||||
|
||||
|
||||
Section 4 -- Sui Generis Database Rights.
|
||||
|
||||
Where the Licensed Rights include Sui Generis Database Rights that
|
||||
apply to Your use of the Licensed Paper:
|
||||
|
||||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
||||
to extract, reuse, reproduce, and Share all or a substantial
|
||||
portion of the contents of the database;
|
||||
|
||||
b. if You include all or a substantial portion of the database
|
||||
contents in a database in which You have Sui Generis Database
|
||||
Rights, then the database in which You have Sui Generis Database
|
||||
Rights (but not its individual contents) is Adapted Paper,
|
||||
|
||||
including for purposes of Section 3(b); and
|
||||
c. You must comply with the conditions in Section 3(a) if You Share
|
||||
all or a substantial portion of the contents of the database.
|
||||
|
||||
For the avoidance of doubt, this Section 4 supplements and does not
|
||||
replace Your obligations under this Public License where the Licensed
|
||||
Rights include other Copyright and Similar Rights.
|
||||
|
||||
|
||||
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
||||
|
||||
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
||||
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
||||
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
||||
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
||||
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
||||
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
||||
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
||||
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
||||
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
||||
|
||||
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
||||
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
||||
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
||||
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
||||
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
||||
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
||||
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
||||
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
||||
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
||||
|
||||
c. The disclaimer of warranties and limitation of liability provided
|
||||
above shall be interpreted in a manner that, to the extent
|
||||
possible, most closely approximates an absolute disclaimer and
|
||||
waiver of all liability.
|
||||
|
||||
|
||||
Section 6 -- Term and Termination.
|
||||
|
||||
a. This Public License applies for the term of the Copyright and
|
||||
Similar Rights licensed here. However, if You fail to comply with
|
||||
this Public License, then Your rights under this Public License
|
||||
terminate automatically.
|
||||
|
||||
b. Where Your right to use the Licensed Paper has terminated under
|
||||
Section 6(a), it reinstates:
|
||||
|
||||
1. automatically as of the date the violation is cured, provided
|
||||
it is cured within 30 days of Your discovery of the
|
||||
violation; or
|
||||
|
||||
2. upon express reinstatement by the Licensor.
|
||||
|
||||
For the avoidance of doubt, this Section 6(b) does not affect any
|
||||
right the Licensor may have to seek remedies for Your violations
|
||||
of this Public License.
|
||||
|
||||
c. For the avoidance of doubt, the Licensor may also offer the
|
||||
Licensed Paper under separate terms or conditions or stop
|
||||
distributing the Licensed Paper at any time; however, doing so
|
||||
will not terminate this Public License.
|
||||
|
||||
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
||||
License.
|
||||
|
||||
|
||||
Section 7 -- Other Terms and Conditions.
|
||||
|
||||
a. The Licensor shall not be bound by any additional or different
|
||||
terms or conditions communicated by You unless expressly agreed.
|
||||
|
||||
b. Any arrangements, understandings, or agreements regarding the
|
||||
Licensed Paper not stated herein are separate from and
|
||||
independent of the terms and conditions of this Public License.
|
||||
|
||||
|
||||
Section 8 -- Interpretation.
|
||||
|
||||
a. For the avoidance of doubt, this Public License does not, and
|
||||
shall not be interpreted to, reduce, limit, restrict, or impose
|
||||
conditions on any use of the Licensed Paper that could lawfully
|
||||
be made without permission under this Public License.
|
||||
|
||||
b. To the extent possible, if any provision of this Public License is
|
||||
deemed unenforceable, it shall be automatically reformed to the
|
||||
minimum extent necessary to make it enforceable. If the provision
|
||||
cannot be reformed, it shall be severed from this Public License
|
||||
without affecting the enforceability of the remaining terms and
|
||||
conditions.
|
||||
|
||||
c. No term or condition of this Public License will be waived and no
|
||||
failure to comply consented to unless expressly agreed to by the
|
||||
Licensor.
|
||||
|
||||
d. Nothing in this Public License constitutes or may be interpreted
|
||||
as a limitation upon, or waiver of, any privileges and immunities
|
||||
that apply to the Licensor or You, including from the legal
|
||||
processes of any jurisdiction or authority.
|
||||
|
||||
|
||||
=======================================================================
|
||||
|
||||
Creative Commons is not a party to its public licenses.
|
||||
Notwithstanding, Creative Commons may elect to apply one of its public
|
||||
licenses to material it publishes and in those instances will be
|
||||
considered the "Licensor." Except for the limited purpose of indicating
|
||||
that material is shared under a Creative Commons public license or as
|
||||
otherwise permitted by the Creative Commons policies published at
|
||||
creativecommons.org/policies, Creative Commons does not authorize the
|
||||
use of the trademark "Creative Commons" or any other trademark or logo
|
||||
of Creative Commons without its prior written consent including,
|
||||
without limitation, in connection with any unauthorized modifications
|
||||
to any of its public licenses or any other arrangements,
|
||||
understandings, or agreements concerning use of licensed material. For
|
||||
the avoidance of doubt, this paragraph does not form part of the public
|
||||
licenses.
|
||||
|
||||
Creative Commons may be contacted at creativecommons.org.
|
||||
40
windows/icons/index.theme
Executable file
@@ -0,0 +1,40 @@
|
||||
[Icon Theme]
|
||||
Name=Cantata
|
||||
Comment=Icons taken from Papirus theme.
|
||||
|
||||
Directories=svg,16,22,32,48,64,128,256
|
||||
|
||||
[svg]
|
||||
Size=48
|
||||
MinSize=8
|
||||
MaxSize=512
|
||||
Type=Scalable
|
||||
|
||||
[16]
|
||||
Size=16
|
||||
Type=Threshold
|
||||
|
||||
[22]
|
||||
Size=22
|
||||
Type=Threshold
|
||||
|
||||
[32]
|
||||
Size=32
|
||||
Type=Threshold
|
||||
|
||||
[48]
|
||||
Size=48
|
||||
Type=Threshold
|
||||
|
||||
[64]
|
||||
Size=64
|
||||
Type=Threshold
|
||||
|
||||
[128]
|
||||
Size=128
|
||||
Type=Threshold
|
||||
|
||||
[256]
|
||||
Size=256
|
||||
Type=Threshold
|
||||
|
||||
9
windows/icons/svg/audio-x-generic.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<g id="g4651" transform="translate(.39 -.7243)">
|
||||
<path id="path21637" fill="#8564c2" d="m9.61 4.7243c-1.108 0-2 0.892-2 2v36c0 1.108 0.892 2 2 2h28c1.108 0 2-0.892 2-2v-26l-11-1-1-11z"/>
|
||||
<path id="path21641" opacity=".1" fill="#fff" d="m9.61 4.7243c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h18l11 11h1l-12-12z"/>
|
||||
<path id="path21645" fill="#c2b1e0" d="m27.61 4.7243v10c0 1.1046 0.89543 2 2 2h10l-12-12z"/>
|
||||
<path id="path8695" style="enable-background:new" fill="#fff" d="m19.61 19.724h-0.0192c0.0381 4.1874-0.00073 7.375 0 11.562-1.8438-1.1725-4.5316-0.41497-5.5172 1.5309-1.1469 1.9742-0.16651 4.7651 1.9602 5.5923 2.0774 0.95043 4.7614-0.2976 5.3772-2.4962 0.30759-1.2005 0.13601-2.4536 0.18418-3.6809 0.005-2.8362 0.01-4.6724 0.0149-7.5086h9c-0.006 2.5208-0.0128 4.0417-0.0192 6.5625-1.8438-1.1725-4.5316-0.41497-5.5172 1.5309-1.1469 1.9742-0.16651 4.7651 1.9602 5.5923 2.2491 1.0177 5.4228-0.5127 5.5925-3.0831-0.0756-2.33-0.01-4.6677-0.0263-7.001 0.003-2.8672 0.0105-5.7344 0.01-8.6016h-13z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
11
windows/icons/svg/dialog-information.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<g id="g4435" transform="translate(0,1)">
|
||||
<rect id="rect4203" transform="matrix(0,-1,-1,0,0,0)" rx="20" ry="20" height="40" width="40" y="-44" x="-43" fill="#30a3db"/>
|
||||
<g id="g4425" transform="matrix(2 0 0 -2 -1068 -674.01)">
|
||||
<path id="path4429" class="error" fill="#fff" d="m545-355h2v9.0039h-2zm0 11.004h2v1.9961h-2z"/>
|
||||
</g>
|
||||
<path id="rect4459" opacity=".2" fill="#fff" d="m24 3c-11.08 0-20 8.92-20 20 0 0.168 0.008 0.333 0.0117 0.5 0.2647-10.846 9.0763-19.5 19.988-19.5s19.724 8.6539 19.988 19.5c0.004-0.16686 0.0117-0.33213 0.0117-0.5 0-11.08-8.92-20-20-20z"/>
|
||||
<path id="rect4445" opacity=".3" d="m4.0117 22.5c-0.0041 0.167-0.0117 0.332-0.0117 0.5 0 11.08 8.92 20 20 20s20-8.92 20-20c0-0.168-0.008-0.333-0.012-0.5-0.264 10.846-9.076 19.5-19.988 19.5s-19.724-8.654-19.988-19.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 957 B |
7
windows/icons/svg/dynamic-playlist.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<path id="path21637" fill="#8564c2" d="m10 4c-1.108 0-2 0.892-2 2v36c0 1.108 0.892 2 2 2h28c1.108 0 2-0.892 2-2v-26l-11-1-1-11z"/>
|
||||
<path id="path21641" opacity=".1" d="m10 4c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h18l11 11h1l-12-12z" fill="#fff"/>
|
||||
<path id="path21645" fill="#c2b1e0" d="m28 4v10c0 1.1046 0.89543 2 2 2h10l-12-12z"/>
|
||||
<path id="path4" d="m16.431 22.786h10.809c1.8578 0 3.3778 1.4685 3.3778 3.2633v10.443c0 1.7948-1.52 3.2633-3.3778 3.2633h-10.809c-1.8578 0-3.3778-1.4685-3.3778-3.2633v-10.443c0-1.7948 1.52-3.2633 3.3778-3.2633zm9.4578 14.359c1.1193 0 2.0267-0.87661 2.0267-1.958s-0.90736-1.958-2.0267-1.958-2.0267 0.87661-2.0267 1.958 0.90736 1.958 2.0267 1.958zm0-7.832c1.1193 0 2.0267-0.8766 2.0267-1.958s-0.90736-1.958-2.0267-1.958-2.0267 0.87661-2.0267 1.958 0.90736 1.958 2.0267 1.958zm-4.0534 3.916c1.1193 0 2.0267-0.87661 2.0267-1.958s-0.90736-1.958-2.0267-1.958-2.0267 0.87661-2.0267 1.958 0.90736 1.958 2.0267 1.958zm-4.0534 3.916c1.1193 0 2.0267-0.87661 2.0267-1.958s-0.90736-1.958-2.0267-1.958-2.0267 0.87661-2.0267 1.958 0.90736 1.958 2.0267 1.958zm0-7.832c1.1193 0 2.0267-0.8766 2.0267-1.958s-0.90736-1.958-2.0267-1.958-2.0267 0.87661-2.0267 1.958 0.90736 1.958 2.0267 1.958zm-0.608-7.833c0.3152-1.4849 1.6828-2.6106 3.3094-2.6106h10.809c1.8578 0 3.3778 1.4685 3.3778 3.2633v10.443c0 1.5714-1.1653 2.8927-2.7022 3.1972v-12.987c0-0.71793-0.608-1.3053-1.3511-1.3053h-13.443z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
13
windows/icons/svg/folder-downloads.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<g id="g4440" transform="translate(0 .99498)">
|
||||
<path id="path4876" fill="#bb9e7b" d="m4 35.005v-28c0-1.108 0.89878-2.1224 2-2h16l4 4h16.103s1.8975 0 1.8975 2v24c0 1.108-0.892 2-2 2h-36c-1.108 0-2-0.892-2-2z"/>
|
||||
<path id="path4878" fill="#c6ae91" d="m44 39.005v-28c0-1.108-0.89878-2.1224-2-2h-16l-4 4h-16c-2 0-2 1.9167-2 1.9167v24.083c0 1.108 0.892 2 2 2h36c1.108 0 2-0.892 2-2z"/>
|
||||
<path id="path4880" opacity=".1" fill="#fff" d="m6 5.005c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h16l4 4v-1l-4-4z"/>
|
||||
<path id="path4882" opacity=".1" fill="#fff" d="m26 9.005-4 4h-16c-2 0-2 1.9062-2 1.9062v1s0-1.9062 2-1.9062h16l4-4h16c1.1012-0.12236 2 0.892 2 2v-1c0-1.108-0.89878-2.1224-2-2h-16z"/>
|
||||
<path id="path4934" opacity=".1" d="m25 9.005-3 3h-16c-2 0-2 1.9062-2 1.9062v1s0-1.9062 2-1.9062h16l3.5-3.5z"/>
|
||||
<path id="path4091" opacity=".2" style="enable-background:new" d="m36 21v6h2.5l-4.5 7-4.5-7h2.5v-6zm-8 14h12v2h-12z"/>
|
||||
<path id="path5058" style="enable-background:new" fill="#fff" d="m36 20.005v6h2.5l-4.5 7-4.5-7h2.5v-6zm-8 14h12v2h-12z"/>
|
||||
<path id="path4872" opacity=".3" d="m4 37.994v1.006c0 1.108 0.892 2 2 2h36c1.108 0 2-0.892 2-2v-1.0059c0 1.108-0.892 2-2 2h-36c-1.108 0-2-0.89201-2-2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
13
windows/icons/svg/folder-temp.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<g id="g4440" transform="translate(0 .995)">
|
||||
<path id="path5269" fill="#bb9e7b" d="m4 35.005v-28c0-1.108 0.89878-2.1224 2-2h16l4 4h16.103s1.8975 0 1.8975 2v24c0 1.108-0.892 2-2 2h-36c-1.108 0-2-0.892-2-2z"/>
|
||||
<path id="path5271" fill="#c6ae91" d="m44 39.005v-28c0-1.108-0.89878-2.1224-2-2h-16l-4 4h-16c-2 0-2 1.9167-2 1.9167v24.083c0 1.108 0.892 2 2 2h36c1.108 0 2-0.892 2-2z"/>
|
||||
<path id="path5273" opacity=".1" fill="#fff" d="m6 5.005c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h16l4 4v-1l-4-4z"/>
|
||||
<path id="path5275" opacity=".1" fill="#fff" d="m26 9.005-4 4h-16c-2 0-2 1.9062-2 1.9062v1s0-1.9062 2-1.9062h16l4-4h16c1.1012-0.1224 2 0.892 2 2v-1c0-1.108-0.89878-2.1224-2-2h-16z"/>
|
||||
<path id="path5327" opacity=".1" d="m25 9.005-3 3h-16c-2 0-2 1.9062-2 1.9062v1s0-1.9062 2-1.9062h16l3.5-3.5z"/>
|
||||
<path id="path5246" opacity=".2" style="color:#000000;enable-background:new" fill-rule="evenodd" d="m27.812 23.005c-0.0237 0-0.0393 0.025-0.0625 0.031-0.0791 0.02-0.15937 0.046-0.25 0.094-0.0994 0.052-0.19803 0.119-0.28125 0.2188-0.009 0.011-0.023 0.02-0.0312 0.031-0.057 0.076-0.0919 0.1737-0.125 0.2812-0.009 0.031-0.0243 0.06-0.0312 0.094-0.0209 0.081-0.0327 0.166-0.0312 0.25v9h1v-1h1v-7h5v3h3v9h1v-1h1c0.001-0.1452-0.00082-0.7376 0-1v-1c0.00043-0.3561-0.0001-0.5737 0-1v-3c-0.002-2.4169-0.00066-2.3463 0-2.4375 0.00015-0.021 0-0.5625 0-0.5625l-4-4h-7.1874zm10.188 14v1h1v-1h-1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm0-1h1v-1h-1v1zm0-1v-1h-1v1h1zm0-1h1v-1h-1v1z"/>
|
||||
<path id="rect12037" style="color:#000000;enable-background:new" fill-rule="evenodd" fill="#fff" d="m27.812 22.005c-0.0237 0-0.0393 0.025-0.0625 0.031-0.0791 0.02-0.15937 0.046-0.25 0.094-0.0994 0.052-0.19803 0.119-0.28125 0.2188-0.009 0.011-0.023 0.02-0.0312 0.031-0.057 0.076-0.0919 0.1737-0.125 0.2812-0.009 0.031-0.0243 0.06-0.0312 0.094-0.0209 0.081-0.0327 0.166-0.0312 0.25v9h1v-1h1v-7h5v3h3v9h1v-1h1c0.001-0.1452-0.00082-0.7376 0-1v-1c0.00043-0.3561-0.0001-0.5737 0-1v-3c-0.002-2.4169-0.00066-2.3463 0-2.4375 0.00015-0.021 0-0.5625 0-0.5625l-4-4h-7.1874zm10.188 14v1h1v-1h-1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm-1 0h-1v1h1v-1zm-1 0v-1h-1v1h1zm0-1h1v-1h-1v1zm0-1v-1h-1v1h1zm0-1h1v-1h-1v1z"/>
|
||||
<path id="path5265" opacity=".3" d="m4 37.994v1.006c0 1.108 0.892 2 2 2h36c1.108 0 2-0.892 2-2v-1.0059c0 1.108-0.892 2-2 2h-36c-1.108 0-2-0.892-2-2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
18
windows/icons/svg/fork.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<g id="g4468" transform="translate(0,1)">
|
||||
<rect id="rect4203-4" transform="matrix(0,-1,-1,0,0,0)" rx="20" ry="20" height="40" width="40" y="-44" x="-43" fill="#5db43e"/>
|
||||
<path id="path4068" opacity=".2" fill="#fff" d="m24 3c-11.08 0-20 8.92-20 20 0 0.168-0.004 0.333 0 0.5 0.2644-10.846 9.088-19.5 20-19.5s19.736 8.654 20 19.5c0.004-0.167 0-0.332 0-0.5 0-11.08-8.92-20-20-20z"/>
|
||||
<g id="g4491" opacity=".2" transform="matrix(.99942 0 0 .99942 12 13)">
|
||||
<g id="g4493">
|
||||
<path id="path4495" d="m24.013 0.001s-3.601-0.101-7.2 1.7c-1.1 0.5-2.3 1.3-3.3 2.3-1.617 1.617-4.129 4.594-6.107 7h-4.393l-2 3 3.392 0.917c0.01 0.121 0.042 0.292 0.136 0.523l-0.527 1.159s-0.2 0.4 1.3 2c1.6 1.601 2.1 1.4 2.1 1.4l1.243-0.564c0.186 0.058 0.324 0.078 0.414 0.078l0.943 3.486 3-2v-4.527c2.423-1.959 5.396-4.421 7-5.973 1-1 1.8-2.2 2.399-3.3 1.699-3.599 1.6-7.199 1.6-7.199zm-7 9c-1.101 0-2-0.9-2-2 0-1.101 0.899-2 2-2 1.1 0 2 0.899 2 2 0 1.1-0.901 2-2 2zm-10.5 12c0.2 0.101 0.3 0.2 0.5 0.3-0.2 0.2-0.4 0.5-0.601 0.7-2.301 2.3-6.399 2-6.399 2s-0.3-4.101 2-6.399c0.2-0.201 0.5-0.399 0.7-0.601 0.1 0.2 0.199 0.3 0.3 0.5-1.5 1.899-1.3 4.8-1.3 4.8s2.899 0.2 4.8-1.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4472" transform="matrix(.99942 0 0 .99942 12 12)" fill="#fff">
|
||||
<g id="g4432" fill="#fff">
|
||||
<path id="path4434" fill="#fff" d="m24.013 0.001s-3.601-0.101-7.2 1.7c-1.1 0.5-2.3 1.3-3.3 2.3-1.617 1.617-4.129 4.594-6.107 7h-4.393l-2 3 3.392 0.917c0.01 0.121 0.042 0.292 0.136 0.523l-0.527 1.159s-0.2 0.4 1.3 2c1.6 1.601 2.1 1.4 2.1 1.4l1.243-0.564c0.186 0.058 0.324 0.078 0.414 0.078l0.943 3.486 3-2v-4.527c2.423-1.959 5.396-4.421 7-5.973 1-1 1.8-2.2 2.399-3.3 1.699-3.599 1.6-7.199 1.6-7.199zm-7 9c-1.101 0-2-0.9-2-2 0-1.101 0.899-2 2-2 1.1 0 2 0.899 2 2 0 1.1-0.901 2-2 2zm-10.5 12c0.2 0.101 0.3 0.2 0.5 0.3-0.2 0.2-0.4 0.5-0.601 0.7-2.301 2.3-6.399 2-6.399 2s-0.3-4.101 2-6.399c0.2-0.201 0.5-0.399 0.7-0.601 0.1 0.2 0.199 0.3 0.3 0.5-1.5 1.899-1.3 4.8-1.3 4.8s2.899 0.2 4.8-1.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="rect3289" opacity=".3" d="m4.0117 22.5c-0.0041 0.167-0.0117 0.332-0.0117 0.5 0 11.08 8.92 20 20 20s20-8.92 20-20c0-0.168-0.008-0.333-0.012-0.5-0.264 10.846-9.076 19.5-19.988 19.5s-19.724-8.654-19.988-19.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
11
windows/icons/svg/inode-directory.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<g id="g4444" transform="translate(0 .99498)">
|
||||
<path id="path4159" fill="#bb9e7b" d="m4 35.005v-28c0-1.108 0.89878-2.1224 2-2h16l4 4h16.103s1.8975 0 1.8975 2v24c0 1.108-0.892 2-2 2h-36c-1.108 0-2-0.892-2-2z"/>
|
||||
<path id="rect3454" fill="#c6ae91" d="m44 39.005v-28c0-1.108-0.89878-2.1224-2-2h-16l-4 4h-16c-2 0-2 1.9167-2 1.9167v24.083c0 1.108 0.892 2 2 2h36c1.108 0 2-0.892 2-2z"/>
|
||||
<path id="path4298" opacity=".1" fill="#fff" d="m6 5.005c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h16l4 4v-1l-4-4z"/>
|
||||
<path id="path4161" opacity=".1" fill="#fff" d="m26 9.005-4 4h-16c-2 0-2 1.9062-2 1.9062v1s0-1.9062 2-1.9062h16l4-4h16c1.1012-0.12236 2 0.892 2 2v-1c0-1.108-0.89878-2.1224-2-2h-16z"/>
|
||||
<path id="path4518" opacity=".1" d="m25 9.005-3 3h-16c-2 0-2 1.9062-2 1.9062v1s0-1.9062 2-1.9062h16l3.5-3.5z"/>
|
||||
<path id="path4494-3" opacity=".3" d="m4 37.994v1.006c0 1.108 0.892 2 2 2h36c1.108 0 2-0.892 2-2v-1.0059c0 1.108-0.892 2-2 2h-36c-1.108 0-2-0.89201-2-2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
176
windows/icons/svg/media-optical.svg
Normal file
@@ -0,0 +1,176 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="128px"
|
||||
height="128px"
|
||||
viewBox="0 0 128 128"
|
||||
enable-background="new 0 0 128 128"
|
||||
xml:space="preserve"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="media-optical.svg"><metadata
|
||||
id="metadata71"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="739"
|
||||
inkscape:window-height="480"
|
||||
id="namedview69"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.84375"
|
||||
inkscape:cx="64"
|
||||
inkscape:cy="64"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" /><defs
|
||||
id="defs4"><filter
|
||||
id="Gaussian_Blur"><feGaussianBlur
|
||||
in="SourceGraphic"
|
||||
stdDeviation="3"
|
||||
id="feGaussianBlur7" /></filter><filter
|
||||
id="Gaussian_Blur2"><feGaussianBlur
|
||||
in="SourceGraphic"
|
||||
stdDeviation="1"
|
||||
id="feGaussianBlur10" /></filter></defs><g
|
||||
id="Layer_3"
|
||||
opacity="0.6"><g
|
||||
id="g13"><path
|
||||
d="M63.063,8.67c-30.427,0-55.092,24.666-55.092,55.092c0,30.428,24.666,55.093,55.092,55.093 c30.428,0,55.092-24.665,55.092-55.093C118.155,33.335,93.491,8.67,63.063,8.67z M63.063,79.033 c-7.609,0-13.777-6.168-13.777-13.776c0-7.609,6.168-13.778,13.777-13.778c7.607,0,13.777,6.169,13.777,13.778 C76.841,72.865,70.671,79.033,63.063,79.033z"
|
||||
style="filter:url(#Gaussian_Blur2)"
|
||||
id="path15" /></g></g><g
|
||||
id="Layer_3_copy"><g
|
||||
id="g18"><path
|
||||
fill="#E5E5E5"
|
||||
stroke="#858585"
|
||||
stroke-width="0.5"
|
||||
d="M61.5,6.466c-30.427,0-55.092,24.666-55.092,55.092 c0,30.428,24.666,55.092,55.092,55.092c30.428,0,55.092-24.664,55.092-55.092C116.592,31.132,91.928,6.466,61.5,6.466z M61.5,76.83c-7.609,0-13.777-6.169-13.777-13.777S53.891,49.276,61.5,49.276c7.607,0,13.777,6.168,13.777,13.777 S69.107,76.83,61.5,76.83z"
|
||||
id="path20" /></g></g><g
|
||||
id="Layer_1"
|
||||
style="opacity:0.33"><g
|
||||
id="g23"
|
||||
style=""><linearGradient
|
||||
id="SVGID_1_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="56.686"
|
||||
y1="13.9155"
|
||||
x2="66.353"
|
||||
y2="109.582"><stop
|
||||
offset="0"
|
||||
style="stop-color:#CCCCCC"
|
||||
id="stop26" /><stop
|
||||
offset="1"
|
||||
style="stop-color:#A1A6A8"
|
||||
id="stop28" /></linearGradient><path
|
||||
d="M61.5,8.389c-29.365,0-53.17,23.805-53.17,53.17s23.805,53.17,53.17,53.17 s53.17-23.805,53.17-53.17S90.865,8.389,61.5,8.389z M61.5,76.297c-7.344,0-13.297-5.953-13.297-13.296S54.156,49.705,61.5,49.705 c7.343,0,13.297,5.953,13.297,13.296S68.843,76.297,61.5,76.297z"
|
||||
id="path30"
|
||||
fill="url(#SVGID_1_)"
|
||||
style="" /></g><g
|
||||
id="g32"
|
||||
style=""><g
|
||||
id="g34"
|
||||
style=""><defs
|
||||
id="defs36"><path
|
||||
id="SVGID_2_"
|
||||
d="M61.5,8.389c-29.365,0-53.17,23.805-53.17,53.17s23.805,53.17,53.17,53.17s53.17-23.805,53.17-53.17 S90.865,8.389,61.5,8.389z M61.5,76.297c-7.344,0-13.297-5.953-13.297-13.296S54.156,49.705,61.5,49.705 c7.343,0,13.297,5.953,13.297,13.296S68.843,76.297,61.5,76.297z" /></defs><clipPath
|
||||
id="SVGID_3_"><use
|
||||
xlink:href="#SVGID_2_"
|
||||
overflow="visible"
|
||||
id="use40" /></clipPath><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="152.237,72.892 61.5,64.288 -29.238,72.892 -29.238,55.687 61.5,64.288 152.237,55.687 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon42"
|
||||
fill="#FF3D45"
|
||||
opacity="0.5" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="-10.94,127.093 61.184,63.012 75.678,-32.375 133.301,-1.077 61.184,63.012 46.678,158.391 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon44"
|
||||
fill="#E0FFFF"
|
||||
opacity="0.5" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="0.146,133.114 61.182,63.011 86.764,-26.354 122.215,-7.099 61.182,63.011 35.592,152.368 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon46"
|
||||
fill="#FFFFFF" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="144.783,84.571 61.5,64.288 -24.111,60.02 -21.784,44.008 61.5,64.288 147.11,68.559 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon48"
|
||||
fill="#FF8000"
|
||||
opacity="0.5" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="137.329,96.25 61.5,64.288 -18.984,47.148 -14.329,32.329 61.5,64.288 141.984,81.431 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon50"
|
||||
fill="#FFFF00"
|
||||
opacity="0.5" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="129.875,107.929 61.5,64.288 -13.857,34.276 -6.875,20.65 61.5,64.288 136.857,94.303 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon52"
|
||||
fill="#5EFF00"
|
||||
opacity="0.5" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="122.421,119.608 61.5,64.289 -8.73,21.403 0.58,8.97 61.5,64.289 131.731,107.175 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon54"
|
||||
fill="#00D3DF"
|
||||
opacity="0.5" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="114.967,131.287 61.501,64.289 -3.604,8.532 8.034,-2.708 61.501,64.289 126.605,120.047 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon56"
|
||||
fill="#0012DF"
|
||||
opacity="0.5" /><polygon
|
||||
clip-path="url(#SVGID_3_)"
|
||||
points="107.513,142.967 61.501,64.289 1.523,-4.34 15.488,-14.387 61.501,64.289 121.479,132.919 "
|
||||
style="filter:url(#Gaussian_Blur)"
|
||||
id="polygon58"
|
||||
fill="#6B476B"
|
||||
opacity="0.5" /></g></g></g><g
|
||||
id="Layer_2"><g
|
||||
id="g61"><path
|
||||
opacity="0.22"
|
||||
fill="#636363"
|
||||
stroke="#000000"
|
||||
stroke-width="0.25"
|
||||
d="M61.5,46.661c-9.024,0-16.34,7.315-16.34,16.34 c0,9.024,7.315,16.339,16.34,16.339S77.84,72.024,77.84,63C77.84,53.976,70.524,46.661,61.5,46.661z M61.5,68.316 c-2.986,0-5.407-2.421-5.407-5.406c0-2.986,2.421-5.406,5.407-5.406c2.985,0,5.407,2.42,5.407,5.406 C66.906,65.896,64.485,68.316,61.5,68.316z"
|
||||
id="path63" /></g><circle
|
||||
opacity="0.5"
|
||||
fill="none"
|
||||
stroke="#505050"
|
||||
stroke-width="0.25"
|
||||
cx="61.5"
|
||||
cy="62.88"
|
||||
r="10.693"
|
||||
id="circle65" /><ellipse
|
||||
opacity="0.3"
|
||||
fill="none"
|
||||
stroke="#505050"
|
||||
stroke-width="0.25"
|
||||
cx="61.5"
|
||||
cy="62.88"
|
||||
rx="6.788"
|
||||
ry="6.667"
|
||||
id="ellipse67" /></g></svg>
|
||||
|
After Width: | Height: | Size: 7.5 KiB |
22
windows/icons/svg/playlist.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<path id="path13672" fill="#2095f2" d="m10 4c-1.108 0-2 0.892-2 2v36c0 1.108 0.892 2 2 2h28c1.108 0 2-0.892 2-2v-26l-11-1-1-11z"/>
|
||||
<path id="path13674" opacity=".1" d="m10 4c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h18l11 11h1l-12-12z" fill="#fff"/>
|
||||
<path id="path13678" fill="#7cc0f5" d="m28 4v10c0 1.1046 0.89543 2 2 2h10l-12-12z"/>
|
||||
<g id="g4410" fill="#fff" transform="translate(0 3.913)">
|
||||
<rect id="rect4347" height="1.9826" width="1.9826" y="29.009" x="12.991"/>
|
||||
<rect id="rect4347-0" height="1.9826" width="18" y="29.009" x="17.009"/>
|
||||
</g>
|
||||
<g id="g4410-4" fill="#fff" transform="translate(.017391 -.10435)">
|
||||
<rect id="rect4347-9" height="1.9826" width="1.9826" y="29.009" x="12.991"/>
|
||||
<rect id="rect4347-0-2" height="1.9826" width="18" y="29.009" x="17.009"/>
|
||||
</g>
|
||||
<g id="g4410-4-4" fill="#fff" transform="translate(.043478 -4.0696)">
|
||||
<rect id="rect4347-9-2" height="1.9826" width="1.9826" y="29.009" x="12.991"/>
|
||||
<rect id="rect4347-0-2-5" height="1.9826" width="18" y="29.009" x="17.009"/>
|
||||
</g>
|
||||
<g id="g4410-4-4-5" fill="#fff" transform="translate(-.017392 -8.0348)">
|
||||
<rect id="rect4347-9-2-2" height="1.9826" width="1.9826" y="29.009" x="12.991"/>
|
||||
<rect id="rect4347-0-2-5-2" height="1.9826" width="18" y="29.009" x="17.009"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
11
windows/icons/svg/preferences-desktop-keyboard.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<g id="g4435" transform="translate(0,1)">
|
||||
<rect id="rect4203" transform="matrix(0,-1,-1,0,0,0)" rx="2" ry="2" height="36" width="24" y="-42" x="-35" fill="#5f7c8a"/>
|
||||
<path id="path4129" opacity=".2" d="m10.5 16c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm-24 6c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm-18 6c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h15c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5z"/>
|
||||
<path id="rect3308" fill="#ebebeb" d="m10.5 15c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm-24 6c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm6 0c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5zm-18 6c-0.277 0-0.5 0.223-0.5 0.5v3c0 0.277 0.223 0.5 0.5 0.5h15c0.277 0 0.5-0.223 0.5-0.5v-3c0-0.277-0.223-0.5-0.5-0.5z"/>
|
||||
<path id="rect4135" opacity=".2" fill="#fff" d="m8 11c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h32c1.108 0 2 0.892 2 2v-1c0-1.108-0.892-2-2-2h-32z"/>
|
||||
<path id="path4479" opacity=".4" fill="#fff" d="m10.5 15c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm-24 6c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm6 0c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h3c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-3zm-18 6c-0.277 0-0.5 0.223-0.5 0.5v1c0-0.277 0.223-0.5 0.5-0.5h15c0.277 0 0.5 0.223 0.5 0.5v-1c0-0.277-0.223-0.5-0.5-0.5h-15z"/>
|
||||
<path id="rect3346" opacity=".3" d="m6 32v1c0 1.108 0.892 2 2 2h32c1.108 0 2-0.892 2-2v-1c0 1.108-0.892 2-2 2h-32c-1.108 0-2-0.892-2-2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
6
windows/icons/svg/preferences-other.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<path id="rect6917" d="m19.5 3c-2.493 0-4.5 2.007-4.5 4.5v4.5h-9c-1.662 0-3 1.338-3 3v9h4.5c2.493 0 4.5 2.007 4.5 4.5s-2.007 4.5-4.5 4.5h-4.5v9c0 1.662 1.338 3 3 3h9v-4.5c0-2.493 2.007-4.5 4.5-4.5s4.5 2.007 4.5 4.5v4.5h9c1.662 0 3-1.338 3-3v-9h4.5c2.493 0 4.5-2.007 4.5-4.5s-2.007-4.5-4.5-4.5h-4.5v-9c0-1.662-1.338-3-3-3h-9v-4.5c0-2.493-2.007-4.5-4.5-4.5z" fill="#7ad354"/>
|
||||
<path id="path8303" opacity=".2" d="m19.5 3c-2.493 0-4.5 2.007-4.5 4.5v1c0-2.493 2.007-4.5 4.5-4.5s4.5 2.007 4.5 4.5v-1c0-2.493-2.007-4.5-4.5-4.5zm-13.5 9c-1.662 0-3 1.338-3 3v1c0-1.662 1.338-3 3-3h9v-1h-9zm18 0v1h9c1.662 0 3 1.338 3 3v-1c0-1.662-1.338-3-3-3h-9zm12 12v1h4.5c2.3214 0 4.1987 1.7476 4.4492 4 0.019-0.166 0.051-0.328 0.051-0.5 0-2.493-2.007-4.5-4.5-4.5h-4.5zm-24.051 5c-0.25053 2.2524-2.1278 4-4.4492 4h-4.5v1h4.5c2.493 0 4.5-2.007 4.5-4.5 0-0.17157-0.0323-0.33353-0.0508-0.5z" fill="#fff"/>
|
||||
<path id="path4431" opacity=".3" d="m3 23v1h4.5c2.3214 0 4.1987 1.7476 4.4492 4 0.019-0.166 0.051-0.328 0.051-0.5 0-2.493-2.007-4.5-4.5-4.5h-4.5zm41.949 5c-0.25 2.252-2.128 4-4.449 4h-4.5v1h4.5c2.493 0 4.5-2.007 4.5-4.5 0-0.172-0.032-0.334-0.051-0.5zm-25.449 7c-2.493 0-4.5 2.007-4.5 4.5v1c0-2.493 2.007-4.5 4.5-4.5s4.5 2.007 4.5 4.5v-1c0-2.493-2.007-4.5-4.5-4.5zm-16.5 6v1c0 1.662 1.338 3 3 3h9v-1h-9c-1.662 0-3-1.338-3-3zm33 0c0 1.662-1.338 3-3 3h-9v1h9c1.662 0 3-1.338 3-3v-1z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
15
windows/icons/svg/speaker.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg id="svg2817" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
|
||||
<path id="rect4203-4" fill="#5e5e5e" d="m24 4c-4.513 0-8.653 1.4975-11.992 4h-2.008c-1.108 0-2 0.892-2 2v2.0078c-2.5025 3.339-4 7.479-4 11.992s1.4975 8.653 4 11.992v2.008c0 1.108 0.892 2 2 2h2.0078c3.3394 2.5025 7.4796 4 11.992 4 4.5126 0 8.6528-1.4975 11.992-4h2.008c1.108 0 2-0.892 2-2v-2.0078c2.502-3.339 4-7.479 4-11.992s-1.498-8.653-4-11.992v-2.008c0-1.108-0.892-2-2-2h-2.008c-3.339-2.5025-7.479-4-11.992-4z"/>
|
||||
<path id="path4476" opacity=".2" d="m11 11a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm26 0a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm-26 26a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm26 0a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1z"/>
|
||||
<path id="path4379" fill="#fff" d="m11 10a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm26 0a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm-26 26a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm26 0a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1z"/>
|
||||
<circle id="circle4450" opacity=".2" style="enable-background:new" transform="matrix(0,-1,-1,0,0,0)" cy="-24" cx="-25" r="15"/>
|
||||
<circle id="circle4407" style="enable-background:new" cx="-24" transform="matrix(0,-1,-1,0,0,0)" cy="-24" r="15" fill="#3f3f3f"/>
|
||||
<circle id="circle4385-5" style="enable-background:new" cx="-24" transform="matrix(0,-1,-1,0,0,0)" cy="-24" r="13" fill="#fec006"/>
|
||||
<circle id="circle4478" opacity=".2" style="enable-background:new" transform="matrix(0,-1,-1,0,-136,-236)" filter="url(#filter4484)" cy="-160" cx="-261" r="6"/>
|
||||
<circle id="circle4501" style="enable-background:new" cx="-24" transform="matrix(0,-1,-1,0,0,0)" cy="-24" r="6" fill="#3f3f3f"/>
|
||||
<circle id="circle4503" opacity=".2" style="enable-background:new" transform="matrix(0,-1,-1,0,0,0)" cy="-24" cx="-22" r="4" fill="#fff"/>
|
||||
<path id="path4436" opacity=".2" fill="#fff" d="m24 4c-4.513 0-8.653 1.4975-11.992 4h-2.008c-1.108 0-2 0.892-2 2v1c0-1.108 0.892-2 2-2h2.0078c3.339-2.5025 7.479-4 11.992-4s8.653 1.4975 11.992 4h2.008c1.108 0 2 0.892 2 2v-1c0-1.108-0.892-2-2-2h-2.008c-3.339-2.5025-7.479-4-11.992-4zm-16 8.008c-2.5025 3.339-4 7.479-4 11.992 0 0.16849 0.0154 0.33257 0.0195 0.5 0.10699-4.3168 1.5714-8.2775 3.9805-11.492v-1zm32 0v1c2.409 3.2147 3.8735 7.1754 3.9805 11.492 0.004-0.16743 0.0195-0.33151 0.0195-0.5 0-4.5126-1.4975-8.6528-4-11.992z"/>
|
||||
<path id="circle4441" opacity=".2" style="enable-background:new" fill="#fff" d="m24 8a15 15 0 0 0 -15 15 15 15 0 0 0 0.0195 0.414 15 15 0 0 1 14.98 -14.414 15 15 0 0 1 14.98 14.586 15 15 0 0 0 0.02 -0.586 15 15 0 0 0 -15 -15z"/>
|
||||
<path id="path4460" opacity=".3" d="m4.0195 23.5c-0.0041 0.167-0.0195 0.332-0.0195 0.5 0 4.513 1.4975 8.653 4 11.992v-1c-2.409-3.214-3.8735-7.175-3.9805-11.492zm39.96 0c-0.107 4.317-1.571 8.278-3.98 11.492v1c2.502-3.339 4-7.479 4-11.992 0-0.168-0.015-0.333-0.02-0.5zm-35.98 13.5v1c0 1.108 0.892 2 2 2h2.008c3.339 2.502 7.479 4 11.992 4s8.653-1.498 11.992-4h2.008c1.108 0 2-0.892 2-2v-1c0 1.108-0.892 2-2 2h-2.008c-3.339 2.502-7.479 4-11.992 4s-8.653-1.498-11.992-4h-2.008c-1.108 0-2-0.892-2-2z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |