aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-open/main.cpp
Commit message (Collapse)AuthorAge
* lumina/src-qt5/core/lumina-open/main.cpp:75:34: warning: 'screenGeometry' is ↵lbartoletti2019-10-22
| | | | deprecated: Use QGuiApplication::screenAt()
* enable to set volumeup/down parcentageboronology2018-03-02
|
* Fix a couple theme engine holdovers in lumina-open, and turn off debugging ↵Ken Moore2017-10-27
| | | | again.
* Ensure that "Exec" and "TryExec" strings with quotes are handled properly.Ken Moore2017-10-27
|
* Fixed issue with setting defaults in lumina-open and cleaned up main.cppZackaryWelch2017-10-23
|
* Small changes to lumina-open:Ken Moore2017-08-17
| | | | | 1) Don't change the lumina-mimeapps.list file unless the user chooses to change the default (never clear the default) 2) Clean up a bunch of whitespace issues
* Ensure that all Lumina tools/utilities are setup with high-DPI icons.Ken Moore2017-05-01
|
* Clean up some of the applauncher context menu functionality:Ken Moore2017-03-02
| | | | | 1) Add the ability for plugins to set their own high-priority context menu, and put the plugin modification menu into that as needed. 2) For the applauncher plugin, generate a custom context menu specifically for the file in question. This may include the various "actions" in .desktop files as appropriate, and also adds shortcuts for launch, open, open-with, file properties, and delete file.
* Update the help text for lumina-open to include the "-action <ActionID>" ↵Ken Moore2017-03-02
| | | | syntax. This is the syntax used for launching one of the alternate .desktop file actions.
* Fix up some handling of the non-application .desktop file types:Ken Moore2017-01-17
| | | | | 1) Make sure the "LINK" type uses the default browser (even for local file links) 2) Make sure the "DIR" type uses the default file manager.
* Quick fix for running files with the executable bit set: Only run them if ↵Ken Moore2017-01-16
| | | | they have no extension or a ".sh" extension (can extend later to check if there is no known mimetype as another valid use-case).
* Update the lumina-open crash handler to only trigger when an application ↵Ken Moore2016-12-27
| | | | process is detected as an actual crash - not just a non-zero return code.
* Another mimetype detection fix.Ken Moore2016-12-16
|
* 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)
* If a .desktop file is given to launch, be more specific with the error when ↵Ken Moore2016-10-21
| | | | the file is invalid.
* 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).
* Add a new optional flag to lumina-open: "-terminal"Ken Moore2016-09-08
| | | | This flag will have lumina open automatically launch whatever the default terminal is for the user.
* Fix a bug in lumina-open where the directory handling was not working.Ken Moore2016-08-24
|
* Oops: *Now* lumina-open will handle binary names as inputs just fine (if ↵Ken Moore2016-08-18
| | | | they exist).
* A couple quick fixes:Ken Moore2016-08-17
| | | | | 1) Ensure that lumina-open is used to open the default terminal app (additional binary verification/checking) 2) Add some additional verification of the binary to run within lumina-open, and warn the user about a missing binary as needed.
* Add in the possibility of a "nowatch" file/flag for lumina-open to avoid ↵Ken Moore2016-08-01
| | | | | | watching processes for crash reports and such. This is a reimplementation of the pull request sent in by slicer69 (issue #244) which looks at the correct file location all the time.
* Fix up the detection/usage of the "mailto:" option in lumina-open. This also ↵Ken Moore2016-06-08
| | | | changes the default mimetype used for email applications to "application/email"
* Fix a bug with detecting/using KDE applications as the defaults for ↵Ken Moore2016-06-08
| | | | particular mimetypes.
* 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