aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina
Commit message (Collapse)AuthorAge
* Remove the "detach" option from the ExternalProcess class. Need to find out ↵Ken Moore2017-01-11
| | | | the exact function to call to detach a live process from a QProcess.
* More setup for Lumina2:Ken Moore2017-01-10
| | | | | 1) Make a new "DesktopSettings" class in libLumina for managing desktop settings files. This class understands/uses a hierarchy of files (User Overrides > System Overrides > Default Settings) and layers them as needed for the session. 2) Cleanup the new source tree a lot more, and get it *mostly* compiling (mostly just the backend classes right now - none of the desktop/WM classes yet).
* 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.
* Tag version 1.2.1 on the master branch in preparation for new changes from ↵Ken Moore2017-01-04
| | | | the recent 1.2.0 release.
* Tag version 1.2.0 in the source tree.Ken Moore2017-01-03
|
* Add a new function to the XDGDesktop class:Ken Moore2016-12-29
| | | | | | QString generateExec(QStringList inputfiles, QString ActionID); This will automatically evaluate the input file's syntax and adjust as needed for the application to recognize/run the file. Similarly it will perform all the substitutions and such as necessary to end up with a fully-formatted executable command which can easily be launched with QProcess as necessary.
* Commit another small fix for the mimetype systems.Ken Moore2016-12-19
|
* Fix the mimetype matching routine to support multiple-extension formats ↵Ken Moore2016-12-16
| | | | better (*.tar.gz as opposed to *.gz)
* Get the new input device routines almost ready. Still have the page disabled ↵Ken Moore2016-12-06
| | | | in lumina-config right now, but it is coming along nicely.
* Oops - NOW the desktop/panel settings-reload will work.Ken Moore2016-11-22
|
* Fix up the default settings-setting routine to use the new panel/desktop ↵Ken Moore2016-11-22
| | | | syntax when setting the default configuration for the primary monitor.
* Revert "Revert "search clear function on ESC press""Ken Moore2016-11-20
| | | | This reverts commit 151062b99e29e18dbc614bf66582f908c864a96a.
* Revert "search clear function on ESC press"q5sys2016-11-20
| | | | | This reverts commit b9840ef585385fece513e24e4cea193d35328dc0, reversing changes made to cb5524f6fd5186414c11339375bebd3b808b4857.
* Commit some more work on the new input device framework. Got the properties ↵Ken Moore2016-11-17
| | | | getting listed now, just need to figure out how to read/set the various properties (no documentation on what the various inputs are for the XCB functions to do that).
* Get a bit more of the input device class working - using lumina-config for ↵Ken Moore2016-11-17
| | | | testing on the new "mouse" page (which is still disabled for the moment).
* Oops - make sure the LInput funcions are public and staticKen Moore2016-11-17
|
* Add in the beginnings of a new backend class for managing input devices ↵Ken Moore2016-11-17
| | | | | | (LInputDevice): This uses the xcb-xinput library for interacting with devices on X (could be moved to wayland in the future).
* Bump the copyright year on the LuminaX11 files.Ken Moore2016-11-17
|
* Clean up some more of the library project files.Ken Moore2016-11-10
|
* Tag version 1.1.2 internally (Lumina Library no longer in existence)Ken Moore2016-11-10
|
* 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)
* Convert the ResizeMenu class into it's own files:Ken Moore2016-11-03
| | | | | 1) Add a new .pri for loading just that class (works stand-alone) 2) Setup the lumina-desktop to use the new build framework for including that class.
* Add the beginnings of the new RandR xcb backend to LuminaKen Moore2016-10-27
|
* Add PulseAudio support into the FreeBSD backend if a PICO session is detected.Ken Moore2016-10-25
|
* Tag version 1.1.1 within the master branch.Ken Moore2016-10-21
|
* Tag version 1.1.0 in the source treeKen Moore2016-10-21
|
* 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.
* Oops - forgot to save the fallback CPU temperature reading into the variable.Ken Moore2016-10-14
|
* Adjust the FreeBSD CPU temperature routine to use the dev.cpu.* values if ↵Ken Moore2016-10-11
| | | | available, and fall back on the hw.acpi values otherwise (direct readings seem to be more accurate in some instances).
* Fix a bug in LFileInfo, and update lumina-fileinfo to show the size of the ↵Ken Moore2016-10-11
| | | | image (if an image file is being viewed)
* Convert over the desktop/panel settings to be based on screen ID instead of ↵Ken Moore2016-10-05
| | | | screen number. It seems like X randomly assigns numbers to screens in some instances - resulting in multi-monitor arrays occasionally getting rotated/scrambled. After the automatic conversion of the settings to the new system (the first time the user logs into the updated version of Lumina), screen settings are tied to that particular monitor now (HDMI-0, DP-1, etc...)
* Fix the bytes to display function in the case where the number of bytes ↵Ken Moore2016-10-03
| | | | *exactly* matches the unit found (1G, 1M, 1K, etc).
* Add an additional default-valued constructor for LFileInfo.Ken Moore2016-09-28
|
* Make sure that the extra lumina utilities check/set the XDG_* environment ↵Ken Moore2016-09-26
| | | | variables as needed. This allows things like icons to be found/used when LTE is launched via sudo (for instance).
* Add a new file to be distributed with Lumina:Ken Moore2016-09-23
| | | | | Include a copy of the "globs2" file from the FreeDesktop mimetype database, to be used as a fallback if the official mimetype database is not installed/found on the system. Also adjust the mimetype loader to use this fallback as needed.
* Finish up the depretiation of the old systemapps fetching function.Ken Moore2016-09-23
|
* Large update to how XDGDesktop files are created/used.Ken Moore2016-09-22
| | | | | | This impacts almost all tools/utilities within Lumina - please test (passed internal tests so far). This cleans up a lot of the backend XDG compliance class, moving lots of functionality into child functions of the XDGDesktop class and ensuring that they get cleaned up more regularly/properly. This *seems* to make the desktop startup a lot faster, even if the overall memory savings are slight (so far).
* Fix the memory usage issue with Lumina and the application list on the ↵Ken Moore2016-09-21
| | | | system. It no longer grows with time that I can tell, but I am sure there is some additional cleanup and optimizations which can still be done later.
* Add an "==" operator to the XDGDesktop class. Found a note in the QHash docs ↵Ken Moore2016-09-21
| | | | that any class type need this defined.
* Have the internal QHash run "squeeze" after every update run - just to ↵Ken Moore2016-09-21
| | | | ensure it uses as little memory as possible.
* Another small fix to try and correct the memory leak.Ken Moore2016-09-21
|
* Another quick fix to try and track down where Lumina is leaking memory ↵Ken Moore2016-09-21
| | | | within teh app list search routine.
* Commit a small cleanup for the auto-loading of the apps list on the system.Ken Moore2016-09-21
| | | | Going to check if this fixes the memory leak issue on some systems (have one I can test on now).
* Change the CPU temperature finder a bit:Ken Moore2016-09-19
| | | | Avoid using "sysctl -a" in favor of using "sysctl hw." for doing the initial search for CPU temperature sysctls. This makes it touch a lot less of the system sysctl's, and might prevent a random kernel panic we are seeing on some systems when some particular sysctl is probed.
* Clean up how the system app finder/parser is saved in memory a bit. Trying ↵Ken Moore2016-09-16
| | | | to track down and fix a reported memory leak on some systems.
* Fix up the "launch in terminal" functionality to use whatever the ↵Ken Moore2016-09-08
| | | | currently-registered default terminal is rather than just xterm (although xterm is still the default/fallback).
* Add a special case check to the cursor theme settings - don't allow ↵Ken Moore2016-08-30
| | | | "default" to be set as the cursor theme (causes a conflict due to how we save the setting as the "default" theme - it can't inherit itself).
* When saving autostart preferences, make sure the local autostart directory ↵Ken Moore2016-08-26
| | | | exists and create it if not.
* Another small fix for the application auto-update routine.Ken Moore2016-08-24
|
* Fix up the auto-creation/removal of application symlinks when apps are ↵Ken Moore2016-08-23
| | | | installed/removed during a session.
bgstack15