summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Changes to bring code up to date and to synchronize with current changesissue/270/tdebaseVincent Reher2023-10-037-17/+755
| | | | | | | | | in https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/pulls/209. Code now includes GUI enabling user to change TDEHiddenFileMatcher for current KDirLister. Signed-off-by: Vincent Reher <tde@4reher.org>
* Implemented better fallback when konqlistviewrc/[Settings]/hiddenFileSpecVincent Reher2023-10-033-17/+45
| | | | | | | | | key does not exist Implemented more comprehensive response to user-caused changes to hidden file match criteria Signed-off-by: Vincent Reher <tde@4reher.org>
* Updates to accommodate tdelibs PR 163 commit 7cd3caffa5.Vincent Reher2023-10-033-12/+23
| | | | Signed-off-by: Vincent Reher <tde@4reher.org>
* Added access to tdelibs user interface for specifying hidden file matching ↵Vincent Reher2023-10-035-117/+17
| | | | | | | | | criteria. Removed diagnostic cruft used during testing. Other code modifications in preparation for code review. Signed-off-by: Vincent Reher <tde@4reher.org>
* Set up konqueror interface to TDEIO:HiddenFileMatcher object:Vincent Reher2023-10-039-3/+167
| | | | | | | | | | | | | | | | | (1) Establish "HiddenFileSpec" key to be stored in a konq*viewrc config file. (2) Establish menu access for modifying key in listview (iconview TBD). The "HiddenFileSpec" key (under [Settings] in config/konqlistviewrc) should contain a string specifying what constitutes a hidden file. The string should conform to the syntax described in latest commit message for corresponding tdelibs PR # 163. Testing at this point will require manually editing the configuration file. KonqListView::slotChangeHiddenFileMatcher will eventually call a dialog through which a user can query and modify the specification for how "hidden" files are to be identified. Currently it only demonstrates access to HiddenFileMatcher methods. Signed-off-by: Vincent Reher <tde@4reher.org>
* Implement TDE/tdebase#270 for tdebase: Extend meaning of "Hidden" files.Vincent Reher2023-10-031-1/+1
| | | | | | This commit requires a related commit for tdelibs. Signed-off-by: Vincent Reher <tde@4reher.org>
* TCC twin: add 'shade' to the left mouse button click menu for active ↵Michele Calgaro2023-04-271-18/+15
| | | | | | windows. This resolves issue #334 Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Added initial draft of release notes for R14.1.1Michele Calgaro2023-04-272-0/+8
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Updated release notes with tqscintilla SEGV fixr14.1.0Michele Calgaro2023-04-121-0/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Add release notes for R14.1.0Michele Calgaro2023-04-102-3/+191
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* khelpcenter: restructure release notes in preparation for the r14.1.x seriesMichele Calgaro2023-03-3123-64/+151
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* tde license: minor adjustment to window size for better visualizationMichele Calgaro2023-03-281-1/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Added TDE license info dialogMichele Calgaro2023-03-279-2/+252
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Kxkb: improve TDE Control Centre module.Mavridis Philippe2023-03-2410-245/+778
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Add conflicts check for hotkey checkboxes Due to the ability to set multiple keyboard layout switching hotkeys, it is important to inform the user of conflicting options that are not handled properly by the X.org server when set at the same time (e.g. Win+Space and Alt+Space). This change adds a warning that informs the user about the problem and the conflicting options. This warning is shown only when setting multiple hotkeys via the Xkb options tab, which is for the advanced user. Most users will ever need only one hotkey, and the combobox on the first tab should be more than enough. 2) Add "none" item to layout switching options 3) Replace Reset old options checkbox with radio buttons As per discussion, this makes the function of the option more apparent. WhatIs hints have been added for additional clarity. 4) Update hotkey combobox per server options 5) Avoid duplication of options by querying Xkb for already set options. This was a problem in Append Mode in which `setxkbmap` strings would get too long due to setting already set options. This code checks for already set options and omits them from the new `setxkbmap` call. This does not apply to Overwrite Mode. 6) Overwrite previous grp: options when using the combobox See previous commit message about the addition of hotkeys combobox. Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Kxkb: Improve layout switchingMavridis Philippe2023-03-2418-716/+323
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) New layout switching approach The new approach is based on the "grp" options group of Xkb and so enables us to use predefined X11 layout (group) switching hotkeys like "Caps Lock" or "Shift+Alt" (you can see the full list in the Options tab). The added bonus to this is that we conform to the Xkb setting. The code lets Xkb handle the keyboard layout switching hotkey(s) and is similar to the one that is used in kkbswitch, monitoring for an Xkb group (layout) change event. This solution required me to remove some hacky and obsolete code which was there to support really old pre-XFree-4.2 era systems and included the "include groups" hack. This means that the "Enable latin layout" checkbox is now gone and setxkbmap is only called when the keyboard layouts and/or options are modified, and not for every layout change. 2) Common layout switching hotkeys combobox A combobox was added to the first page of the Keyboard Layouts KCM module. It provides to the users a quick way to set a layout switching key combination. It also controls the "grp" group in the Xkb tab. A special note about this combobox is that, even if Append Mode was selected in the Xkb Options tab, this hotkey will overwrite previous hotkey options. This means that all grp: options will be forced removed before applying the option from the combobox (in contrast to specifying options via the Xkb Options tab, which, in Append Mode, will not get overwritten until next login). Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Kxkb: Improve Xkb option detectionMavridis Philippe2023-03-241-22/+90
| | | | | | | | 1. Prefer XML files for Xkb options, as on some systems they have the a fuller set of options with descriptions than plain Xkb rules files. 2. Various hacks to improve descriptions of newer Xkb options Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* hwmanager: use alphabetically sorted menus in tdehwdevicetray.Michele Calgaro2023-03-132-21/+38
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* tdeioslave mediamanager: show the device node in the label also for ↵Michele Calgaro2023-03-121-3/+3
| | | | | | removable drives and CD/DVD disks. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* hwmanager: tdehwdevicetray now uses the same names used in Konqueror and ↵Michele Calgaro2023-03-112-52/+66
| | | | | | KDesktop for the storage drives. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* hwmanager: avoid unnecessary update of device names on status change. This ↵Michele Calgaro2023-02-172-24/+18
| | | | | | relates to issue TDE/tde#110. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* hwmanager: Do not open a popup window when clicking on a notification,Slávek Banko2023-02-161-0/+7
| | | | if automatic opening of popup windows is enabled.
* Fix Konqueror SEGV when the KPropertiesDialog is opened on the rootMichele Calgaro2023-02-091-1/+0
| | | | | | element of the treeview. This resolves issue #310. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* kcheckpass: Add pw_encrypt detection.Slávek Banko2023-02-092-0/+5
| | | | | | This relates to Bug 2854. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* hwmanager: add LMB menu based on storage devices.Michele Calgaro2023-02-082-51/+158
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* hwmanager: rework code for RMB menu. This does not add any newMichele Calgaro2023-02-062-373/+161
| | | | | | functionality but allows the future LMB menu to reuse some of the code. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* hwmanager: use a private class 'd' to store internal members of ↵Michele Calgaro2023-02-062-129/+141
| | | | | | HwDeviceSystemTray. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* hwmanager: remove current LMB menu. Rearrange code of RMB menu. Use MMB click toMichele Calgaro2023-02-062-41/+49
| | | | | | show the Device Manager dialog directly. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix kcheckpass segfaults in non-PAM systems. This resolves bug 2854.Darrell Anderson2023-01-301-0/+1
| | | | | Signed-off-by: Darrell Anderson <darrella@clovermail.net> Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Reset submodule main/core/tdebase/admin to latest HEADAutomated System2023-01-131-0/+0
|
* Reset submodule main/core/tdebase/admin to latest HEADAutomated System2023-01-101-0/+0
|
* Translated using Weblate (Portuguese)Hugo Carvalho2022-10-311-8/+8
| | | | | | | Currently translated at 90.3% (28 of 31 strings) Translation: tdebase/twin - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/twin-desktop-files/pt/
* Translated using Weblate (Polish)Marek W2022-10-251-11/+12
| | | | | | | Currently translated at 69.7% (175 of 251 strings) Translation: tdebase/l10n - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/l10n-desktop-files/pl/
* Translated using Weblate (Polish)Marek W2022-10-251-5/+5
| | | | | | | Currently translated at 79.7% (362 of 454 strings) Translation: tdebase/kcontrol - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcontrol-desktop-files/pl/
* Translated using Weblate (Polish)Marek W2022-10-251-9/+6
| | | | | | | Currently translated at 56.6% (196 of 346 strings) Translation: tdebase/kappfinder - data Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kappfinder-data/pl/
* Translated using Weblate (Polish)Marek W2022-10-251-8/+9
| | | | | | | Currently translated at 97.4% (38 of 39 strings) Translation: tdebase/khelpcenter - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/khelpcenter-desktop-files/pl/
* Translated using Weblate (Polish)Marek W2022-10-251-6/+4
| | | | | | | Currently translated at 95.2% (20 of 21 strings) Translation: tdebase/kdesktop - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdesktop-desktop-files/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-5/+5
| | | | | | | Currently translated at 100.0% (15 of 15 strings) Translation: tdebase/tdeprint - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeprint-desktop-files/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-7/+9
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: tdebase/konsole - events Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/konsole-events/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-7/+9
| | | | | | | Currently translated at 100.0% (2 of 2 strings) Translation: tdebase/knetattach - knetattach.desktop Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/knetattach-knetattachdesktop/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-8/+9
| | | | | | | Currently translated at 100.0% (2 of 2 strings) Translation: tdebase/kmenuedit - kmenuedit.desktop Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kmenuedit-kmenueditdesktop/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-10/+11
| | | | | | | Currently translated at 55.4% (192 of 346 strings) Translation: tdebase/kappfinder - data Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kappfinder-data/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-5/+4
| | | | | | | Currently translated at 100.0% (63 of 63 strings) Translation: tdebase/khotkeys - data Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/khotkeys-data/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-12/+10
| | | | | | | Currently translated at 80.9% (17 of 21 strings) Translation: tdebase/kdesktop - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdesktop-desktop-files/pl/
* Translated using Weblate (Polish)Marek W2022-10-241-8/+10
| | | | | | | Currently translated at 100.0% (5 of 5 strings) Translation: tdebase/kate - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kate-desktop-files/pl/
* Added final version of release notes for R14.0.13.Michele Calgaro2022-10-201-6/+121
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Konsole Part: Ctrl+Mouse Scroll to change font sizeMavridis Philippe2022-10-194-18/+32
| | | | | | | | | | Konsole: Move biggerFont() and smallerFont() into TEWidget Signed-off-by: Mavridis Philippe <mavridisf@gmail.com> Additional changes. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Translated using Weblate (Ukrainian)Roman Savochenko2022-10-181-15/+9
| | | | | | | Currently translated at 100.0% (21 of 21 strings) Translation: tdebase/kdesktop - desktop files Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdesktop-desktop-files/uk/
* Kicker: Allow dragging group tasksMavridis Philippe2022-10-141-5/+0
| | | | Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Add doc/kappfinder/CMakeLists.txt to avoid unwanted automaticSlávek Banko2022-10-141-0/+6
| | | | | | installation of man-kappfinder.1.docbook. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add "Move Task Button" action to group tasksMavridis Philippe2022-10-111-35/+42
| | | | | | | | This resolves issue TDE/tde#98. Also contains some identation fixes. Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>