aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/Browser.cpp
Commit message (Collapse)AuthorAge
* A couple quick changes to lumina-fm:Ken Moore2019-03-14
| | | | | 1. Fix up the loading of new/renamed files in a directory on-demand. 2. Ensure that we only keep a small thumbnail in memory instead of the full image.
* Get the thumbnail loader all working again.Ken Moore2019-01-25
|
* Fix the usage of standard icons within the browser.Ken Moore2019-01-25
|
* Fix coredump when starting up lumina-fmMaksym Stetsyuk2018-12-31
|
* Fix up a number of crashes related to item loading times and multiple columnsKen Moore2018-02-09
|
* A bit more background threading magic.Ken Moore2017-11-15
| | | | Make lumina-fm show dir contents a *lot* faster now.
* Finish cleaning up the new LFileInfo class/file.Ken Moore2017-11-15
|
* change thumbnail generation to faster method tested in lumina-fm-devq5sys2017-10-24
|
* Finished video thumbnails and roll over playback for lumina-fm andZackaryWelch2017-10-21
| | | | lumina-fileinfo
* Make LVideoLabel thread-safe.Ken Moore2017-10-18
| | | | Couple quick fixes for the Browser class in lumina-fm too (minor cleanup).
* Updated how video thumbnails are loaded. Now cached to stop crash whenZackaryWelch2017-10-16
| | | | resizing.
* Clean up how the backend of the file manager handles atomic updates to ↵Ken Moore2017-10-09
| | | | changes in the current directory. This speeds up sequential re-scans considerably.
* Finished video thumnails for lumina-fm and lumina-fileinfoZackaryWelch2017-10-05
|
* Further lumina-fm changes for video thumbnailsCoupon2017-10-03
|
* Reworked the video thumnail system with lumina-fmZackaryWelch2017-10-03
|
* Added experimental video thumbnails in lumina-fm and fileinfoZackaryWelch2017-10-03
|
* Update the browser to multi-thread *all* file loading, not just thumbnails.Ken Moore2017-08-04
|
* Finish up all the new TreeWidget stuff from JT:Ken Moore2017-06-26
| | | | | | | | | 1. Save/load the size of the tree widget between sessions (sync size across all tabs as well). 2. Sync the tree widget with the browser with regards to whether hidden files should be shown or not. 3. Tie the tree widget "dir model" to the line edit so we get auto-completions again. 4. Make sure the tree widget shows the "normalized" directory path (does not show ZFS snapshot dirs and such). 5. Clean up a lot of debugging messages and comment out unused variable declarations. 6. Change the Browser thumbnail loading/scaling routine to always run based on image resolution rather than file size.
* Fixed nullReceiver error in Lumina-fmZackaryWelch2017-06-22
|
* Speed up the loading of thumbnails in lumina-fm. Now all the scaling and ↵Ken Moore2017-06-16
| | | | such is done in the external thread - so images appear as they are ready instead of bogging down the main thread..
* Add "back" in the option to show/skip image file previews.Ken Moore2017-06-08
|
* Try to streamline the item loading routine in lumina-fm a bit more. No ↵Ken Moore2017-06-08
| | | | discernable difference on my system but it might impact other/slower systems.
* Cleanup how the QtConcurrent thread is run in the Browser class a bit - no ↵Ken Moore2017-05-26
| | | | real difference, just more formally-correct.
* Add an internal icon cache for the standardized mimetype icons. This seems ↵Ken Moore2017-01-17
| | | | to speed up the loading of individual items quite a bit (something in Qt is not re-using previously loaded QIcons any more?)
* Adjust the browser backend a bit so only image files and *.desktop files are ↵Ken Moore2017-01-16
| | | | loaded within a separate thread. This seems to make no speed difference on my system, but should help prevent slowdowns on systems with a lower limit on the number of concurrent threads which can be run.
* LARGE UPDATE:Ken Moore2016-11-07
| | | | | | | 1) Dismantle the Lumina library completely. 2) Setup lots of small subproject files (.pri) for the individual classes within the old library. 3) Move all the Lumina binaries to use the new subproject files 4) Split up the LuminaUtils class/files into LUtils and LDesktopUtils (generic utilities, and desktop-specific utilities)
* Another large update to lumina-fm:Ken Moore2016-10-13
| | | | Have all file operations performed in the background, and show up within a new system tray icon *if* the operation lasts longer than 1 second (automatic cleanup for short ops).
* Commit a large update to lumina-fm:Ken Moore2016-09-30
| | | | | | | | | | 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.
* More work on the new backend: still disabled for now.Ken Moore2016-09-27
|
* Get the new backend functional.Ken Moore2016-09-27
| | | | 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.
* Commit some more work on a new backend/frontend to the lumina-fm browser.Ken Moore2016-09-26
|
* Disable the Completer used within lumina-fm to speed up loading.Ken Moore2016-09-23
Also add the beginnings of a new backend for directory browsing.
bgstack15