Commit Graph

2471 Commits (66fde0cb70c6e238bf89b373636cbc4b499f02cd)
 

Author SHA1 Message Date
Slávek Banko 66fde0cb70
Raise the minimum required version of CMake to 3.1 in CMakeL10n rules.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit d9743d0420)
3 years ago
Slávek Banko da240f8018
Raise the minimum required version of CMake to 3.1.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 941e4a6f6d)
3 years ago
Slávek Banko 39c2dea65f
Add dispwin (Argyll) support to set the ICC profile.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 2caf1dfebc)
3 years ago
Michele Calgaro dfe419d541
tdm: improve documentation. This resolves issue #249.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit dcb4b6b773)
3 years ago
TDE Gitea ff500b019c Merge translation files from master branch. 3 years ago
Michele Calgaro 0f97353179
konsole: fixup comments text and location.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 76fe6863ce)
3 years ago
Michele Calgaro c3e741feca
Backported commit 66c83048 from KDE's Konsole source code.
66c830484c
This relates to issue TDE/tde#71.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>

-------------------------------------------------------------
Original commit info:
From: Luis Alves <luisalves05@gmail.com>
Date: Wed, 10 Jun 2020 17:34:15 -0300
Subject: Add new ANSI sequences CNL and CPL

- It implements Cursor Next Line (CNL) sequence.
- It implments Cursor Previous Line (CPL) sequence.
- Ex: echo -e "Hello\e[3EWorld" or echo -e "Hello\e[3FWorld"
-------------------------------------------------------------

(cherry picked from commit d397267391)
3 years ago
Michele Calgaro 26930d7574
Fixed hanging of system on shutdown caused by conflicts between tdm and plymouth.
This resolves bug 2806.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 013b337217)
3 years ago
Michele Calgaro 3797492563
Konsole: fixed detection of root mc in session menu. This resolves issue #245.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 1f39afd8d1)
3 years ago
TDE Gitea 208a0a00b6 Merge translation files from master branch. 3 years ago
TDE Gitea 1f648a7a55 Merge translation files from master branch. 3 years ago
TDE Gitea 0a04f95ed3 Merge translation files from master branch. 3 years ago
Gamerappa f2c3276be5
(Readme) Replace most mentions of KDE with TDE
This isn’t completely done as there’s still a few outdated
bits of infomation in there.

Signed-off-by: Gamerappa <chazpelo2@gmail.com>
(cherry picked from commit bd865430b4)
3 years ago
TDE Gitea ad2b8358fd Merge translation files from master branch. 3 years ago
TDE Gitea db01087d15 Merge translation files from master branch. 3 years ago
TDE Gitea d2ac10222a Merge translation files from master branch. 3 years ago
Michele Calgaro e757ccdbb1
Fixed clearing Xft.dpi settings when no value is set in TCC module. This resolves issue TDE/tde#70.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d46fe0e5a4)
3 years ago
TDE Gitea 9c2f4b15de Merge translation files from master branch. 3 years ago
Michele Calgaro b708c8f054
Added initial draft of release notes for R14.0.12.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b264e00f68)
3 years ago
Slávek Banko da1d19bb1c
Update version number to R14.0.12.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
3 years ago
TDE Gitea cc9a6f406c Merge translation files from master branch. 3 years ago
Michele Calgaro f6f2d5ecbf
Added final version of release notes for R14.0.11.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 98aff0ce80)
3 years ago
Kurt Hindenburg a13485e305
Konsole: Correct scrollUp behavior
CSI S escape sequence (SU, scroll up) ignored if number of lines to
scroll bigger than scrollable lines

REVIEW: 130133
BUG: 379318

Taken from KDE patches and adapted to TDE.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 0bb1c7eb4c)
3 years ago
Mariusz Glebocki af843540a0
Konsole: CSI 2J: Do not append current screen to history
Summary:
This behavior is present in e.g. xterm and linux console.

Currently when using CSI 2J escape sequence, screen contents are
appended to scrollback (including bottom empty lines). This is breaking
`clear` command, which replaces scrollback with current screen contents.

BUG: 384218

Test Plan:
* Start Konsole with a shell
* `clear`

**Expected result:**
Cleared display, empty scrollback.
**Actual result:**
Cleared display, but scrollback contains previous display contents.

---

* Start Konsole with a shell
* seq 1000
* `echo -ne '\033[2J`

**Expected result:**
Cleared display, numbers in last scrollback lines.
**Actual result:**
Cleared display, but scrollback contains previous display contents
(i.e. shell prompt in last lines)

Reviewers: #konsole, hindenburg

Reviewed By: #konsole, hindenburg

Subscribers: hindenburg, konsole-devel, #konsole

Tags: #konsole

Differential Revision: https://phabricator.kde.org/D21282

Taken from KDE patches and adapted to TDE.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 838025df1c)
3 years ago
Kurt Hindenburg 6b3721d83a
Konsole: Add support for ECMA-48 REP: repeating previous character
Patch by btown using lxde/qtermwidget@60221da by @yan12125

ECMA-48 8.3.103 describes the sequence CSI Pn b for repeating the
previous character in the data stream. This sequence has been present
in XTerm since January 1997 and has been added to the latest terminfo
entry for xterm-new and derived entries such as xterm-256color.

https://phabricator.kde.org/D10064

Taken from KDE patches and adapted to TDE.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 4934beb550)
3 years ago
TDE Gitea c923bcf8c8 Merge translation files from master branch. 3 years ago
Mavridis Philippe 8e74e0166e
KTip: removed dead FTP link from tip
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit f7550c45c6)
3 years ago
Mavridis Philippe d233d4e368
TDEMenu search shortcut: various fixes
* Better Escape key usage prevention
* Better handling of different shortcut counts (0 vs 1 vs 2)
* Fixed a deprecated function call to setShortcut()

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit 10cddab2e3)
3 years ago
Slávek Banko 191f427410
starttde: Add dynamic determination of default value for forceFontDPIEnable
depending on the current value of forceFontDPI. This solves the automatic
transition of configuration after adding support for variable font DPI.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 48077a30f9)
3 years ago
Michele Calgaro a1a836e148
Added support for variable font DPI (range 64-512) in user session.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e8d8664504)
3 years ago
TDE Gitea 619ac6d9ff Merge translation files from master branch. 3 years ago
Slávek Banko 9660911f8d
kcontrol/tde-menu: Items for adjust text now depends on Display text in menu button checkbox.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 0f139004ca)
3 years ago
Slávek Banko 65d589367a
kcontrol/tde-menu: Search shortcut label now depends on Enable search checkbox.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 622236d203)
3 years ago
Mavridis Philippe b6c43381e1
Search cut: Add check for Escape key
We cannot accept the Escape key as a search shortcut
as it is bound to other actions already.

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit c3d4d73313)
3 years ago
Mavridis Philippe ef673da510
Search shortcut option now depends on "Enable search" checkbox.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit 4a60c1ead4)
3 years ago
Mavridis Philippe 09c9e9c7f2
TDE Menu: Customizable search line shortcut
This resolves issue #176.

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit 2557c13094)
3 years ago
Slávek Banko 2fb9cbf67f
KControl: Allow RandR warning to translate.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 9a444a3310)
3 years ago
Mavridis Philippe 28895397e9
tdeinit: Fixed env. variable name (TWIN->TDEWM).
This is how it is mentioned in starttde and should have been
according to renaming (KDEWM->TDEWM).

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit 72f07e2805)
3 years ago
TDE Gitea 6af5d448c8 Merge translation files from master branch. 4 years ago
Slávek Banko be85f5aae3
kcontrol/hwmanager: Allow translate an error message about unavailable information.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 3eba4f728a)
4 years ago
Slávek Banko e5f38e2207
kcontrol/hwmanager: Allow translation for storage device states.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 5e263a67d9)
4 years ago
TDE Gitea 067500c1a8 Merge translation files from master branch. 4 years ago
TDE Gitea bddc017eb1 Merge translation files from master branch. 4 years ago
Michele Calgaro 3a3199b5c7
Fixed FTBFS with gcc 4.8 when using c++11 standard.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 064d38f2c8)
4 years ago
TDE Gitea 8b015779cc Merge translation files from master branch. 4 years ago
TDE Gitea 38325bd11d Merge translation files from master branch. 4 years ago
TDE Gitea 2edd53ac26 Merge translation files from master branch. 4 years ago
Michele Calgaro b1934dda61
Added checkbox to invert mouse wheel direction in window's titlebar and frame actions.
This resolves issue TDE/tde#64.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 11a496c359)
4 years ago
Slávek Banko 7cb82d805b
kcontrol/hwmanager: Move description to the corresponding item in TDEAboutData
and added a line break to avoid unwantedly wide about dialog.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 6432d2c280)
4 years ago
Michele Calgaro f5ec04be01
Removed documentation about tdeioslave gopher, which by the way is not
in tdebase.
Documentation regarding gopher will now be provided by tdeio-gopher, if
installed.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 49297e71b0)
4 years ago