aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/LSession.cpp
Commit message (Collapse)AuthorAge
* get basic user defined sound enabledq5sys2017-08-03
|
* Disable the QT_AUTO_SCREEN_SCALE_FACTOR usage in the Lumina app environment ↵Ken Moore2017-06-26
| | | | (for now - needs more testing).
* Fix the migration routine when moving from the "default" monitor ID (vesa, ↵Ken Moore2017-06-19
| | | | scfb) to a non-"default" ID.
* Fix up the audio volume reset on login into Lumina.Ken Moore2017-06-10
| | | | It looks like the OS-specific functionality to save/restore the last audio setting is borked, so I bypassed it with a lumina-specific "session state" value in the user's settings file.
* Clean up some of the Lumina session init/cleanup. Trying to track down why ↵Ken Moore2017-06-10
| | | | the volume reset on login is not consistent.
* Get the new Icon Cache system implemented and turned on for the desktop ↵Ken Moore2017-05-26
| | | | "applauncher" plugins. This seems to be working quite well, and now we just need to start using this for all the other pieces of the desktop.
* Disable the VirtualBox fullscreen detection/fix logicKen Moore2017-05-25
| | | | After testing this more robustly and with more variations, the issue appears to be so ingrained into the Fluxbox state/property event handling that anything we do from the Lumina side is quickly overwritten/ignored by Fluxbox.
* enable some debugging on the virtualbox window detection/adjustment routine.Ken Moore2017-05-25
|
* Try to detect/fix the fullscreen/background window issue on Fluxbox.Ken Moore2017-05-25
|
* Add the ability to scan/migrate desktop/panel settings from one monitor ID ↵Ken Moore2017-05-18
| | | | to another on the first start of the desktop, and enable that migration for single-monitor arrangements.
* Merge branch 'master' of github.com:trueos/luminaKen Moore2017-05-03
|\
| * Ensure that all Lumina tools/utilities are setup with high-DPI icons.Ken Moore2017-05-01
| |
* | Clean up how the high-DPI settings for lumina are detected/enabled.Ken Moore2017-05-03
|/ | | | | Now whenever a screen is added/changed it will print out the physical/logical DPI values into the log, and if a logicalDPI (X or Y) is greater than 110 it will enabled the Qt5 auto-scale functionality. Note: My 1080p laptop monitor has a logical DPI of ~96, but a physical DPI of ~150 and the Qt5 auto-scale stuff is based on physical DPI (so things got massive on a normal-res screen). I am leaving the DPI print-out in the logs for now so that if we run into any other monitors where the logicalDPI>110 rule is invalid we can view/tweak the rule really easily.
* Clean up the automatic DPI scaling support in Lumina.Ken Moore2017-04-28
| | | | This needs to be set for applications, but not the desktop itself (since there are so many pixel-specific calculations that need to be performed).
* Add add the option to watch a "/tmp/.autofs_change" file which will prompt ↵Ken Moore2017-01-12
| | | | for re-reading the /media directory as well.
* Add the ability to show "/media/*" shortcuts on the Lumina desktop. This ↵Ken Moore2017-01-12
| | | | will be very useful for systems that auto-create dirs in /media when devices are attached to the system, and mount-on-demand when browsing into that directory (*SPOILERS*).
* Create a new "ExternalProcess" class in the library directory which is ↵Ken Moore2017-01-04
| | | | specifically designed for launching external processes in an unattended manner and automatically cleaning up the object on the heap when finished. It will also hide any output from the process or forward it to a designated log file rather than polluting the current process output channel.
* Commit some cleanup of the monitor layout change detection/handling again.Ken Moore2016-12-22
|
* Make the start menu open faster by only loading the favorites *when the ↵Ken Moore2016-12-02
| | | | file/list changes*.
* Get rid of the "fortune" usage, and replace it with a built-in system of ↵Ken Moore2016-12-01
| | | | tips for Lumina itself (avoids strange stuff from fortune, and ensures information which is at least semi-useful for the user).
* A few more tweaks for the boot splash. Font weights and such to better ↵Ken Moore2016-11-30
| | | | accent the rest of the UI.
* Speed up the initial loading of the desktop at start, and delay the ↵Ken Moore2016-11-12
| | | | auto-started apps by 1/2 second.
* 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)
* Add a new sessionsettings flag:Ken Moore2016-11-02
| | | | | | Qt5_theme_engine=<some theme engine> This will allow the user to set some global Qt5 theme engine (such as qt5ct), and activate it for the entire session.
* Quick update to ensure that 2 monitors are not cloned - only show one of ↵Ken Moore2016-10-20
| | | | them in that case.
* Adjust the icon for the battery notifications a bit.Ken Moore2016-10-18
| | | | | | 1) for the "low" battery icon, move it down to the 5-20% range instead of 20-50%. 2) When battery is between 0-5%, change the background color of the icon to red in addition to the "warning" battery icon. 3) Play an audio file when the battery drops to the 0-5% range( <Lumina Share directory>/low-battery.ogg), if the file exists.
* Make sure the desktop are registered as virtual roots again.Ken Moore2016-10-18
|
* Large update/refactor of desktop widgets.Ken Moore2016-10-18
| | | | This reduces the number of widgets in the stack by 1, and seems to help performance a bit.
* Move a couple "delete" calls to "deleteLater()" within the desktop.Ken Moore2016-10-11
|
* Add in pending update detection/skipping ability to the main logout window ↵Ken Moore2016-08-18
| | | | (not the start menu options yet).
* Disable fluxbox initialization within the lumina-desktop binary. (moved to ↵Ken Moore2016-07-06
| | | | start-lumina-desktop).
* Another large batch of updates:Ken Moore2016-06-14
| | | | | 1) Move the "runtime" directory in the users home to the XDG_CONFIG_HOME/lumina-desktop rather than ~/.lumina 2) Update the Glass theme a bit more.
* 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.
* Get the lumina desktop all setup with a registration system for ↵Ken Moore2016-06-11
| | | | start-menu-like plugins to determine whether they should respond to a show command, and setup all the systemstart plugins to use this system (will expand later to the appmenu and userbutton plugins as well).
* Have the lock button in the start menu use the "LaunchItem()" functio so the ↵Ken Moore2016-05-20
| | | | menu is closed right away.
* Fix a geometry calculation for panel placements on X monitors which are not ↵Ken Moore2016-04-29
| | | | aligned with the y=0 axis for the top of the monitor.
* Have lumina listen to the X root window property changes directly - and ↵Ken Moore2016-04-28
| | | | update the screen numbers/geometries 50ms after the WM changes the _NET_DESKTOP_GEOMETRY or _NET_WORKAREA properties on it. This bypasses a bug in the QDesktopWidget class where it might not send out the changed() signals when something really did change (noticed this in virtualbox instances in particular).
* Unhook the stylesheet in the Lumina Theme Engine from the non-desktop ↵Ken Moore2016-04-27
| | | | applications. This prepares us to use a "real" Qt style plugin for application appearances instead of stylesheets for a few lumina-* apps.
* Add the beginnings of a new "lumina-session" wrapper utility for the ↵Ken Moore2016-04-25
| | | | | | sequentual loading of various utilities (WM, DE, screensaver, compositing manager, etc..) Also setup lumina-session to auto-start xcompmgr if it is installed, and adjust the Lumina-DE.desktop xsession entry to launch the session instead of the Lumina-DE binary directly.
* 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