aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-02 15:26:54 -0400
committerKen Moore <moorekou@gmail.com>2016-06-02 15:26:54 -0400
commitffcb6592bfc9a47e9c56014f955f6deb1c76db85 (patch)
treef1eedc789706b32a3805ef15e44e7c38a9cda706 /src-qt5/desktop-utils/lumina-fm
parentRename/move the new RSS reader plugin to "rssreader" in the backend/source tr... (diff)
downloadlumina-ffcb6592bfc9a47e9c56014f955f6deb1c76db85.tar.gz
lumina-ffcb6592bfc9a47e9c56014f955f6deb1c76db85.tar.bz2
lumina-ffcb6592bfc9a47e9c56014f955f6deb1c76db85.zip
Fix a bunch of little things with the desktop:
1) Reset which dirs are watched for apps to be installed into every time the watcher updates (fixes the detection of KDE apps getting installed/removed) 2) Add a new LuminaUtils function for converting a .desktop or binary name into a full path (searching all the various system dirs until it finds the file) 3) Convert the luminaDesktop.conf parser to allow relative paths/filenames for favorite/default apps 4) Update the default luminaDesktop.conf file quite a bit so there are app actually setup out of box. 5) Update the luminaDesktop.conf parser to properly set mimetypes as needed. 6) Fix the install location of the lumina-fm icon.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/lumina-fm.pro7
1 files changed, 3 insertions, 4 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro
index 9bb90a0e..5e0717f8 100644
--- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro
+++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro
@@ -34,12 +34,11 @@ FORMS += MainUI.ui \
widgets/SlideshowWidget.ui \
widgets/DirWidget.ui
-# RESOURCES+= lumina-fm.qrc
+icons.files = Insight-FileManager.png
+icons.path = $${L_SHAREDIR}/pixmaps
LIBS += -lLuminaUtils
-DEPENDPATH += ../libLumina
-
TRANSLATIONS = i18n/lumina-fm_af.ts \
i18n/lumina-fm_ar.ts \
i18n/lumina-fm_az.ts \
@@ -109,7 +108,7 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO
desktop.files=lumina-fm.desktop
desktop.path=$${L_SHAREDIR}/applications/
-INSTALLS += target dotrans desktop
+INSTALLS += target dotrans desktop icons
NO_I18N{
INSTALLS -= dotrans
bgstack15