aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Remove some old comments, and also remove the old savedScreens variable that ↵Ken Moore2015-08-07
| | | | I was using for Xinerama testing.
* Turn off some debugging within the system tray plugin, cleanup the message ↵Ken Moore2015-08-07
| | | | logging routine, and fix a bug in the autostart loop procedures
* Fix up the file/dir removal options within the userbutton.Ken Moore2015-08-05
|
* Do a review of all Lumina dependencies and update the list as appropriate:Ken Moore2015-08-05
| | | | NOTE: Non-FreeBSD porters please check/update the DEPENDENCIES file and add additional information in the new format for the file (makes it much easier to read/update)
* Completely finish the XLib -> XCB conversions. Now Lumina no longer requires ↵Ken Moore2015-08-05
| | | | any XLib functions/libraries/extensions.
* Add a replacement for XSelectInput and use it within lumina-desktopKen Moore2015-08-05
|
* Finish converting libLumina to XCB-only and finish replacing any LX11 ↵Ken Moore2015-08-05
| | | | functions in lumina-desktop.
* Oops, committed a temporary change to include the xcb-render library (not ↵Ken Moore2015-08-04
| | | | necessary, the xcb_aux functions do what I need without the extra render dependency).
* Add the XCB versions of the system tray start/stop routines, and setup ↵Ken Moore2015-08-04
| | | | LSession to use those new versions
* Convert lumina-screenshot to use the XCB interface exclusively (no more ↵Ken Moore2015-08-04
| | | | XLib), and add the option to include/exclude window borders for a single-window screenshot.
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2015-08-03
|\
| * Merge pull request #141 from vovd/masterKen Moore2015-08-03
| |\ | | | | | | Update Debian Packaging
| | * Update controlvovd2015-08-01
| | |
| | * Update copyrightvovd2015-08-01
| | |
| | * Update changelogvovd2015-08-01
| |/
| * Merge branch 'master' of https://github.com/pcbsd/luminaJesse Smith2015-07-31
| |\
| * | Added RPM .spec file to source tree.Jesse Smith2015-07-31
| | | | | | | | | | | | | | | Added an RPM .spec file to the source tree. This file enables building RPM packages on Fedora and related Linux distributions.
* | | Add support to lumina-screenshot for taking a snap of a single screen (if a ↵Ken Moore2015-08-03
| |/ |/| | | | | multi-screen arrangement)
* | Now tag version 0.8.7-devel on the master branchKen Moore2015-07-31
| |
* | Tag version 0.8.6-ReleaseKen Moore2015-07-31
|/
* Add "DESTDIR" build option support to the Lumina project files (needed for ↵Ken Moore2015-07-31
| | | | | | Fedora packaging). Also convert the last X11 usage in LPanel over to XCB
* Oops, fix a typo in the LDesktop conversion to XCBKen Moore2015-07-31
|
* Move all the X11 usage in LDesktop.cpp to XCBKen Moore2015-07-31
|
* Convert a few more X11 functions to XCB - almost done....Ken Moore2015-07-31
|
* Change the QSplashScreen for the lumina-open OSD to a simple QLabel (makes ↵Ken Moore2015-07-31
| | | | it faster to load/show - preventing the issues with QSplashScreen and particular GPU drivers).
* Fix up the issues with some apps which re-configure the Xsession/screens to ↵Ken Moore2015-07-30
| | | | match their own internal specifications. On single-screen setups it works fine now, but on multi-screen setups the app does not seem to return the xsettings back to their original specs properly (Tested with OpenArena and MegaMario). This may result in the screen being "flipped" or placed on different monitors after closing the app.
* Final fix for the line find/replace functionality in luminaDesktop.conf ↵Ken Moore2015-07-29
| | | | parsing - needed to explicitly use a QREgExp with wildcard matching rules (verified that it works properly).
* Oops, make sure that any new duplicate session setting overwrites the ↵Ken Moore2015-07-29
| | | | previous setting.
* Add the ability to use an optional "_ifexists" tag at the end of any ↵Ken Moore2015-07-29
| | | | "session_*" settings in luminaDesktop.conf. This will check for the existance of the given value (absolute paths only), and skip the assignment if it does not exist.
* Do not have lumina-open show the crash handler if a "pc-su" process returns ↵Ken Moore2015-07-29
| | | | error code 1 (user cancelled the procedure).
* Clean up the display of some Fluxbox Keyboard shortcuts.Ken Moore2015-07-29
|
* Oops, forgot to translate the internal QPoint to a global point before ↵Ken Moore2015-07-28
| | | | showing the menu in LDesktop.
* Expose the new "InitLocale" session options in lumina-config, and also fix a ↵Ken Moore2015-07-28
| | | | bug with the panel widget display.
* Add some work that make the Lumina desktop/panels appear in the proper ↵Ken Moore2015-07-28
| | | | locations when XINERAMA is used for combining monitors. However, the interface is still completely unresponsive because the Qt backend is completely screwed up by Xinerama (returns 0's for everything related to screens, geometries, etc, preventing menus from opening up even when manually started). This might be something where we just have to say that Xinerama is not supported for Lumina (at least until lumina-wm get finished up).
* Just a minor update to some debugging (when turned on) for checking icons ↵Ken Moore2015-07-24
| | | | within the current theme.
* Finish cleaning up the submenu open/close checks for the userbutton. Now the ↵Ken Moore2015-07-24
| | | | "Action" submenu can be closed without launching the base application.
* Fix up the active re-loading of icons in the desktop interface when the icon ↵Ken Moore2015-07-24
| | | | theme changes.
* Finish up the XDG "Actions" specification for *.desktop files, and integrate ↵Ken Moore2015-07-22
| | | | it into the AppMenu and UserButton. Also add a new flag to lumina-open so that we can specify which action to use when starting an app.
* Add support into libLumina for additional "Actions" listed in *.desktop files.Ken Moore2015-07-22
|
* Make sure that all the interface elements in lumina-desktop actively re-load ↵Ken Moore2015-07-22
| | | | their text/icons when the system locale is changed.
* Finish cleaning up the new localization configuration settings in libLumina, ↵Ken Moore2015-07-21
| | | | | | and put a combobox in the system dashboard plugin which allows the user to (temporarily) change their session locale. Still need to finish up the active re-translation of the desktop session though.
* Change a bit more of the localization/translation mechanisms: Now it is ↵Ken Moore2015-07-21
| | | | possible to save the translator for use later (instead of always installing a new QTranslator).
* Update/add some localization functions to libLumina.Ken Moore2015-07-21
|
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2015-07-20
|\
| * Merge branch 'master' of https://github.com/pcbsd/luminaJesse Smith2015-07-18
| |\
| * | Updated dependency and build instructors for Fedora.Jesse Smith2015-07-18
| | | | | | | | | | | | | | | | | | Fedora (and CentOS and RHEL) use different package names, library prefixes and program names. Updated the DEPENDENCIES and README files to include the information needed to build and run Lumina on Fedora/RHEL/CentOS.
* | | Add some more work-in-progress on the Lumina Window frame/manager class for ↵Ken Moore2015-07-20
| | | | | | | | | | | | lumina-wm.
* | | Add the Ctrl-X keyboard shortcut for Cutting the selected files onto the ↵Ken Moore2015-07-20
| |/ |/| | | | | Clipboard.
* | Fix up a calculation of the new window geometry - add in checks for those ↵Ken Moore2015-07-17
| | | | | | | | strange windows (like gimp) which move the main window off-screen before showing it (causing errors/crashes in the program when moving it back).
* | Commit some quick fixes:Ken Moore2015-07-17
| | | | | | | | | | | | 1) Switch some X11->XCB functions around (SetAsDesktop(), SetDisableWMActions()). 2) Fix up some QtQuick plugin detection routines (now it will properly see the user's quickplugins if any). 3) Connect the status change signal/slots for QtQuick plugins to try and detect script failures and remove the script (still not working reliably).
bgstack15