aboutsummaryrefslogtreecommitdiff
path: root/libLumina
Commit message (Collapse)AuthorAge
* Update the XDG categories that are supported, as well as the add a new ↵Ken Moore2014-11-14
| | | | "Wine" category for internal recognition/use (since the wine apps do not usually list a category in the *.desktop file).
* Add a bunch of new color schemes for Lumina (Red/Green/Purple/Gold/Glass), ↵Ken Moore2014-11-12
| | | | and adjust the auto-loading of a theme so that it will automatically pick up when the current theme/color file changes (such as when it was manually edited).
* Clean up the default theme template a little bit.Ken Moore2014-11-10
|
* Add a new Lumina Theme: NoneKen Moore2014-11-10
| | | | This disables all the special Qt theming (except for the custom font/font size), and will use the default theme for Qt.
* Adjust how the backend for the system tray works:Ken Moore2014-10-17
| | | | | | | 1) Now the Lumina session registeres the system-wide tray, and just keeps track of the windows that should be visible (preventing any loss of service or apps starting up before the tray is registered). 2) The system tray plugin is now just a "visual tray" for embedding the applications in the panel. The Session only allows a single visual tray to be registered at a time, but sends out signals whenever there is an opening for a visual tray (allowing near-instant transfer of tray applications from one visual tray to another). Also fix a quick bug in lumina-config where the save button was getting activated simply by changing the appearance/plugins tab in the panel configuration (without actually changing anything).
* Add a quick "make-linux-distro.sh" script to change the linux template file ↵Ken Moore2014-10-15
| | | | used in the project.
* Oops, add the default theme template to the Lumina build. Now users will ↵Ken Moore2014-10-15
| | | | actually have a theme available by default that can be edited/changed.
* OpenBSD setScreenBrightness: make the brightness change smootherAntoine Jacoutot2014-10-15
|
* Finish up the rest of the new Lumina Theme engine and the utilities for ↵Ken Moore2014-10-14
| | | | editing those themes in lumina-config. Also tag Lumina version 0.7.0 with this change.
* 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.
* Add better binary detection to LuminaUtils, and setup lumina-open to use it.Ken Moore2014-10-08
|
* 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.
* fix typoChristopher Roy Bratusek2014-10-05
|
* 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
* Add the template for the new LuminaThemes library class (not integrated into ↵Ken Moore2014-10-04
| | | | | | build yet). This class will provide a consistant look for all Lumina utilities, while also allowing the user ways to easily modify the themes/appearance and have it take effect immediately. I also plan on extending this framework to save the completed stylesheet for *all* Qt-based system applications to use (providing an easy way to customize the feel of the system).
* 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.
* Updated Debian rules/package files to reflect updated Lumina binaries.Jesse Smith2014-09-24
| | | | | Removed Debian patches that could no longer be applied cleanly. Added initial external device support to Linux in libLumina.
* Add support for detecting whether the running user has permission to ↵Ken Moore2014-09-19
| | | | shutdown/restart the system, and enable/disable those options in the logout menu appropriately.
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2014-09-16
|\
| * Updated fix to make sure first Exec entry in a .desktop file is taken.Jesse Smith2014-09-15
| | | | | | | | Fixes launching default apps on Linux.
| * Merge remote-tracking branch 'upstream/master'Jesse Smith2014-09-15
| |\
| * | Select the first exec entry from a .desktop file rather than the last.Jesse Smith2014-09-15
| | | | | | | | | | | | Fixes some launch problems on icons with multiple potential launch paths on Linux.
* | | Make sure to sort applications by name case-insensitively.Ken Moore2014-09-16
| |/ |/|
* | Merge branch 'master' of github.com:pcbsd/luminaKen Moore2014-09-15
|\ \
| * | Add support for OpenBSD.Antoine Jacoutot2014-09-13
| | |
* | | Fix a bug in the *.desktop parsing for luminaXDG. It was previously mixing ↵Ken Moore2014-09-15
|/ / | | | | | | the different "entries" in the file, and now it only uses the required "Desktop Entry" section.
* / Clean up the usage/detection of the "URGENT" window status, and also move ↵Ken Moore2014-09-12
|/ | | | the AppStore/ControlPanel/QtConfig shortcut definitions into the LuminaOS class for use in other OS's.
* Also fix the PREFIX settings for the new dragonfly OS file.Ken Moore2014-09-12
|
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2014-09-12
|\ | | | | | | | | Conflicts: libLumina/LuminaXDG.cpp
| * Merge pull request #5 from mneumann/masterKen Moore2014-09-12
| |\ | | | | | | File went into wrong directory
| | * File went into wrong directoryMichael Neumann2014-09-12
| | |
| * | Merge pull request #4 from mneumann/masterKen Moore2014-09-11
| |\| | | | | | | Port Lumina to DragonFly
| | * Port Lumina to DragonFlyMichael Neumann2014-09-11
| | |
* | | Move all the OS-specific path PREFIX settings into LuminaOS so that we don't ↵Ken Moore2014-09-12
|/ / | | | | | | have all the different defines all over the place.
* / Update the *.desktop "Exec=" compliance to the standards as of 9/9/2014 in ↵Ken Moore2014-09-09
|/ | | | LuminaXDG
* Move the temporary brightness setting file into the users .lumina directory. ↵Ken Moore2014-09-08
| | | | That will let it persist between login sessions, allowing Lumina to automatically return to the previous setting on login.
* The following features have been added to the Linux port:Jesse Smith2014-09-07
| | | | | | | | | | Added battery level detection and AC/battery detection. Added detached audio mixer. Confirmed screen brightness adjustment works. Also cleaned up DEPENDENIES file, separating FreeBSD and Linux requirements. Both sections of the file now include full package/port names of dependencies on both operating systems to make it easy to get all build requirements, runtime requirements and optional components.
* Added audio volume control to Linux. Added initial code for changing screen ↵Jesse Smith2014-09-06
| | | | brightness on Linux and updated dependnecy list. Added template file for future operating system support.
* Added volume control and initial screen brightness control code to Linux. ↵Jesse Smith2014-09-06
| | | | Updated dependencies and added template file for future operating system support.
* Add a simple OSD to the audio/brightness up/down options in lumina-open ↵Ken Moore2014-09-05
| | | | (since these are what the keyboard shortcuts run). Also adjust the window list filter to cut out any "Lumina-" utilities that do not provide a custom window title (such as the OSD or other splashscreens).
* Initial import of the lumina code from pcbsd git repoKris Moore2014-09-04
bgstack15