[First Page] [Previous Page] [Next Page] [Last Page]
| GIT Hash | Branch | Date | Author | Log Message |
|---|---|---|---|---|
| 369b511f [view] | master | 2026-04-09 00:34:53 +0300 | Alexander Golubev | [tdelibs] tdeui/kcharselect: [refactoring] reuse common code from *goto() functions Signed-off-by: Alexander Golubev |
| 3700bd37 [view] | master | 2026-04-08 22:48:09 +0300 | Alexander 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] | master | 2026-04-08 19:20:03 +0300 | Alexander 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 '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| 3d0350b6 [view] | master | 2026-04-08 21:39:49 +0900 | Michele Calgaro | [kvirc] Fix up broken translation that caused FTBFS with cmake Signed-off-by: Michele Calgaro |
| 7c83aad0 [view] | master | 2026-04-08 14:49:41 +0300 | Alexander 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 '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| dfb256c9 [view] | master | 2026-04-08 08:52:44 +0200 | Slávek Banko | [admin] Add detection for current python 3.14 and upcoming python 3.15. Signed-off-by: Slávek Banko |
| 92acbf1b [view] | master | 2026-04-08 06:13:26 +0300 | Alexander Golubev | [tde-cmake] Document tde_add_library() Signed-off-by: Alexander Golubev |
| f7ab0f18 [view] | master | 2026-04-08 03:59:53 +0300 | Alexander 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 '\ 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] | master | 2026-04-08 03:37:43 +0300 | Alexander 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 '\ grep -horE '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| 8f392ba2 [view] | master | 2026-04-08 03:23:14 +0300 | Alexander 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 '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| 53105e6c [view] | master | 2026-04-08 00:57:04 +0300 | Alexander 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] | master | 2026-04-08 00:49:07 +0300 | Alexander 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] | master | 2026-04-08 00:34:20 +0300 | Alexander 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] | master | 2026-04-06 16:51:16 +0300 | Alexander 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!\ Signed-off-by: Alexander Golubev |
| 5fa57dcc [view] | master | 2026-04-06 16:24:25 +0300 | Alexander 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] | master | 2026-04-04 18:29:30 +0000 | TDE 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] | master | 2026-04-04 18:26:15 +0000 | Automated System | [tde-i18n] Update translation template. |
| b56a55bf [view] | master | 2026-04-04 20:06:51 +0300 | Philippe Mavridis | [tdelibs] KCharSelect widget: add scrollbar Signed-off-by: Philippe Mavridis |
| 41516cae [view] | master | 2026-04-04 18:22:41 +0300 | Alexander 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 '\ 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] | master | 2026-04-03 23:55:07 +0000 | Alexander 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] | master | 2026-04-03 22:22:00 +0300 | Alexander Golubev | [tqt] Remove unused files: qwindow.{h,cpp} Signed-off-by: Alexander Golubev |
| 0e2d08a0 [view] | master | 2026-04-03 22:07:01 +0300 | Alexander 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] | master | 2026-04-03 17:21:28 +0300 | Alexander Golubev | [tdebase] kcontrol/background: update preview on resolution change Signed-off-by: Alexander Golubev |
| bc0caee7 [view] | master | 2026-04-01 11:29:33 +0000 | Rolf-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] | master | 2026-04-01 11:11:15 +0000 | Rolf-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] | master | 2026-03-30 08:57:13 +0300 | Alexander 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] | master | 2026-03-28 18:18:14 +0000 | TDE 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] | master | 2026-03-28 18:17:43 +0000 | Automated System | [tdeartwork] Update translation template. |
| fa84a124 [view] | master | 2026-03-28 18:54:36 +0900 | Michele 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] | master | 2026-03-27 20:37:49 +0300 | Alexander 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] | master | 2026-03-27 20:27:03 +0300 | Alexander 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] | master | 2026-03-27 20:16:22 +0300 | Alexander 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] | master | 2026-03-27 16:52:32 +0000 | Marek 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] | master | 2026-03-27 14:26:06 +0300 | Alexander Golubev | [tdebase] [minor] Some whitespace fixups |
| 08eda871 [view] | master | 2026-03-26 18:19:00 +0000 | TDE 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] | master | 2026-03-26 18:18:58 +0000 | TDE 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] | master | 2026-03-26 18:18:57 +0000 | TDE 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] | master | 2026-03-26 18:18:55 +0000 | TDE 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] | master | 2026-03-26 18:18:52 +0000 | TDE 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] | master | 2026-03-26 18:18:50 +0000 | TDE 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] | master | 2026-03-26 18:18:48 +0000 | TDE 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] | master | 2026-03-26 18:18:45 +0000 | TDE 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] | master | 2026-03-26 18:18:14 +0000 | Automated System | [kipi-plugins] Update translation template. |
| 8da7e013 [view] | master | 2026-03-26 18:18:14 +0000 | Automated System | [libkipi] Update translation template. |
| 28e3c436 [view] | master | 2026-03-25 16:24:08 +0000 | Daemonratte | [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] | master | 2026-03-25 14:33:19 +0000 | Daemonratte | [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] | master | 2026-03-24 13:42:37 +0000 | Alexander 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] | master | 2026-03-24 10:36:16 +0000 | Daemonratte | [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] | master | 2026-03-24 10:35:38 +0000 | Daemonratte | [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] | master | 2026-03-24 10:30:47 +0000 | Daemonratte | [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/ |
[First Page] [Previous Page] [Next Page] [Last Page]
© 2010-2026 Trinity Desktop Project