diff --git a/misc/128-apps-filelight.png b/misc/128-apps-filelight.png new file mode 100644 index 0000000..fa940fa Binary files /dev/null and b/misc/128-apps-filelight.png differ diff --git a/misc/16-apps-filelight.png b/misc/16-apps-filelight.png index ba774df..c013a5c 100644 Binary files a/misc/16-apps-filelight.png and b/misc/16-apps-filelight.png differ diff --git a/misc/22-apps-filelight.png b/misc/22-apps-filelight.png index de77644..dd3674a 100644 Binary files a/misc/22-apps-filelight.png and b/misc/22-apps-filelight.png differ diff --git a/misc/32-apps-filelight.png b/misc/32-apps-filelight.png index 5f9bc97..e1a4136 100644 Binary files a/misc/32-apps-filelight.png and b/misc/32-apps-filelight.png differ diff --git a/misc/48-apps-filelight.png b/misc/48-apps-filelight.png index 4582874..b342462 100644 Binary files a/misc/48-apps-filelight.png and b/misc/48-apps-filelight.png differ diff --git a/misc/64-apps-filelight.png b/misc/64-apps-filelight.png index cbac345..fb3f6bf 100644 Binary files a/misc/64-apps-filelight.png and b/misc/64-apps-filelight.png differ diff --git a/misc/CMakeLists.txt b/misc/CMakeLists.txt index 656d5c3..f4382de 100644 --- a/misc/CMakeLists.txt +++ b/misc/CMakeLists.txt @@ -1,33 +1,34 @@ ####################################################################### # Copyright 2008-2009 Martin Sandsmark # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License or (at your option) version 3 or any later version # accepted by the membership of KDE e.V. (or its successor approved # by the membership of KDE e.V.), which shall act as a proxy # defined in Section 14 of version 3 of the license. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ####################################################################### install(PROGRAMS org.kde.filelight.desktop DESTINATION ${XDG_APPS_INSTALL_DIR}) install(FILES filelightrc DESTINATION ${CONFIG_INSTALL_DIR}) install(FILES filelightui.rc DESTINATION ${KXMLGUI_INSTALL_DIR}//filelight) install(FILES org.kde.filelight.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) ecm_install_icons(ICONS 32-actions-views_filelight.png 16-apps-filelight.png 22-apps-filelight.png 32-apps-filelight.png 48-apps-filelight.png 64-apps-filelight.png + 128-apps-filelight.png DESTINATION ${ICON_INSTALL_DIR} THEME hicolor) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 06f5e8d..a98b164 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,60 +1,61 @@ ####################################################################### # Copyright 2008-2014 Martin Sandsmark # Copyright 2017 Harald Sitter # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License or (at your option) version 3 or any later version # accepted by the membership of KDE e.V. (or its successor approved # by the membership of KDE e.V.), which shall act as a proxy # defined in Section 14 of version 3 of the license. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ####################################################################### set(filelight_SRCS radialMap/widget.cpp radialMap/map.cpp radialMap/widgetEvents.cpp radialMap/labels.cpp scan.cpp progressBox.cpp Config.cpp settingsDialog.cpp fileTree.cpp localLister.cpp remoteLister.cpp summaryWidget.cpp historyAction.cpp mainWindow.cpp main.cpp ) set(filelight_ICONS ${CMAKE_CURRENT_SOURCE_DIR}/../misc/16-apps-filelight.png ${CMAKE_CURRENT_SOURCE_DIR}/../misc/32-apps-filelight.png ${CMAKE_CURRENT_SOURCE_DIR}/../misc/48-apps-filelight.png ${CMAKE_CURRENT_SOURCE_DIR}/../misc/64-apps-filelight.png + ${CMAKE_CURRENT_SOURCE_DIR}/../misc/128-apps-filelight.png ) ecm_add_app_icon(filelight_SRCS ICONS ${filelight_ICONS}) ki18n_wrap_ui(filelight_SRCS dialog.ui) add_executable(filelight ${filelight_SRCS}) target_link_libraries(filelight KF5::I18n KF5::XmlGui KF5::KIOWidgets # Only used for KDirLister, may be able to move away from that. ) if (WIN32) find_package(KDEWin REQUIRED) target_link_libraries(filelight kdewin) endif() install(TARGETS filelight ${INSTALL_TARGETS_DEFAULT_ARGS})