aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix the implementation of the hardware brightness control on PC-BSD. Now it ↵Ken Moore2015-04-17
| | | | works consistently.
* Update the system dashboard behavior a bit:Ken Moore2015-04-17
| | | | | 1) Add a signal collector/combiner for screen brightness changes (1/10 second delay) - since hardware brightness changes cannot usually be spammed too quickly. 2) Update the battery icon notifications on the panel button. If less than 5% left, leave the low battery icon there all the time, if less than 15% cause the low battery icon to flash intermittently, if greater than that don't show any battery icon.
* Fix the session chimes (and possible stability issue) by removing the ↵Ken Moore2015-04-16
| | | | | | special audio thread and using the QMediaPlayer within the main thread (no stuttering/delays in my initial tests so far). Add a PC-BSD specific routine for setting brightness so that hardware brightness controls are attempted (through pc-sysconfig) before the software brightness is modified (using xbrightness)
* Clean up a *lot* of the general XCB warnings that sometimes occur, and also ↵Ken Moore2015-04-15
| | | | tinker with the session cleanup routine quite a bit to streamline the order in which things are closed down (particularly with system tray apps).
* Don't add the "LUMINA" tag to the name of Lumina-specific applications.Ken Moore2015-04-15
|
* Add the ability for lumina-open to be able to offer recommendations on web ↵Ken Moore2015-04-14
| | | | browsers and email applications if no default is set. It does this by scanning all the applications within the "network" and "utility" categories, and adds it to the recommendations if the app takes URL's as inputs.
* Update the lumina-fm.desktop file to use the "%F" field code instead of "%U" ↵Ken Moore2015-04-14
| | | | because it operates on Files/dirs, not URLS.
* Fix location of ogg / vorbis gstreamer pluginsKris Moore2015-03-30
|
* Don't package the Artwork directoryKris Moore2015-03-30
|
* Merge pull request #82 from darealshinji/patch-1Ken Moore2015-03-30
|\ | | | | return the DE's version with 'Lumina-DE --version'
| * return the DE's version with 'Lumina-DE --version'darealshinji2015-03-30
| |
* | Update README.mdKen Moore2015-03-30
| | | | | | Bump the latest stable version number to 0.8.3
* | Now tag version 0.8.4-devel on the master branch.Ken Moore2015-03-30
|/
* Tag version 0.8.3-release in prparation for branching the master tree.Ken Moore2015-03-30
|
* Make the initial system application query happen during the initialization ↵Ken Moore2015-03-30
| | | | phase of the session. This ensures that buttons (like the userbutton/appmenu) are responsive as soon as the desktop session is visible (only adds a second or two to the init time on my system).
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2015-03-30
|\
| * Merge pull request #80 from darealshinji/patch-1Ken Moore2015-03-30
| |\ | | | | | | Debian packaging
| | * install lumina-qt5ct in /etc/defaultdarealshinji2015-03-28
| | |
| | * Debian: pass buildflags to qmake, fix debug package creation, recude codeMarshall Banana2015-03-28
| | |
| | * Debian: package descriptions and substituion variablesMarshall Banana2015-03-28
| | |
| | * Debian: missing dependency libxcb-composite0-devdarealshinji2015-03-28
| | |
| | * don't return error after running dh_auto_cleandarealshinji2015-03-28
| | | | | | | | | Fix for `W: lumina-desktop source: debian-rules-ignores-make-clean-error line 32`
| | * Debian: package dependency fixesdarealshinji2015-03-28
| | | | | | | | | | | | | | | | | | | | | Will fix the following source package issues: E: lumina-desktop source: depends-on-build-essential-package-without-using-version make [build-depends: make] E: lumina-desktop source: depends-on-build-essential-package-without-using-version g++ [build-depends: g++] E: lumina-desktop source: not-binnmuable-all-depends-any lumina-data -> libluminautils1 E: lumina-desktop source: not-binnmuable-all-depends-any lumina-data -> lumina-desktop
| * | Merge pull request #79 from Nanolx/masterKen Moore2015-03-30
| |\ \ | | | | | | | | Lumina Debian #7
| | * | debian: new build dependency on libxcb-composite0-devChristopher Roy Bratusek2015-03-28
| | | | | | | | | | | | | | | | debian: new dependency on usbmount
| | * | debian/changelogChristopher Roy Bratusek2015-03-28
| | |/
* | | Update the internal version number handling for backwards compatibility ↵Ken Moore2015-03-30
| | | | | | | | | | | | checks. This is just to future-proof the routine - now each version number piece can be anywhere from 0->999 (instead of the old limitation of 0->9).
* | | Bump the roadmap versions for 0.8.3/0.8.4 to 0.8.4/0.8.5.Ken Moore2015-03-30
|/ / | | | | | | | | It looks like we will need to release 0.8.3 as a bugfix version for FreeBSD11 and some new PC-BSD compatibility changes (XDG autostart spec requirement) Other than that minor version numbering change, everything else is still on-track, with the xscreensaver replacement still scheduled to be the next big change for the next version.
* | Disable the process crash handler in lumina-open if the input *.desktop file ↵Ken Moore2015-03-30
| | | | | | | | does not have the startupNotify flag set.
* | Merge branch 'master' of github.com:pcbsd/luminaKen Moore2015-03-30
|\|
| * Oops, fix a leftover forward-slash in the MakefileKen Moore2015-03-28
| |
* | Add usage support for the XDG autostart specifications. This is currently on ↵Ken Moore2015-03-30
|/ | | | top of the older Lumina autostart specification, until I can get the writing support for the XDG spec in place as well - at which time I will convert any Lumina-spec entries to the XDG spec (for backwards compat).
* Add thumbnail support for image files in the desktopview plugin.Ken Moore2015-03-27
| | | | Also update the port makefile for FreeBSD so that has the proper gstreamer plugins installed for audio support.
* Update the system tray to use the QScreen->grabWindow() routine instead of ↵Ken Moore2015-03-27
| | | | the XCB->WindowImage() function which was just removed.
* Remove the XCB "WindowImage()" function from LuminaX11 - it is not working ↵Ken Moore2015-03-27
| | | | properly for some reason on FreeBSD11, and using the QScreen->grabWindow(ID) routine *does* work properly for some reason, so just use the Qt function instead from now on (maybe it has better fallback routines?).
* Clean up a bit of the new XCB system tray embedding process. Still does not ↵Ken Moore2015-03-27
| | | | fix FreeBSD 11, but it is a lot more reliable now.
* Update the system tray Embed/Unembed routines to use the XCB library instead ↵Ken Moore2015-03-27
| | | | of XLib. This bahaves exactly the same on my FreeBSD 10.x system - still need to test a FreeBSD 11.x system.
* Merge pull request #78 from Nanolx/masterKen Moore2015-03-27
|\ | | | | LuminaOS-Debian #6
| * minor string changeChristopher Roy Bratusek2015-03-26
| |
| * Merge remote-tracking branch 'upstream/master'Christopher Roy Bratusek2015-03-26
| |\ | |/ |/| | | | | Conflicts: libLumina/LuminaOS-Debian.cpp
* | Streamline quite a bit of the background worker:Ken Moore2015-03-26
| | | | | | | | | | | | 1) Make sure the background routine *only* runs if the directory has changed or been modified (changing the view/config will no longer re-scan the dir) 2) Cleanup the number of translated strings in the dir info routine, and make it easily modified for larger file sizes (already increased to TB now). 3) Ensure that the whole-dir info is re-displayed if the selection is cleared.
* | Clean up the new filesystemusage functions a bit. Make sure that the ↵Ken Moore2015-03-26
| | | | | | | | directory is quoted within the command (could be spaces in the path).
* | Clean up the retcode > 0 "or" usage in main.cppKen Moore2015-03-26
| |
| * - updated debian/changelogChristopher Roy Bratusek2015-03-26
|/ | | | | - checksums for LuminaOS-Debian and LuminaOS-Linux - capacity for LuminaOS-Debian
* Merge pull request #77 from william-os4y/fmNumbersKen Moore2015-03-26
|\ | | | | include some information about the files in the statusbar
| * Merge remote-tracking branch 'upstream/master' into fmNumberswilliam2015-03-26
| |\ | |/ |/|
* | Actually move the file/dir copy onto itself check earlier in the procedure, ↵Ken Moore2015-03-26
| | | | | | | | that way we can't run into the situation where the dir is removed because of the conflicting destination.
* | Clean up a couple things in lumina-fm:Ken Moore2015-03-26
| | | | | | | | | | | | 1) Fix the double-run of the background dir checker when changing directories. 2) Add the file overwrite checks to the cut procedures in the backend. 3) If a file/dir is copied onto itself, just skip it rather than erroring.
* | Merge branch 'master' of github.com:pcbsd/luminaKen Moore2015-03-25
|\ \
| * | Add my "work-in-progress" on lumina-wm (screensaver implementation so far) ↵Ken Moore2015-03-25
| | | | | | | | | | | | to GIt. This is *not* ready to be built, much less used yet.
bgstack15