aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro
Commit message (Collapse)AuthorAge
* Cleanup where icons get installed:Ken Moore2018-04-17
| | | | Instead of putting them in the older "pixmaps" directory, place them into the icons/hicolor/scalable/apps dir so that the Qt icon from theme stuff can find it (older dir no longer supported by Qt and most modern theme engines)
* i18n: fix out of tree buildAndreas Müller2017-11-27
| | | | | | | | | | Fixes e.g: | /bin/sh: line 0: cd: i18n: No such file or directory | Makefile:955: recipe for target 'install_dotrans' failed | make[3]: *** [install_dotrans] Error 1 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
* manpages: fix out of tree installAndreas Müller2017-11-27
| | | | | | | Fixes e.g: | gzip: lumina-info.1: No such file or directory Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
* Redo all the new man pages categories.Ken Moore2017-11-20
| | | | Make sure they are all man1 instead of man8
* Add in the new manpages from Aaron St.John (lumina-docs repo).Ken Moore2017-11-20
| | | | Also adjust the "community support" shortcut to point to gitter rather than IRC.
* Fix up the visibility of the archive options in lumina-fm.Ken Moore2017-11-17
| | | | Also fix the OpenWith launching of applications.
* Updated how video thumbnails are loaded. Now cached to stop crash whenZackaryWelch2017-10-16
| | | | resizing.
* Added experimental video thumbnails in lumina-fm and fileinfoZackaryWelch2017-10-03
|
* Added Australian English translation filesZackaryWelch2017-07-31
|
* Clean up the auto-extract functionality in lumina-fmKen Moore2017-06-16
|
* 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.
* 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.
* Get the Git clone functionality all functional. The last thing missing is a ↵Ken Moore2016-09-15
| | | | graphical dialog showing the status of the download.
* Add in the new Git Cloning Wizard. Now fully finished yet, but almost there.Ken Moore2016-09-15
|
* Add the beginnings of git integration within lumina-fm. Currently it can ↵Ken Moore2016-09-13
| | | | detect whether the user is looking at a git repo or not, and can probe/show the status of the repo if within one.
* Fix where localization files get installed via the main source tree ↵Ken Moore2016-06-20
| | | | | | (accounts for the change to SHARE/lumina-desktop rather than SHARE/Lumina-DE). Also fix the wallpaper dir detection routine within lumina-config (same issue - install dir change broke the path detection).
* Large update to the project files:Ken Moore2016-06-14
| | | | | 1) Move from "NO_I18N" to "WITH_I18N". This will ensure that the source version of the localizations are not installed unless explicitly requested (since the "real" localization files are in the lumina-i18n repo - these source files are theauto-generated ones before getting sent up to the pootle localization system). 2) Add a few more .desktop files for the various Lumina utilities.
* Fix a bunch of little things with the desktop:Ken Moore2016-06-02
| | | | | | | | | 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.
* Rearrange the Lumina source tree quite a bit:Ken Moore2016-04-25
Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed.
bgstack15