aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Get parenthesis/bracket highlighting into the text edit - now all the basics ↵Ken Moore2016-04-15
| | | | are covered.
* Get all the C/C++/Qt syntax highlighting rules all setup. Now the last piece ↵Ken Moore2016-04-15
| | | | to implement would be bracket/perenthesis matching on cursor action.
* Get some more of the terminal cleaned up. Now "vi" has partial support ↵Ken Moore2016-04-14
| | | | (still no functional arrow keys though)
* Clean up a bit more of the terminal widget/interactions.Ken Moore2016-04-14
|
* Add a start for a Qt text editor (mainly for playing around - but it could ↵Ken Moore2016-04-14
| | | | turn into something useful down the road).
* Fix up some selection/cursor handling so the user cannot change the current ↵Ken Moore2016-04-13
| | | | cursor position in the widget.
* Get some more of the terminal cleaned up.Ken Moore2016-04-13
|
* Get the home/end keys functional.Ken Moore2016-04-13
|
* Get the new terminal in a more functional state - highlight/copy/paste are ↵Ken Moore2016-04-13
| | | | now functional as well.
* Minor cleanup of some build system files. No real changes.Ken Moore2016-04-12
|
* Remove a couple obsolete shell scripts from the liblumina dir. The new qmake ↵Ken Moore2016-04-12
| | | | build system handles all this automatically now (OS-detect.pri).
* Get more of the terminal working. Now all the special xterm stuff is getting ↵Ken Moore2016-04-11
| | | | trimmed out.
* Ensure that the current audio volume gets saved to the local file on session ↵Ken Moore2016-04-11
| | | | close so that the next start of a session has the appropriate audio volume.
* Fix up the multi-monitor adjustment systems in the Lumina session. Now ↵Ken Moore2016-04-08
| | | | things can change on the fly again without any trouble.
* Fix a bug causing the "open terminal here" dialog not to work properly.JoshDW192016-04-04
|
* Remove the old commented out resizeEvent() from the cpp file. Not needed ↵Ken Moore2016-04-04
| | | | anymore.
* Merge pull request #215 from q5sys/masterKen Moore2016-04-02
|\ | | | | fixing errors I introduced in previous commits
| * commeting out broken resize functionq5sys2016-04-02
| | | | | | | | | | error was reported by community member. it's built fine on my system, but when building from fresh download it fails. with this commented out the project will build. I need to figure out what exactly is causing the hangup before re-enabling, but dont want to break the program in the meantime.
| * re-added lost } during last editq5sys2016-04-02
| |
* | Merge pull request #214 from q5sys/masterKen Moore2016-03-31
|\| | | | | removed: QMainWindow::closeEvent(ev);
| * Update MainUI.hq5sys2016-03-31
| |
| * removed: QMainWindow::closeEvent(ev);q5sys2016-03-31
|/ | | if its not needed, there's no reason for it to be there.
* Merge pull request #213 from q5sys/patch-1Ken Moore2016-03-31
|\ | | | | Initial resize event
| * Update MainUI.hq5sys2016-03-30
| |
| * Update MainUI.hq5sys2016-03-30
| | | | | | updating close event
| * Update MainUI.cppq5sys2016-03-30
| | | | | | fixed spacing and cleaned up order
| * Update MainUI.cppq5sys2016-03-30
| |
| * Update MainUI.cppq5sys2016-03-30
| |
| * Update MainUI.cppq5sys2016-03-30
| |
| * Update MainUI.cppq5sys2016-03-30
|/ | | tentative replacement of initial size function
* Merge pull request #212 from q5sys/masterKen Moore2016-03-29
|\ | | | | reordering toolbar buttons
| * Update MainUI.cppq5sys2016-03-29
| | | | | | Move spacer in toolbar from in front of actionNew to actionQuit so the toolbar is spaced better.
| * Update MainUI.uiq5sys2016-03-29
| | | | | | re-ordering toolbar
| * Update MainUI.uiq5sys2016-03-29
| |
* | Merge branch 'master' of github.com:pcbsd/luminaKen Moore2016-03-29
|\ \
| * | Merge pull request #210 from q5sys/masterKen Moore2016-03-29
| |\| | | | | | | mostly housekeeping
| | * Update MainUI.cppq5sys2016-03-29
| | | | | | | | | changed edit icon to something more appropriate than the icon for cut
| | * Update MainUI.uiq5sys2016-03-29
| | | | | | | | | changed statustip from snapshot to screenshot so verbiage is the same as everywhere else in the program
| | * Update MainUI.uiq5sys2016-03-28
| | | | | | | | | fixed error introduced in last commit. Both Save and Quicksave had same shortcut rending Ctrl-S useless. Shortcut for Quicksave changed to Ctrl-Shift-S
| | * Update MainUI.uiq5sys2016-03-28
| | | | | | | | | added crtl-q shortcut to quit action
| | * Update MainUI.uiq5sys2016-03-28
| | | | | | | | | added ctrl-e shortcut to edit action
| | * Update MainUI.uiq5sys2016-03-28
| | | | | | | | | added statustip to edit action
| | * Update MainUI.uiq5sys2016-03-28
| | | | | | | | | added tooltip to edit function
| | * Update MainUI.uiq5sys2016-03-28
| | | | | | | | | Changed Crop to Edit since cropping was a narrow view of post processing
* | | Remove the Q_DECL_OVERRIDE tag from the end of the native event filter ↵Ken Moore2016-03-29
|/ / | | | | | | function declaration: This causes build issues on Qt 5.6, but removing it does not appear to make a difference on Qt 5.5.1
* | Merge pull request #209 from q5sys/masterKen Moore2016-03-25
|\| | | | | Quicksave and Crop Functions
| * Update MainUI.cppq5sys2016-03-25
| | | | | | replaced hardcode for GIMP as the editor to Lumina-open
| * Update MainUI.cppq5sys2016-03-25
| | | | | | condensed quicksave file name function
| * Update MainUI.cppq5sys2016-03-25
| | | | | | added editScreenshot
| * Update MainUI.cppq5sys2016-03-25
| | | | | | added quicksave
bgstack15