Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]


GIT HashBranchDateAuthorLog Message
a1394434 [view]master2026-04-10 19:57:40 +0300Alexander Golubev[tqt] Fix an assert violation when displaying Lao
When displaying Lao text tqt was complaining about assert violation:
ASSERT: "item >= &textEngine.items[0]" in kernel/tqrichtext.cpp (3883)
This is because for Lao script was assigned a Thai callback.
The Qt4 eventually as well removed use of Thai AttributeFunction for
Lao.[1]
[1]: https://github.com/Fat-Zer/qt4-historical/blob/7ce566a7b2496c436fd69effc566292cf577daa1/src/gui/text/qscriptengine.cpp#L5231
Signed-off-by: Alexander Golubev
ad2ccb31 [view]master2026-04-10 06:59:58 +0300Alexander Golubev[tqt] tqassistant.desktop: remove extension from Icon=
Gentoo's QA system complains about that:
tqassistant.desktop: error: (will be fatal in the future): value
"tqassistant.png" for key "Icon" in group "Desktop Entry" is an icon
name with an extension, but there should be no extension as described
in the Icon Theme Specification if the value is not an absolute path
Signed-off-by: Alexander Golubev
45adc39c [view]master2026-04-10 06:50:49 +0300Alexander Golubev[tdelibs] tdeui/kcharselect: handle mouse wheel event to change the table
Signed-off-by: Alexander Golubev
e719c2ef [view]master2026-04-10 06:00:43 +0300Alexander Golubev[tdelibs] tdeui/kcharselect: remove binary compat functions
Signed-off-by: Alexander Golubev
58894fe3 [view]master2026-04-10 05:01:10 +0300Alexander Golubev[tdelibs] tdeui/kcharselect: use TQStyleSheet::escape()
KCharSelectTableToolTip: use TQStyleSheet::escape() instead of escaping
the character manually.
Signed-off-by: Alexander Golubev
019b920a [view]master2026-04-10 04:11:30 +0300Alexander Golubev[tdelibs] tdeui/kcharselect: better event handling
KCharSelectTable: Use content/viewport*Event handlers provided by
TQScrollView instead of directly overriding basic TQWidget's event
handlers. This way we won't be off by a few pixels of frame/margin.
Also a funcional change: if mouse will be pressed/released outside of
the table the event will be ignored (i.e passed to parent) and no
signals will be sent. e.g in kcharselect program no symbol will be added
to the output field.
Signed-off-by: Alexander Golubev
6501e9b1 [view]master2026-04-09 21:55:01 +0300Alexander Golubev[tqt] Remove dangling symlink: include/qwindow.h
The symlink was left dangling after remove of the qwindow.{h,cpp} in
37164f987.
Signed-off-by: Alexander Golubev
922475a9 [view]master2026-04-09 21:49:01 +0300Alexander Golubev[tqt] q => tq rebranding: rename qt_* symbols in src/kernel (part 2/2)
All the symbols are internal and shouldn't affect API/ABI.
The rename was done with next script:
grep -horE '\ grep -v '^\(qt_pch\|qt_radio_nnn_\)$' | \
sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
With some minor manual adjustments.
Signed-off-by: Alexander Golubev
369b511f [view]master2026-04-09 00:34:53 +0300Alexander Golubev[tdelibs] tdeui/kcharselect: [refactoring] reuse common code from *goto() functions
Signed-off-by: Alexander Golubev
3700bd37 [view]master2026-04-08 22:48:09 +0300Alexander Golubev[tdelibs] tdeui/kcharselect: do not pregenerate ToolTips
Generate tooltip text dynamically when they are shown instead of
generating all 256 at the change of a page.
This will increase page change speed by ~10-20%.
Technically this commit breaks ABI by adding a missing destructor. Which
can lead to memory leak if KCharSelectTable was created on the stack.
Though it seems the class doesn't see a lot of direct use outside of
tdelibs.
Signed-off-by: Alexander Golubev
c1a7ae2c [view]master2026-04-08 19:20:03 +0300Alexander Golubev[tqt] q => tq rebranding: rename qt_* symbols in src/kernel (part 1/2)
All the symbols are internal and shouldn't affect API/ABI.
The rename was done with next script:
grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
Signed-off-by: Alexander Golubev
3d0350b6 [view]master2026-04-08 21:39:49 +0900Michele Calgaro[kvirc] Fix up broken translation that caused FTBFS with cmake
Signed-off-by: Michele Calgaro
7c83aad0 [view]master2026-04-08 14:49:41 +0300Alexander Golubev[tqt] q => tq rebranding: rename qt_* symbols mentioned in public headers
While most of thees are declaration of internal friend functions which
shouldn't break API/ABI, we shouldn't assume that they definitely don't.
In particular rename of qt_ucm_query_verification_data() may break
plugins' ABI.
The rename was done with next script:
grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
Signed-off-by: Alexander Golubev
dfb256c9 [view]master2026-04-08 08:52:44 +0200Slávek Banko[admin] Add detection for current python 3.14 and upcoming python 3.15.
Signed-off-by: Slávek Banko
92acbf1b [view]master2026-04-08 06:13:26 +0300Alexander Golubev[tde-cmake] Document tde_add_library()
Signed-off-by: Alexander Golubev
f7ab0f18 [view]master2026-04-08 03:59:53 +0300Alexander Golubev[tqt] q => tq rebranding: rename internal qt symbols from private headers
All the symbols are internal and shouldn't affect API/ABI. Some symbols
are skipped due to being mentioned also in public headers.
grep -horE '\ grep -vE 'qt_(format_text|ucm_(query_)?verification_data)' | \
sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
Signed-off-by: Alexander Golubev
1626f794 [view]master2026-04-08 03:37:43 +0300Alexander Golubev[tqt] q => tq rebranding: rename internal symbols used only on mac
All the symbols are used only on mac and are internal so they won't
affect API/ABI on X11.
The rename was done with next script:
grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! >> /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
Signed-off-by: Alexander Golubev
8f392ba2 [view]master2026-04-08 03:23:14 +0300Alexander Golubev[tqt] q => tq rebranding: rename qt_gl* symbols
Rename mentions of qt_gl* symbols. All the symbols are purely internal
and shouldn't affect neither API nor ABI.
The rename was done with next script:
grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
Signed-off-by: Alexander Golubev
53105e6c [view]master2026-04-08 00:57:04 +0300Alexander Golubev[tdelibs] kcharselect: do redraws from the event loop
This enhances interface responsiveness when there are frequent user
input interleaved with repaints of the widget and fixes an issue with
side areas being not repainted noticed in the comments to
TDE/tdelibsi#396.
This requires additional changes to tqt (see TDE/tqt#278).
See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/pulls/396#issuecomment-85309
See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tqt/pulls/278
Signed-off-by: Alexander Golubev
138fec8c [view]master2026-04-08 00:49:07 +0300Alexander Golubev[tdelibs] kcharselect: avoid redrawing if a property unchanged
This is a complementary change required for TDE/tdelibs#396.
See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/pulls/396#issuecomment-85266
Signed-off-by: Alexander Golubev
0cb22b9e [view]master2026-04-08 00:34:20 +0300Alexander Golubev[tqt] TQGridView: fix incorrect condition in paintEmptyArea()
The condition in `paintEmptyArea()` seems to be wrong as it checks
whether the `gridSize().width() >= contentsWidth()`, but
`gridSize().width()` (which is `ncols * cellw` ) should always be equal
to `contentsWidth()` (see e.g. updateGrid() which calls
`TQScrollView::resizeContents()`). As the logic goes they seem meant to
check whether there is area repainted outside the table, to speed up the
process if no empty areas are required to be repainted.
In general case the arrangement looks like this:
+---------------------------+--------+
| | |
| | |
| | |
| Table | Empty |
| +---------+--+ | <-cy
| | | | |
| | Redrawn | |
| | Area | | |
+-----------------+---------+ | | <-gridSize().height()
| | | |
| Empty +------------+ | <-cy+ch
| |
+------------------------------------+
^ ^ ^
cx | cx+cw
gridSize().width()
The `cx`,`cy`,`cw`,`ch` define the area being redrawn and `gridSize()`
is coordinates of the bottom right corner of the actual table (since the
table always starts at (0,0)). All coordinates are in the content
coordinates. Beyond the table there is empty space which is supposed to
be blanked by the function.
Now since `TQGridView::paintEmptyArea()` supposed to operate outside the
main area, i.e. beyond `gridSize().height()`/`gridSize().width()`, the
condition is: if we don't clip the area outside of the table (i.e if
both `cx+cw<=gridSize().width()` and `cy+ch<=gridSize().height()`) are
false we are just returning early since the redrawn area doesn't
intersects the empty area.
Signed-off-by: Alexander Golubev
2d93adac [view]master2026-04-06 16:51:16 +0300Alexander Golubev[tqt] q => tq rebranding: rename mentiones of qt_{win,windows,mac}
Rename mentions of qt_{win,mac}.pri and of qt_{windows,mac}.h for
consistency with current naming schema. We don't provide the files, so
no functional changes here.
The rename was done with next script:
find * -type f -exec sed -ri 's!\!t&!g' '{}' \+
Signed-off-by: Alexander Golubev
5fa57dcc [view]master2026-04-06 16:24:25 +0300Alexander Golubev[tqt] tqapplication_x11: fix -Wnonnull warnings
This replaces make-shift abort point which were resulting in SIGSEGV
with tqFatal() calls.
Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tqt/issues/275
Signed-off-by: Alexander Golubev
3822fd42 [view]master2026-04-04 18:29:30 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmbackground
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmbackground/
0ff4a9d6 [view]master2026-04-04 18:26:15 +0000Automated System[tde-i18n] Update translation template.
b56a55bf [view]master2026-04-04 20:06:51 +0300Philippe Mavridis[tdelibs] KCharSelect widget: add scrollbar
Signed-off-by: Philippe Mavridis
41516cae [view]master2026-04-04 18:22:41 +0300Alexander Golubev[tqt] q => tq rebranding: rename internal qt_ symbols from tqapplication*
Rename all functions and variables found in src/kernel/tqapplication*
files which were still started with qt_ to tqt_.
The rename was done with next script:
grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
with some minor manual tweaks afterwards.
Besides that {qt_qt_ => tqt_}scrolldone was renamed.
All those are purely internal symbols and shouldn't affect neither API
nor ABI. Those that are declared in tqapplication.h and tqwidget.h
are private variables and supposed to be used only on MacOS.
Signed-off-by: Alexander Golubev
Signed-off-by: Alexander Golubev
7e11f563 [view]master2026-04-03 23:55:07 +0000Alexander Golubev[tde-i18n] Translated using Weblate (Russian)
Currently translated at 100.0% (1428 of 1428 strings)
Translation: tdepim/korganizer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/korganizer/ru/
37164f98 [view]master2026-04-03 22:22:00 +0300Alexander Golubev[tqt] Remove unused files: qwindow.{h,cpp}
Signed-off-by: Alexander Golubev
0e2d08a0 [view]master2026-04-03 22:07:01 +0300Alexander Golubev[tqt] q => tq rebranding: rename qdnd_x11.cpp
Also fix a couple of comments that were referring to it by its older
name: qt_xdnd.cpp.
Signed-off-by: Alexander Golubev
ba143089 [view]master2026-04-03 17:21:28 +0300Alexander Golubev[tdebase] kcontrol/background: update preview on resolution change
Signed-off-by: Alexander Golubev
bc0caee7 [view]master2026-04-01 11:29:33 +0000Rolf-Werner Eilert[tde-i18n] Translated using Weblate (German)
Currently translated at 90.0% (1286 of 1428 strings)
Translation: tdepim/korganizer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/korganizer/de/
80f9bad8 [view]master2026-04-01 11:11:15 +0000Rolf-Werner Eilert[tde-i18n] Translated using Weblate (German)
Currently translated at 99.7% (2639 of 2645 strings)
Translation: tdepim/kmail
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/kmail/de/
aa77e869 [view]master2026-03-30 08:57:13 +0300Alexander Golubev[tqt] TQDesktopWidget: move check for screenCount to isVirtualDesktop()
As for now there is a problem: in case an application is running on a
xinerama-capable screen and a new monitor gets attached to it later.
TQDesktopWidget::isVirtualDesktop() keeps returning false even if we now
have a desktop composed of two monitors. This patch fixes it.
Signed-off-by: Alexander Golubev
dee3e7f4 [view]master2026-03-28 18:18:14 +0000TDE Weblate[tdeartwork] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeartwork/wallpapers - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeartwork/wallpapers-desktop-files/
08658db0 [view]master2026-03-28 18:17:43 +0000Automated System[tdeartwork] Update translation template.
fa84a124 [view]master2026-03-28 18:54:36 +0900Michele Calgaro[tdeartwork] Remove 'Flying Konqi' wallpaper.
Users have complained about the low quality of the wallpaper, which was
possibly generated using AI. There has been no answer to various requests
to the author to improve the quality of the wallpaper, so it has been
decided to remove the wallpaper completely rather than keeping the low
quality version.
Signed-off-by: Michele Calgaro
9c71a410 [view]master2026-03-27 20:37:49 +0300Alexander Golubev[tdebase] kdesktop: fix crash in KBackgroundManager
The crash in KBackgroundManager::slotCrossFadeTimeout() sporadically
appeared on monitor switching on/off. Because a pointer to mOldScreen
was used after being freed.
Since TQPixmaps are implicitly shared it's ok to make a copy of it there
isn't an additional severe cost for it.
Signed-off-by: Alexander Golubev
410f48e0 [view]master2026-03-27 20:27:03 +0300Alexander Golubev[tdebase] kdesktop: stop pending KDirListner jobs on view clear
If the KDirListner, keeps working in can result in items being added to
the list after the list gets cleared.
In practise this can result in items being listed several times after
rapid successful updates.
Signed-off-by: Alexander Golubev
e836264c [view]master2026-03-27 20:16:22 +0300Alexander Golubev[tdebase] kdesktop: fix a crash on rapid successful updates
In case there are several consequent updates of desktop (cause by e.g.
resolution changes), there could be a crash inside
slotFreeSpaceOverlayStart() cause by the fact that ItemViewItems stored
in m_paOutstandingFreeSpaceOverlays are getting deleted from the
KDIconView which invalidates the pointers. To avoid that, proactively
clean up m_paOutstandingFreeSpaceOverlays on items getting removed.
Realistically this can appear inside a virtual machine the resize of the
VM window results in several successive changes to resolution.
Signed-off-by: Alexander Golubev
77862821 [view]master2026-03-27 16:52:32 +0000Marek W[kipi-plugins] Translated using Weblate (Polish)
Currently translated at 98.7% (78 of 79 strings)
Translation: libraries/kipi-plugins - sendimages
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-sendimages/pl/
c0ad2c22 [view]master2026-03-27 14:26:06 +0300Alexander Golubev[tdebase] [minor] Some whitespace fixups
08eda871 [view]master2026-03-26 18:19:00 +0000TDE Weblate[kipi-plugins] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/kipi-plugins - sendimages
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-sendimages/
89ed3b1e [view]master2026-03-26 18:18:58 +0000TDE Weblate[kipi-plugins] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/kipi-plugins - simpleviewer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-simpleviewer/
92f3ce17 [view]master2026-03-26 18:18:57 +0000TDE Weblate[kipi-plugins] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/kipi-plugins - cdarchiving
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-cdarchiving/
4e357417 [view]master2026-03-26 18:18:55 +0000TDE Weblate[kipi-plugins] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/kipi-plugins - batchprocessimages
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-batchprocessimages/
1e46908f [view]master2026-03-26 18:18:52 +0000TDE Weblate[kipi-plugins] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/kipi-plugins - findimages
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-findimages/
ffde248c [view]master2026-03-26 18:18:50 +0000TDE Weblate[kipi-plugins] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/kipi-plugins - wallpaper
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-wallpaper/
2bab5396 [view]master2026-03-26 18:18:48 +0000TDE Weblate[kipi-plugins] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/kipi-plugins - acquireimages
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/kipi-plugins-acquireimages/
e4b2e28f [view]master2026-03-26 18:18:45 +0000TDE Weblate[libkipi] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: libraries/libkipi
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/libraries/libkipi/
a6c40d53 [view]master2026-03-26 18:18:14 +0000Automated System[kipi-plugins] Update translation template.
8da7e013 [view]master2026-03-26 18:18:14 +0000Automated System[libkipi] Update translation template.
28e3c436 [view]master2026-03-25 16:24:08 +0000Daemonratte[tork] Translated using Weblate (Turkish)
Currently translated at 17.3% (168 of 966 strings)
Translation: applications/tork
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/tr/
31189878 [view]master2026-03-25 14:33:19 +0000Daemonratte[tork] Translated using Weblate (German)
Currently translated at 97.5% (942 of 966 strings)
Translation: applications/tork
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/de/
b21b27f9 [view]master2026-03-24 13:42:37 +0000Alexander Golubev[tde-i18n] Translated using Weblate (Russian)
Currently translated at 100.0% (58 of 58 strings)
Translation: tdebase/ksmserver
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/ksmserver/ru/
cf6b37b1 [view]master2026-03-24 10:36:16 +0000Daemonratte[tqt] Translated using Weblate (German)
Currently translated at 60.2% (170 of 282 strings)
Translation: dependencies/tqt - examples-demo
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/dependencies/tqt-examples-demo/de/
26c8f36a [view]master2026-03-24 10:35:38 +0000Daemonratte[tde-i18n] Translated using Weblate (German)
Currently translated at 87.2% (41 of 47 strings)
Translation: tdetoys/kteatime
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdetoys/kteatime/de/
1d8bd653 [view]master2026-03-24 10:30:47 +0000Daemonratte[kmymoney] Translated using Weblate (German)
Currently translated at 100.0% (2674 of 2674 strings)
Translation: applications/kmymoney
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmymoney/de/
056ae27d [view]master2026-03-24 10:30:44 +0000Daemonratte[tellico] Translated using Weblate (German)
Currently translated at 100.0% (1113 of 1113 strings)
Translation: applications/tellico
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tellico/de/
58a41ebc [view]master2026-03-24 10:15:36 +0000Daemonratte[ksquirrel] Translated using Weblate (German)
Currently translated at 100.0% (517 of 517 strings)
Translation: applications/ksquirrel
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/ksquirrel/de/
ceb673bf [view]master2026-03-24 10:13:55 +0000Daemonratte[tork] Translated using Weblate (German)
Currently translated at 91.3% (882 of 966 strings)
Translation: applications/tork
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/de/
806758d2 [view]master2026-03-24 09:23:28 +0000Daemonratte[tdepacman] Translated using Weblate (German)
Currently translated at 100.0% (59 of 59 strings)
Translation: applications/tdepacman
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdepacman/de/
c22c2997 [view]master2026-03-24 09:10:59 +0000Daemonratte[klamav] Translated using Weblate (German)
Currently translated at 100.0% (11 of 11 strings)
Translation: applications/klamav - events
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/klamav-events/de/
94393fa3 [view]master2026-03-24 09:09:56 +0000Daemonratte[klamav] Translated using Weblate (German)
Currently translated at 100.0% (5 of 5 strings)
Translation: applications/klamav - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/klamav-desktop-files/de/
2274fc5b [view]master2026-03-24 09:09:28 +0000Daemonratte[klamav] Added translation using Weblate (German)
0d3e031d [view]master2026-03-24 09:09:19 +0000Daemonratte[klamav] Added translation using Weblate (German)
98c6b734 [view]master2026-03-24 09:06:47 +0000Daemonratte[kmyfirewall] Translated using Weblate (German)
Currently translated at 0.4% (4 of 889 strings)
Translation: applications/kmyfirewall
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kmyfirewall/de/
85a1b9f6 [view]master2026-03-24 08:41:48 +0000Daemonratte[klamav] Translated using Weblate (Russian)
Currently translated at 100.0% (444 of 444 strings)
Translation: applications/klamav
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/klamav/ru/
e4b07ff3 [view]master2026-03-24 12:32:32 +0900Michele Calgaro[pytde] Remove use of TDE_VERSION
Signed-off-by: Michele Calgaro
4d568a75 [view]master2026-03-24 12:32:22 +0900Michele Calgaro[libkipi] Remove use of TDE_VERSION
Signed-off-by: Michele Calgaro
88ba49ec [view]master2026-03-24 12:32:11 +0900Michele Calgaro[kipi-plugins] Remove use of TDE_VERSION
Signed-off-by: Michele Calgaro
6f1dd4c1 [view]master2026-03-23 20:23:41 +0000Marek W[soundkonverter] Translated using Weblate (Polish)
Currently translated at 99.3% (317 of 319 strings)
Translation: applications/soundkonverter
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/soundkonverter/pl/
800c13f5 [view]master2026-03-23 20:20:33 +0000Marek W[tde-i18n] Translated using Weblate (Polish)
Currently translated at 100.0% (337 of 337 strings)
Translation: tdebase/kcmlayout
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmlayout/pl/
36d4cd0b [view]master2026-03-23 20:20:20 +0000Marek W[tde-i18n] Translated using Weblate (Polish)
Currently translated at 100.0% (368 of 368 strings)
Translation: tdebase/kate
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kate/pl/
e9823d00 [view]master2026-03-23 19:22:19 +0000Daemonratte[bibletime] Translated using Weblate (German)
Currently translated at 100.0% (639 of 639 strings)
Translation: applications/bibletime
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/bibletime/de/
090741a6 [view]master2026-03-23 18:27:38 +0000Daemonratte[klamav] Translated using Weblate (German)
Currently translated at 100.0% (444 of 444 strings)
Translation: applications/klamav
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/klamav/de/
19d87f4b [view]master2026-03-23 18:21:40 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdewebdev/quanta
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/quanta/
94c5262b [view]master2026-03-23 18:21:29 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdewebdev/kimagemapeditor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdewebdev/kimagemapeditor/
08c1bb65 [view]master2026-03-23 18:21:10 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdevelop/tdevelop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdevelop/tdevelop/
f0b8b633 [view]master2026-03-23 18:20:54 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kgpg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kgpg/
2de9f77b [view]master2026-03-23 18:20:24 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/tdefilereplace
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/tdefilereplace/
b1e047ec [view]master2026-03-23 18:20:08 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/superkaramba
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/superkaramba/
25bd5010 [view]master2026-03-23 18:19:59 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/kfloppy
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/kfloppy/
32089665 [view]master2026-03-23 18:19:48 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/umbrello
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/umbrello/
7e913e53 [view]master2026-03-23 18:19:24 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdeutils/irkick
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdeutils/irkick/
c15e57bd [view]master2026-03-23 18:19:12 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/kompare
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/kompare/
f325f5cf [view]master2026-03-23 18:18:55 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdesdk/tdecachegrind
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdesdk/tdecachegrind/
525eeb2f [view]master2026-03-23 18:18:36 +0000TDE Weblate[tdexsldbg] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/tdexsldbg
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tdexsldbg/
95da13d2 [view]master2026-03-23 18:17:59 +0000Automated System[tdexsldbg] Update translation template.
8c7f7408 [view]master2026-03-23 18:17:59 +0000Automated System[tde-i18n] Update translation template.
bb66d36c [view]master2026-03-23 11:18:23 +0300Alexander Golubev[tdebase] kcontrol/background: better support for old-school multihead setups
This fixes a couple of issues on "old-school multihead" X11 setups (with
several screens per display i.e. when DISPLAY has form ":x.y" also known
as "TDE_MULTIHEAD" or "Zaphod mode"):
* fixed an issue where on primary screen wallpaper is getting rendered
for both secondary and primary on certain kdesktop configurations.
* fixed an issue on wallpaper config dialog where previews for two
monitors were displayed overlapped.
46702cd8 [view]master2026-03-23 07:29:42 +0000Daemonratte[tork] Translated using Weblate (German)
Currently translated at 88.9% (859 of 966 strings)
Translation: applications/tork
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/tork/de/
c2f28aad [view]master2026-03-23 11:59:03 +0900Michele Calgaro[tdewebdev] Remove use of TDE_VERSION
Signed-off-by: Michele Calgaro
44a61744 [view]master2026-03-23 11:58:53 +0900Michele Calgaro[tdevelop] Remove use of TDE_VERSION
Signed-off-by: Michele Calgaro
50855e76 [view]master2026-03-23 11:58:42 +0900Michele Calgaro[tdeutils] Remove use of TDE_VERSION
Signed-off-by: Michele Calgaro
a10a5a2a [view]master2026-03-23 11:58:32 +0900Michele Calgaro[tdesdk] Remove use of TDE_VERSION
Signed-off-by: Michele Calgaro
f4317326 [view]master2026-03-22 18:22:23 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kdesktop
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kdesktop/
04129869 [view]master2026-03-22 18:22:11 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcontrol
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcontrol/
17d1d1a3 [view]master2026-03-22 18:21:51 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/tdeio_trash
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/tdeio_trash/
1a2a41c0 [view]master2026-03-22 18:21:40 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdegraphics/kpovmodeler
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdegraphics/kpovmodeler/

List generated Sun May 31 23:20:03 2026
Currently showing patches 201 to 300 of 56562 [View All on Single Page]
Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]