10034 Commits

Author SHA1 Message Date
l10n daemon script
bd6dd47e0d GIT_SILENT Sync po/docbooks with svn 2025-04-04 01:47:34 +00:00
l10n daemon script
c91af03c44 GIT_SILENT Sync po/docbooks with svn 2025-03-26 01:42:25 +00:00
l10n daemon script
1cf9a51988 GIT_SILENT Sync po/docbooks with svn 2025-03-21 01:46:16 +00:00
l10n daemon script
7e8312a5a2 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2025-03-21 01:32:08 +00:00
l10n daemon script
a1b19ceefb GIT_SILENT Sync po/docbooks with svn 2025-03-17 01:39:39 +00:00
owan wang
3c2f1bec91 feat(TerminalDisplay): Copy to X11 selection immediately on mouse release 2025-03-12 07:37:55 +08:00
l10n daemon script
bd5ed3d424 GIT_SILENT Sync po/docbooks with svn 2025-03-11 01:43:20 +00:00
l10n daemon script
c566b98302 GIT_SILENT Sync po/docbooks with svn 2025-03-10 01:49:21 +00:00
Johannes Altmanninger
41a7bd8673 Vt102: don't interpret private mode CSI < as ECMA-48 command
We treat

    printf '\033[u'
    printf '\033[<u'

the same way; both reset the cursor position but only the first
(DECRC) should.

ECMA-48 CSI commands whose first parameter byte is one of "<=>?",
are "private" commands reserved for other protocols.  Specifically,
the kitty keyboard protocol defines the above sequence (CSI < u).

We already ignore private-mode commands starting with "=>?"
(except for those we already recognize).

We don't recognize any CSI command starting with "<".  As a result
we accidentally treat CSI < u as a non-private sequence.
2025-03-09 13:42:51 +00:00
Albert Astals Cid
8ab289866a GIT_SILENT Upgrade release service version to 25.07.70. 2025-03-08 18:55:55 +01:00
l10n daemon script
a29c7998fb GIT_SILENT Sync po/docbooks with svn 2025-03-08 01:49:49 +00:00
Jonathan Marten
58d5c687fb Fix crash when double clicking on terminal scroll bar
Only one QPainter can be active at a time, and QScrollBar's paint event
will use its own internally.  So call the base class before doing any of
our own painting.  As a side effect, this means that the search markers
(originally painted first) are not overwritten by the main scroll bar,
and both those and position markers are shown.

BUG:501191
2025-03-07 19:15:18 +00:00
l10n daemon script
649d41ccb2 GIT_SILENT Sync po/docbooks with svn 2025-03-07 01:44:58 +00:00
Kurt Hindenburg
64e070c6df Remove unused code
There's no where that this code is used and it adds complexity to the
decodeLine method in PlainTextDecoder.  Also note that the removing
leading spaces didn't work.
2025-03-06 20:40:07 +00:00
l10n daemon script
dc598f21fd GIT_SILENT Sync po/docbooks with svn 2025-03-06 01:45:37 +00:00
l10n daemon script
4af81292fd GIT_SILENT Sync po/docbooks with svn 2025-03-05 02:08:00 +00:00
l10n daemon script
9bcfa6a148 GIT_SILENT Sync po/docbooks with svn 2025-03-04 01:42:15 +00:00
Kurt Hindenburg
bd7655dc22 Comment out code unused after 21be95c1 2025-03-03 09:12:58 -05:00
lzwind lzwind
70452321ce Return early when SSH config file cannot be opened
When attempting to import SSH configurations, the code previously continued
execution even when the config file could not be opened. This could lead
to undefined behavior or crashes when trying to read from an invalid file
handle.

The fix adds an early return statement when file opening fails, ensuring
proper error handling and preventing potential issues downstream.
2025-03-03 13:21:37 +00:00
l10n daemon script
7f3739e023 GIT_SILENT Sync po/docbooks with svn 2025-03-03 01:44:03 +00:00
lzwind lzwind
11ec321de8 Correct CSS property for underline style
Change 'font-decoration' to 'text-decoration' in HTMLDecoder.cpp.
'font-decoration' is not a valid CSS property, while 'text-decoration'
is the correct property for adding underline to text.
2025-03-01 23:31:55 +00:00
Kurt Hindenburg
e62050b035 Correct funcArgNamesDifferent 2025-03-01 14:34:17 -05:00
Kurt Hindenburg
84afe7d8d4 Fix comment spelling errors 2025-03-01 14:07:52 -05:00
Kurt Hindenburg
21be95c10b Bypass unstable test that often fails on multiple CIs 2025-03-01 13:56:08 -05:00
Kurt Hindenburg
beef0f0b9e Fix shorten-64-to-32 2025-03-01 18:34:53 +00:00
Kurt Hindenburg
5a3a2e1c70 Fix qlatin1stringchar-to-u 2025-03-01 18:34:53 +00:00
Christoph Cullmann
4182090d00 be compatible with Qt 6.7
don't use QAnyStringView
not important here for speed anyways
2025-03-01 17:25:00 +01:00
l10n daemon script
49753f69a4 GIT_SILENT Sync po/docbooks with svn 2025-03-01 01:52:43 +00:00
l10n daemon script
c14bff5361 GIT_SILENT made messages (after extraction) 2025-03-01 00:54:34 +00:00
Christoph Cullmann
c7e02ed876 port to QStringDecoder/Encoder 2025-02-27 20:31:47 +00:00
Heiko Becker
b2f0dc4903 GIT_SILENT Update Appstream for new release
(cherry picked from commit 345ebaffbe)
2025-02-27 20:56:18 +01:00
l10n daemon script
2cffa50e12 GIT_SILENT Sync po/docbooks with svn 2025-02-26 01:41:54 +00:00
l10n daemon script
dc93ba3fa5 GIT_SILENT Sync po/docbooks with svn 2025-02-25 01:40:47 +00:00
Kurt Hindenburg
46158f3e02 Remove used HTMLDecoder code
Since d7706fab, none of these are used any longer.
2025-02-24 11:55:51 +00:00
Kurt Hindenburg
5b0fe40730 Call setHandleWidth() to set initial size for splitDragHandleSize
There was only a connect on change, no initial setting.

BUG: 498078
2025-02-24 10:54:05 +00:00
l10n daemon script
ca5461dc20 GIT_SILENT Sync po/docbooks with svn 2025-02-24 10:31:53 +00:00
l10n daemon script
4dcf4d82f1 GIT_SILENT Sync po/docbooks with svn 2025-02-24 01:40:25 +00:00
l10n daemon script
062205623f GIT_SILENT Sync po/docbooks with svn 2025-02-23 01:37:56 +00:00
l10n daemon script
d33c1436e4 GIT_SILENT Sync po/docbooks with svn 2025-02-22 01:39:35 +00:00
Juriën Huisman
ca51c19ad8 'Allow escape sequences for links' setting fix in new sessions
The setting 'Allow escape sequences for links' is not applied to new
tabs and instances of Konsole. This is confusing when a user sets the
setting to enabled/allow. It only works after applying a profile, so
after changing the setting and applying the changes it works for the
current tab, but not for any new tabs or Konsole windows.

BUG: 469511
2025-02-21 20:04:01 +00:00
l10n daemon script
2cb10e120f GIT_SILENT Sync po/docbooks with svn 2025-02-21 01:39:43 +00:00
Ujjwal Shekhawat
e389807d55 Implement scrollbar highlighting for search results
This PR introduces a feature to highlight the position of search results on the scrollbar, similar to how search results are highlighted in browsers like Google Chrome, editors like VSCode. The aim is to provide users with a visual indicator on the scrollbar, helping them quickly navigate through the results. 

FEATURE: 302284
2025-02-20 01:14:40 +00:00
l10n daemon script
3a8b88b430 GIT_SILENT Sync po/docbooks with svn 2025-02-19 01:42:33 +00:00
l10n daemon script
6c74f2b25e GIT_SILENT Sync po/docbooks with svn 2025-02-18 01:41:46 +00:00
Blaise Duszynski
ab751a3b16 Add HamburgerMenu only once per instance
A new HamburgerMenu is added to the context menu each time it is opened
which causes a delay after enough invocations.  Skip adding another if
one has already been added.

BUG: 495029
2025-02-17 23:26:13 +00:00
l10n daemon script
33c026e2bb GIT_SILENT Sync po/docbooks with svn 2025-02-15 01:59:45 +00:00
l10n daemon script
5386a0e59d GIT_SILENT Sync po/docbooks with svn 2025-02-13 01:50:03 +00:00
Albert Astals Cid
71699c000d CI: Add linux-qt6-next build 2025-02-12 09:32:17 +01:00
l10n daemon script
5be8ab4d22 GIT_SILENT Sync po/docbooks with svn 2025-02-11 01:46:01 +00:00
Waqar Ahmed
923c40eab3 Check lastColonPos is valid before using it 2025-02-08 11:23:45 +05:00