From 9fe8cb1f455f5c0c029a1340076cb2cae4e2716d Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 27 Sep 2016 14:24:25 -0400 Subject: Get the new backend functional. This is still disabled for the moment, but the initial tests seem to indicate that the new backend is faster and more stable than the current system. --- src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-fm/lumina-fm.pro') diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 91e2952c..487a6421 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -17,7 +17,9 @@ SOURCES += main.cpp \ widgets/SlideshowWidget.cpp \ widgets/DirWidget.cpp \ gitCompat.cpp \ - gitWizard.cpp + gitWizard.cpp \ + Browser.cpp \ + BrowserWidget.cpp HEADERS += MainUI.h \ FODialog.h \ @@ -29,7 +31,9 @@ HEADERS += MainUI.h \ widgets/SlideshowWidget.h \ widgets/DirWidget.h \ gitCompat.h \ - gitWizard.h + gitWizard.h \ + Browser.h \ + BrowserWidget.h FORMS += MainUI.ui \ FODialog.ui \ -- cgit From 04b5af3c9996f24764fddb4819f38e178c5dff4a Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 30 Sep 2016 14:40:40 -0400 Subject: Commit a large update to lumina-fm: The entire backend has been rewritten around multi-threading, and is much faster and more responsive now. The entire browsing widget has been redesigned for a better workflow and cleaner UI. The tabs/columns "group modes" have been removed. Instead, tabs are always used, but each browser supports a single/dual columns *within* each tab (via a couple simple buttons on the toolbar). Each column within a tab will share the same interface buttons (toolbar actions, ZFS snapshot slider,etc) - and they will reflect the settings on the "Active" column (with appropriate visual changes to indicate which one is active). The icon size options have also been removed from the menu bar and are now a couple small "zoom" buttons on the browsing widgets instead. KNOWN REGRESSION: Keyboard shortcuts have not been tested and re-added as necessary yet. --- src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-fm/lumina-fm.pro') diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 487a6421..8fb482c7 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -15,7 +15,7 @@ SOURCES += main.cpp \ BMMDialog.cpp \ widgets/MultimediaWidget.cpp \ widgets/SlideshowWidget.cpp \ - widgets/DirWidget.cpp \ + widgets/DirWidget2.cpp \ gitCompat.cpp \ gitWizard.cpp \ Browser.cpp \ @@ -29,7 +29,7 @@ HEADERS += MainUI.h \ widgets/DDListWidgets.h \ widgets/MultimediaWidget.h \ widgets/SlideshowWidget.h \ - widgets/DirWidget.h \ + widgets/DirWidget2.h \ gitCompat.h \ gitWizard.h \ Browser.h \ @@ -40,7 +40,7 @@ FORMS += MainUI.ui \ BMMDialog.ui \ widgets/MultimediaWidget.ui \ widgets/SlideshowWidget.ui \ - widgets/DirWidget.ui \ + widgets/DirWidget2.ui \ gitWizard.ui icons.files = Insight-FileManager.png -- cgit