aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm
Commit message (Collapse)AuthorAge
* Streamline the file manager quite a bit by putting the long-lived checks in ↵Ken Moore2014-11-05
| | | | a seperate thread. This speeds up the loading of a directory quite a bit.
* Add a new utility: lumina-searchKen Moore2014-11-05
| | | | | This utility provides quick searching for applications (the default), or for searching the entire user's home directory. The file search also supports the "*" wildcard for the search terms.
* Fix desktop files: add missing semicolonsrezso2014-11-04
|
* include fixesrezso2014-11-04
|
* Large update to the Lumina project: provide full theming capabilities.Ken Moore2014-10-10
| | | | | | | | | | | | | 1) New libLumina classes: LuminaThemes.h 2) Single-line usage to add lumina theme usage to an application (already added to all the Lumina utilities) 3) Include a Lumina-default theme template, as well as a single color scheme (will add more later) 4) Will create a global Qt style for "lumina" so that this theme engine can be automatically applied to all Qt applications at a later date (want to make sure to beat this up and get it working reliably before turning it on for everything). Major Features: 1) Full Qt theme capabilities through Qt stylesheets (so they can be modified and applied on the fly). 2) Stylesheets are broken into a couple pieces: an "incomplete" stylesheet file (the theme template) with variables in place of colors, font size, and font family. A "color" file which variable->value definitions for the different colors. And a themesettings.cfg files which keeps track of the files/font settings. 3) Along with this, add the ability to specify the icon theme that is used as well, and make that automatically re-loaded as necessary. 4) Add the ability to read/set thes values in lumina-config. The lumina-config usage is still a bit rough: working on cleaning it up right now.
* Disable the usage of the theme engine within lumina-fm for the moment. Still ↵Ken Moore2014-10-07
| | | | trying to work out some of the functionality and don't want to enable it by default until it is fully ready.
* Get the new LuminaThemes class working with a sample color theme for Insight ↵Ken Moore2014-10-06
| | | | (for testing). The theme loading/usage appears to be working, now I just need to generalize the theme template so that it applies to all the QAbstract* widgets
* Clean up the new global.h usage in all the Lumina subprojects.Ken Moore2014-10-06
| | | | | | | | | | 1) Move the global.h file usage into libLumina exclusively 2) Define a new "LuminaOS::LuminaShare()" function for retrieving the install directory for Lumina (based on the PREFIX/global.h) 3) Change all the other lumina sub directories/projects to use the new LuminaShare() function when necessary. 4) This also fixes up the loading of translations in many of the subprojects (found a bug in the path used in a number of them). Reason: Previous implementation *only* worked if you built lumina from the base directory, causing problems with rebuilding individual pieces of Lumina. This also cleans up the general lumina projects as they only need the LuminaOS class loaded instead of knowing about this other possible OS implementation.
* add global.h containing PREFIX and make use of it in all sub-modules,Christopher Roy Bratusek2014-10-05
| | | | | add PREFIX and LIBPREFIX to the qmake .pro files (allows to change prefix and libdir using <qmake PREFIX=/usr LIBDIR=/usr/lib/x86_64-linux-gnu/> or whatever) update debian packaging scripts accordingly
* Large update for the lumina-fm:Ken Moore2014-10-03
| | | | | | 1) Completely update the theming for the application (now it has one) 2) Add a column of "action" buttons that enable/disable depending on what is selected. 3) Add the ability to mark files/dirs as user favorites (for quick access in the user button).
* Clean up the icon/list views in Insight. Now the "icon" view will use ↵Ken Moore2014-10-03
| | | | something close to 64x64 images, and the "list" view will have 20x20 images.
* Update MimeIconProvider.hKen Moore2014-10-02
| | | Make sure that thumbnails only store a tiny version of the image: could have hundreds of these in a directory and we don't want to overload the system memory.
* Added initial support for Debian/kFreeBSD. This patch has been testedJesse Smith2014-09-24
| | | | and shown to build/run on Debian/kFreeBSD, Ubuntu and PC-BSD.
* Applied Debian patch to enable building on 32-bit Linux machines. ProjectJesse Smith2014-09-22
| | | | | | | (.pro) files now support 32-bit and 64-bit Linux builds. Should also build using Clang as well as GCC on Linux. Fixed compiler warning in LDesktop.cpp which might see wrong loop counter used under older compiler.
* Make the jpg/png suffix check case-insensitive for showing thumbnail ↵Ken Moore2014-09-19
| | | | previews in lumina-fm.
* Have lumina-fm save/remember the last-used size and open itself with that ↵Ken Moore2014-09-15
| | | | size (if smaller than the screen size).
* Fix path to lrelease on OpenBSD.Antoine Jacoutot2014-09-14
|
* Make sure that the translation codec is set to the text codec for the ↵Ken Moore2014-09-08
| | | | current locale in lumina-fm.
* Make sure that Insight puts the file path in quotes when opening a file (in ↵Ken Moore2014-09-08
| | | | case the file has whitespace in the name)
* Fix a bug with the taskmanager when multiple windows from the same ↵Ken Moore2014-09-05
| | | | | | application have the same title: make sure to properly select the window that was clicked. While here, also apply the libLumina dependency order to give preference to the locally/recently compiles libraries during the build if possible in all the lumina tools.
* Hide any external devices that are mounted on hidden directories in the file ↵Ken Moore2014-09-05
| | | | manager. These devices are generally for system-usage and not user browsing (such as the FUSE mountpoint for .gvfs)
* Initial import of the lumina code from pcbsd git repoKris Moore2014-09-04
bgstack15