aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add in all the translation files for lumina-terminalKen Moore2016-04-26
|
* Oops - forgot to "git add" the new lumina-session files.Ken Moore2016-04-26
|
* Add the beginnings of a new "lumina-session" wrapper utility for the ↵Ken Moore2016-04-25
| | | | | | sequentual loading of various utilities (WM, DE, screensaver, compositing manager, etc..) Also setup lumina-session to auto-start xcompmgr if it is installed, and adjust the Lumina-DE.desktop xsession entry to launch the session instead of the Lumina-DE binary directly.
* Add a .desktop entry for lumina-textedit.Ken Moore2016-04-25
|
* Fix a couple other files which needed to account for the path changes.Ken Moore2016-04-25
|
* 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.
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2016-04-25
|\
| * Get some more of the new WM functional. Still not ready to be used by the ↵Ken Moore2016-04-23
| | | | | | | | faint of heart.
* | Commit a few random changes on my dev system - just to sync up with the repo.Ken Moore2016-04-25
|/
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2016-04-22
|\
| * Moved common application defaults to their own tab. This should be more ↵JoshDW192016-04-21
| | | | | | | | intuitive.
* | Add some alternate keywords for the c++ syntax rules (built-in functions: ↵Ken Moore2016-04-22
|/ | | | for, while, case, if).
* Fix up the mouse focus when switching tabs around.Ken Moore2016-04-21
|
* Fix up the bracket matching routine to accomodate for nested brackets.Ken Moore2016-04-21
|
* Fix up the syntax rule for highlighting quoted string. Now it will properly ↵Ken Moore2016-04-21
| | | | work for multiple strings on a single line, and ignore escaped quotes as necessary.
* Make the bracket highlighting also check the previous character if nothing ↵Ken Moore2016-04-21
| | | | found for the next character.
* Also make sure the current tab/filename is reflected in the window title for ↵Ken Moore2016-04-21
| | | | the editor.
* Set the width of the "tab" character to be == 8 spaces (UNIX standard)Ken Moore2016-04-21
|
* Another minor change to lumina-textedit: Add a "preprocessor" syntax color, ↵Ken Moore2016-04-21
| | | | and add preprocessor line highlighting to C+++ syntax rules. Also ensure that the defined colors are always up to date, even if a new color is added at some later version.
* Add all the translation files for lumina-textedit.Ken Moore2016-04-21
|
* Get a full color editor/modifier added to the tool. Now all colors can be ↵Ken Moore2016-04-19
| | | | changed at will.
* Get find/replace support fully implemented.Ken Moore2016-04-19
|
* Some more work on lumina-textedit.Ken Moore2016-04-19
|
* Get a lot more of lumina-textedit done. Almost everything is complete now ↵Ken Moore2016-04-19
| | | | except for the color-selection dialog.
* Get almost everything else setup and functional. Now tabs can be ↵Ken Moore2016-04-18
| | | | closed/opened/moved just fine, the line numbers can be enabled/disabled, etc...
* Some more updates to lumina-textedit: Starting to get the buttons all hooked ↵Ken Moore2016-04-15
| | | | up and functional.
* Add a bunch more work on the new lumina-textedit. Putting the tabbed-wrapper ↵Ken Moore2016-04-15
| | | | in place now (not much connected yet). Also add the beginnings of a "Python" set of syntax rules.
* Fix up lumina-xconfig so it works better with multiple (3+) monitors and ↵Ken Moore2016-04-15
| | | | custom settings.
* Make sure that the desktop widget updates itself and any panels on ↵Ken Moore2016-04-15
| | | | screen/resize changes.
* 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
| |
bgstack15