aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add a fix for loading icons for Wine applications.Ken Moore2015-05-20
|
* Fix the issues with running commands with lots of forward slashes in the ↵Ken Moore2015-05-20
| | | | commandd string (generally Wine programs). These programs/commands will now be run with the "system()" command instead of using a QProcess, resulting in a lack of usable error logs, but at least it functions properly now.
* Add the ability to set solid-color backgrounds within Lumina, and add this ↵Ken Moore2015-05-20
| | | | option to lumina-config.
* Fix a bug in the background snapshot finder: the new simplification routine ↵Ken Moore2015-05-18
| | | | was incorrectly being used, because the variable being checked was set just moments before (resulting in it always re-using the first snapshot directory found)
* Fix a bug in lumina-config where saving settings during a screen change was ↵Ken Moore2015-05-15
| | | | saving the settings on the new screen instead of the old one.
* A couple adjustments to the session startup procedures:Ken Moore2015-05-14
| | | | | 1) Ensure that numlockx is actually installed before running that check/enable routine. 2) Add a 250ms delay (non-blocking) between auto-started applications. This just helps prevent overloading the system and is a bit nicer about starting a lot of processes in a short time frame.
* Merge pull request #121 from Nanolx/masterKen Moore2015-05-13
|\ | | | | Update Debian packaging scripts
| * update luminaDesktop.conf (debian)Christopher Roy Bratusek2015-05-13
| |
| * drop unneeded DEB_HOST_MULTIARCH re-definition from debian/rulesChristopher Roy Bratusek2015-05-13
| |
| * remove creation of luminaStartapps from debian/rulesChristopher Roy Bratusek2015-05-13
| |
| * new debian snapshotChristopher Roy Bratusek2015-05-13
| |
* | A couple quick updates to the system tray:Ken Moore2015-05-13
|/ | | | | 1) Keep track of any events that come in during a check, and run another check when ready. 2) If an update event comes in for an icon which is not internally found, have it run the full check to see if it is missing an icon.
* When using the time/date or date/time clock formats, put a newline instead ↵Ken Moore2015-05-13
| | | | of a space between the time/date.
* Fix a couple possible parsing issues with loading system/lumina defaults ↵Ken Moore2015-05-13
| | | | (remember case sensitivity!)
* Integrate the new conversion from the old "startApps" file to the new XDG ↵Ken Moore2015-05-13
| | | | | | autostart spec, and disable all the usage of the "startApps" files. NOTE FOR SYSTEM ADMINS: If you have system-specific startapps files hanging around, you will need to convert them to the XDG autostart spec manually - they will NO LONGER BE USED!!!
* Finish cleaning up the new XDG autostart write-support and enable it in ↵Ken Moore2015-05-12
| | | | | | lumina-config. Now Lumina use the XDG spec entirely for auto-starting applications/utilities. NOTE: The conversion routine from the old->new autostart spec has not been implemented yet, so the old file will still be used for a short while (just not changeable through lumina-config).
* Large update to the XDG autostart spec - Add full write support in libLumina.Ken Moore2015-05-12
| | | | This still needs to be tested/integrated into lumina-config for full access.
* Have lumina assign an internal "non-mimetype" to files that do not have a ↵Ken Moore2015-05-12
| | | | | | match in the system mimetype database. This allows backend system to function normally on these types of files. Internal designation: "unknown/[lowercase extension or lowercase filename]"
* Adjust the desktopview plugin just a bit:Ken Moore2015-05-12
| | | | | | 1) Remove the Qt "UniformItemSizes" flag, and instead force particular grid sizing for items (fixes issue with entire grid being re-adjusted to smallest icon size). 2) Add the ability for two lines of text underneath each icon, with the string elided and split as necessary to fit. 3) If there is a natural word break in the file name, use that for the lines and elide each line individually.
* When making a previous selection visible in the viewport, try to put it at ↵Ken Moore2015-05-11
| | | | the top of the viewport.
* Put in a quick check/safeguard for invalid panel sizing.Ken Moore2015-05-11
|
* Merge pull request #118 from pcbsd/linuxKen Moore2015-05-11
|\ | | | | Updated DEPENDNECIES file.
| * Updated DEPENDNECIES file.Jesse Smith2015-05-11
| | | | | | | | | | | | Updated the DEPENDNECIES file to include the libxcb-image0-dev package, which is required on Debian/Ubuntu systems for building Lumina.
* | oops, also ensure that the widget scrolls to ensure the old directory is ↵Ken Moore2015-05-11
| | | | | | | | visible instead of just selected.
* | When moving back/up a directory in lumina-fm, have it automatically select ↵Ken Moore2015-05-11
|/ | | | the previous directory in the list.
* Clean up the new theme modifications a bit to remove some duplications and ↵Ken Moore2015-05-08
| | | | unintendeded aftereffects. Also move those new modifications into the "None" theme (since it impacts the desktop and not generic applications).
* Merge pull request #111 from william-os4y/iconLayoutKen Moore2015-05-08
|\ | | | | New icon layout for the icons on the desktop
| * Adapt the theme for the other pluginswi2015-05-08
| |
| * correct the menu colors of the desktop's iconswi2015-05-05
| |
| * New icon layout for the icons on the desktopwi2015-05-05
| |
* | Merge pull request #115 from beatgammit/patch-1Ken Moore2015-05-07
|\ \ | | | | | | Fix type-o that caused tag mismatch in translation
| * | Fix type-o that caused tag mismatch in translationJameson Little2015-05-07
|/ /
* | Merge pull request #110 from grayed/masterKen Moore2015-05-07
|\ \ | | | | | | Don't try to free(3) a pointer to stack.
| * | Don't try to free(3) a pointer to stack.Vadim Zhukov2015-05-05
| |/ | | | | | | | | | | | | | | GCC warning helped to spot a real bug: near line 1185 of libLumina/LuminaX11.cpp there is a call: `free(&hints);`, - but the "hints" is allocated on the stack a few lines above. This looks like a copy-paste error, since other free(&hints) instances look like sane (unless I've missed something, of course).
* | Merge pull request #109 from kloun/patch-1Ken Moore2015-05-07
|\ \ | |/ |/| translated lumina-info on ru (русский)
| * translated lumina-info on ru (русский)kloun2015-05-02
|/
* Add a (commented out) experimental feature for tagging all the various ↵Ken Moore2015-05-01
| | | | desktop plugin widgets by the name of the plugin. Leaving this disabled by default until some more testing is performed to see how well it works.
* Add some additional error checking to the new "Open Terminal Here" ↵Ken Moore2015-05-01
| | | | functionality in lumina-fm.
* Merge pull request #104 from william-os4y/fileinfoKen Moore2015-05-01
|\ | | | | LXDG::loadDesktopFile improvement proposition
| * improve the decision regarding valid desktop files by check if Name and Type ↵wi2015-04-30
| | | | | | | | are well present.
* | Merge pull request #105 from william-os4y/fileinfo2Ken Moore2015-05-01
|\ \ | | | | | | patches of lumina-fileinfo when the proposed file is not existing or empty
| * | this patch correct 2 issues with non existing files:wi2015-04-30
| |/ | | | | | | | | | | | | - lumina-fileinfo file (where file is a not existing file) now return expected values - lumina-fileinfo file.desktop (where file.destp is an empty file) now present the correct screen allowing users to enter values of the desktop file Thanks to last fix, users willing to create a desktop file (via lumina-fm -> new file) in their ~/Desktop folder are able to edit it.
* | Merge pull request #108 from william-os4y/fm-termKen Moore2015-05-01
|\ \ | | | | | | this change propose to have the "Open Terminal here" menu in lumina-fm
| * | Merge remote-tracking branch 'upstream/master' into fm-termwi2015-05-01
| |\|
| * | use the termnial application specified by the user as the default-terminal.wi2015-05-01
| | |
| * | Add a contextMenu allowing the user to open a terminal in the selected folderwi2015-04-26
| | |
* | | Update the documentation on the ROADMAP and the plugins available in the ↵Ken Moore2015-05-01
| |/ |/| | | | | comments for the default luminaDesktop.conf
* | Fix/Fix a couple important bugs before announcing 0.8.4-release:Ken Moore2015-04-30
| | | | | | | | | | | | | | | | 1) Desktop plugins are not getting removed. - This appears to be a bug in Qt 5.4.1 from what I can tell (any window buttons in the QMdiSubWindow are non-responsive), but for the moment the user can right-click on the plugin titlebar and select "close" from the menu for the same effect. I have fixed a couple edge cases/situations where forcibly closing/removing a desktop plugin will crash the session (it behaves properly in all situations now from my testing). 2) Disable the panel location limitations in lumina-config since with the new lenght settings it is possible to place panels in any location now (such as two panels on the top - one pinned left and the other pinned right). 3) Fix up the desktop plugin area calculations so they properly handle panels in any configuration. 4) If the desktop area was re-configured, go through and adjust the location/sizing of any desktop plugins (to ensure that they are all within the available space - use the grid alignment procedure).
* | Update README.mdKen Moore2015-04-29
| | | | | | Fix a typo and add additional information about the "Releases" page on GitHub.
* | Rename the lumina-wm directory to lumina-wm-INCOMPLETE so people know it is ↵Ken Moore2015-04-29
| | | | | | | | not ready yet. Also update the readme with the information about the new release.
bgstack15