Difference between revisions of "Changelog For R14.1.3"

From Trinity Desktop Project Wiki
Jump to navigation Jump to search
(Initial version)
 
(Update 20241025)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
= common =
 
= common =
 
== admin ==
 
== admin ==
  +
* [https://git.trinitydesktop.org/cgit/admin/commit/?id=afaec96a [afaec96a]] Fix FTBFS with Python 3.13.<br/>This solves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tde-common-admin/issues/33 #33]
  +
* [https://git.trinitydesktop.org/cgit/admin/commit/?id=6fa5fdb7 [6fa5fdb7]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/admin/commit/?id=d2186b1a [d2186b1a]] am_edit: Cover all wizard include variants and class name in one regexp.
  +
* [https://git.trinitydesktop.org/cgit/admin/commit/?id=3c9e11e1 [3c9e11e1]] Rename kdemacros.h to tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/admin/commit/?id=36c8888e [36c8888e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/admin/commit/?id=36c8888e [36c8888e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
= dependencies =
 
= dependencies =
 
== tde-cmake ==
 
== tde-cmake ==
  +
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=b7e33800 [b7e33800]] Update version to R14.1.3.
  +
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=2f37ffcc [2f37ffcc]] tde_create_translated_desktop: Fix processing of files with spaces in name.
  +
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=5283559e [5283559e]] tde_import: Always do 'include' because macro can be called in a scope that is not global.
  +
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=5e1ef63e [5e1ef63e]] Remove __KDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=713b969b [713b969b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY. Temporarily __KDE_HAVE_GCC_VISIBILITY is still provided, till renaming on all TDE code base is completed.
  +
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=03a1c2f4 [03a1c2f4]] tde_uic: Cover all wizard include variants and class name in one regexp.
  +
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=f1352532 [f1352532]] Rename kdemacros.h to tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=68452c7f [68452c7f]] tde_import: Reducing the noise, more common listing of the result.
 
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=68452c7f [68452c7f]] tde_import: Reducing the noise, more common listing of the result.
 
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=d9c41557 [d9c41557]] Add support for relative paths in '_tde_internal_setup_path'
 
* [https://git.trinitydesktop.org/cgit/tde-cmake/commit/?id=d9c41557 [d9c41557]] Add support for relative paths in '_tde_internal_setup_path'
Line 11: Line 22:
   
 
== tqt3 ==
 
== tqt3 ==
  +
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=0752cff4 [0752cff4]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=c9932b7c [c9932b7c]] Make sure to release thread resources back to the OS once the thread completes.<br/>Threads created with pthread are created in detach mode. Threads created using glib thread functions are instead created as joinable. The fix makes glib-created threads detached, so that the thread resources are released when the thread completes.<br/>This resolves [https://mirror.git.trinitydesktop.org/gitea/TDE/amarok/issues/30 TDE/amarok#30] and will benefit any place where a TQThread is used.<br/>Manually cherry-picked from commit 81288cfc.
  +
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=24032974 [24032974]] Fix fallover case for TQEvent::MetaCall<br/>Manually cherry-picked from commit 24b42848.
  +
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=b6eef6a4 [b6eef6a4]] Fix possible SEGV if the sender object list was null and thread support enabled<br/>Commit manually cherry-picked from 8e653076.
  +
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=08ac5cce [08ac5cce]] Improve handling of the global post event list in order to minimize possible crashes on exit.<br/>Key points:<br/>1. a TQPostEventList can now have an associated mutex, which is used in case of the global post event list (GPEL)<br/>2. the lifetime of the GPEL is no longer associated to the lifetime of the TQApplication object, but rather extended to the lifetime of the main thread. The GPEL is a static local initialized on first access and destroyed when the global static object destructor is invoked<br/>3. access to the GPEL after the TQApplication object has been destroyed has been minimized by protecting calls in &#126;TQObject() and &#126;TQWidget().<br/>4. special care was taken not to affect performances or unnecessarily create tons of unused TQMutexes<br/>This replaces PR #182. Technically it is still possibly unsafe due to the order of destruction of the globat static objects not being guaranteed across multiple compilation units, but the aforementioned changes should minimize (possible to zero) the chances of a SEGV happening.
  +
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=09d080c0 [09d080c0]] Added check for tqApp pointer in TQWidget destructor<br/>Necessary for the application to shut down properly
  +
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=e06dfea3 [e06dfea3]] Fix OpenType language definition tags and array access. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3/issues/171 #171]
 
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=b634a4f6 [b634a4f6]] Fix a missing `if` clause guard<br/>It was mismatched with indents and sibling `if` clause cases.
 
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=b634a4f6 [b634a4f6]] Fix a missing `if` clause guard<br/>It was mismatched with indents and sibling `if` clause cases.
 
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=cd45e22a [cd45e22a]] Fix to compare thread_id with `pthread_equal()`<br/>`pthread_t` is an opaque type, should not be compared with `==`.
 
* [https://git.trinitydesktop.org/cgit/tqt3/commit/?id=cd45e22a [cd45e22a]] Fix to compare thread_id with `pthread_equal()`<br/>`pthread_t` is an opaque type, should not be compared with `==`.
Line 17: Line 35:
   
 
== tqtinterface ==
 
== tqtinterface ==
  +
* [https://git.trinitydesktop.org/cgit/tqtinterface/commit/?id=1e47a121 [1e47a121]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tqtinterface/commit/?id=d4f8267e [d4f8267e]] Remove unnecessary files and processing when building libtqt.so.
 
* [https://git.trinitydesktop.org/cgit/tqtinterface/commit/?id=d4f8267e [d4f8267e]] Remove unnecessary files and processing when building libtqt.so.
  +
  +
== akode ==
  +
* [https://git.trinitydesktop.org/cgit/akode/commit/?id=400687a3 [400687a3]] Fix version check for akode_write and ffmpeg 7.x.
  +
* [https://git.trinitydesktop.org/cgit/akode/commit/?id=a4d07cf6 [a4d07cf6]] Fix compatibility with ffmpeg 7.x
  +
* [https://git.trinitydesktop.org/cgit/akode/commit/?id=88d21b1b [88d21b1b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== arts ==
  +
* [https://git.trinitydesktop.org/cgit/arts/commit/?id=0f72e47c [0f72e47c]] Improve fatal error messages
  +
* [https://git.trinitydesktop.org/cgit/arts/commit/?id=30779eb2 [30779eb2]] Fix incorrect command name
  +
* [https://git.trinitydesktop.org/cgit/arts/commit/?id=999d426c [999d426c]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/arts/commit/?id=7f3dda33 [7f3dda33]] Rename thread mutex related debug flag name<br/>It is used to detect multiple mutex lock, not just for pthread related<br/>debugging.
  +
* [https://git.trinitydesktop.org/cgit/arts/commit/?id=75cb448c [75cb448c]] Fix usage of `pthread_t`<br/>`pthread_t` is opaque type.<br/>Change to compare with `pthread_equal()` and introduce validate flag.
  +
* [https://git.trinitydesktop.org/cgit/arts/commit/?id=210a7151 [210a7151]] fix to use AudioIOSun on Solaris and NetBSD<br/>`USE_SOLARIS` is not defined (related to [https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/74 TDE/tde#74]).<br/>On NetBSD, native audio system audioio(4) i.e. sunaudio is preferred.
  +
  +
== avahi-tqt ==
  +
* [https://git.trinitydesktop.org/cgit/avahi-tqt/commit/?id=cb6ab292 [cb6ab292]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== dbus-1-tqt ==
  +
* [https://git.trinitydesktop.org/cgit/dbus-1-tqt/commit/?id=d6a1bf8c [d6a1bf8c]] Use tq* headers instead of ntq*
  +
  +
== libart-lgpl ==
  +
* [https://git.trinitydesktop.org/cgit/libart-lgpl/commit/?id=52ecb65b [52ecb65b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== libcaldav ==
  +
* [https://git.trinitydesktop.org/cgit/libcaldav/commit/?id=023b3918 [023b3918]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== libcarddav ==
  +
* [https://git.trinitydesktop.org/cgit/libcarddav/commit/?id=a3d434ae [a3d434ae]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== sip4-tqt ==
  +
* [https://git.trinitydesktop.org/cgit/sip4-tqt/commit/?id=fa5e4646 [fa5e4646]] Fix FTBFS with Python 3.13.<br/>This solves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/sip4-tqt/issues/26 #26]
  +
* [https://git.trinitydesktop.org/cgit/sip4-tqt/commit/?id=7f3c0748 [7f3c0748]] Added prototype of yylex() function<br/>Required for building with the new gcc-14
  +
  +
== tqscintilla ==
  +
* [https://git.trinitydesktop.org/cgit/tqscintilla/commit/?id=2116474a [2116474a]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== pytqt ==
 
== pytqt ==
  +
* [https://git.trinitydesktop.org/cgit/pytqt/commit/?id=5afb6e8e [5afb6e8e]] Fix FTBFS with Python 3.13.<br/>This solves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/pytqt/issues/32 #32]
 
* [https://git.trinitydesktop.org/cgit/pytqt/commit/?id=03a1fe47 [03a1fe47]] Fix example translations for pytqt
 
* [https://git.trinitydesktop.org/cgit/pytqt/commit/?id=03a1fe47 [03a1fe47]] Fix example translations for pytqt
 
* [https://git.trinitydesktop.org/cgit/pytqt/commit/?id=3dec37ec [3dec37ec]] Changing string types to bytes for pytquic<br/>For python3 you need to explicitly specify the bytes type, it is different from strings
 
* [https://git.trinitydesktop.org/cgit/pytqt/commit/?id=3dec37ec [3dec37ec]] Changing string types to bytes for pytquic<br/>For python3 you need to explicitly specify the bytes type, it is different from strings
  +
  +
== tqca ==
  +
* [https://git.trinitydesktop.org/cgit/tqca/commit/?id=33b8372a [33b8372a]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tqca/commit/?id=efc46edc [efc46edc]] Use `pkg_get_variable` to retrieve the value of pkg-config variable<br/>It is a new feature in CMake version 3.4, CMake-3.5 is required for<br/>TDE now.
   
 
= core =
 
= core =
 
== tdelibs ==
 
== tdelibs ==
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=98cd2f96 [98cd2f96]] Update version to R14.1.3.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=ab167e15 [ab167e15]] Fix syntax error when using tqmoc on tdestoragedevice.h<br/>TDE now requires c++11, so the conditional code is no longer required.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=3d8df21c [3d8df21c]] tdeio - scheduler: Fix crash if the job or slave are not valid.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=e711642d [e711642d]] Add kascii* methods previously part of tdepim/libemailfunctions
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=f9615ed5 [f9615ed5]] Kate: update rust syntax to highlight alerts and todo.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=c5c7697c [c5c7697c]] Improve JasPer 3/4 support<br/>Versions prior to 3 registered an atexit hander which performed resource<br/>cleanup with 'jas_cleanup', this was removed in version 3 meaning we<br/>were leaking resources.<br/>The 'jas_init' and 'jas_cleanup' functions were deprecated in version 3,<br/>so we use the newer jas_init_library/jas_init_thread functions.<br/>The max memory that JasPer can use has been limited to (at most) 512 MB.<br/>Without this change, JasPer will use whatever JAS_DEFAULT_MAX_MEM_USAGE<br/>is configured to, which is 1 GB by default.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=4ba00075 [4ba00075]] Fix FTBFS introduced by PR #302<br/>LibTIFF versions 4.2.0 and older used custom integer types, causing<br/>distributions with those versions to fail when building.<br/>In 4.3.0 and newer, the 'uint16' and 'uint32' types are deprecated,<br/>so this removes the deprecation warnings and keeps compatibility with<br/>any versions of LibTIFF where uint16 and uint32 did not equal their<br/>stdint.h counterparts.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=e2732d38 [e2732d38]] kimgio: Support TIFF transparency<br/>See: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/issues/282
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=269661fa [269661fa]] kjs - pcre: Fix crash if regexp is invalid.<br/>If the regular expression is invalid and pcre2_compile ends with error,<br/>match_data will remain uninitialized, which in turn leads to crash on<br/>pcre2_match_data_free in RegExp destructor.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=e034c819 [e034c819]] Fix TDECModuleInfo::needsTest() returning always false<br/>Properties such as this first make a call to the protected loadAll() method if the modules desktop files<br/>have not been processed yet, but such a call was for some reason missing from the needsTest() function,<br/>resulting in the method always returning false unless another function called loadAll() first.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=9be6785a [9be6785a]] tqtglobaldefines.h only contains comments, so it is an unnecessary inclusion
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=a1b7068d [a1b7068d]] Fix display of icon for filenames with multiple dots in the icon dialog window.<br/>This patch has been adapted from the equivalent patch in the Suse's KDE3 repositories created by Yasuhiko Kamata.<br/>https://build.opensuse.org/projects/KDE:KDE3/packages/kdelibs3/files/kdelibs-multiple-dot-iconfile.patch
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=cc8ddafa [cc8ddafa]] Check KDE start condition if TDE start condition was not found. This refers to issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/issues/283 #283]
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=3ccc8ad9 [3ccc8ad9]] kjs: use libpcre2 instead of libpcre
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=8b5a4521 [8b5a4521]] Explicitly skip KDE xdg autostart files. This relates to issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/issues/283 #283]
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=20badf14 [20badf14]] Improve and fix autostart support for KDE programs. This relates to issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/issues/283 #283]
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=66028a61 [66028a61]] Remove __KDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=34e58a5f [34e58a5f]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY. Temporarily __KDE_HAVE_GCC_VISIBILITY is still provided, till renaming on all TDE code base is completed.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=a4a424a3 [a4a424a3]] Remove dummy kdemacros.h file
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=41737353 [41737353]] Rename kdemacros.* files to tdemacros.*<br/>A dummy 'kdemacros.h' has been added to allow TDE to built till renaming is carried out across the whole code base. It will then be removed.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=69ec8f3e [69ec8f3e]] Use tq* headers instead of ntq* ones
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=89b880a0 [89b880a0]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=46838919 [46838919]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=767dff65 [767dff65]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=750384b9 [750384b9]] KDirOperator: add support for history navigation mouse buttons
 
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=750384b9 [750384b9]] KDirOperator: add support for history navigation mouse buttons
 
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=07dfb84a [07dfb84a]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdelibs/commit/?id=07dfb84a [07dfb84a]] Merge translation files from master branch.
Line 47: Line 130:
   
 
== tdebase ==
 
== tdebase ==
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=04b48a89 [04b48a89]] Update R14.1.3 release notes to final version
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=b61f27f7 [b61f27f7]] ksmserver: Fix FTBFS when building without tdehw library.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=524eb4d5 [524eb4d5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=e2b5f424 [e2b5f424]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=be5424c4 [be5424c4]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=0515333d [0515333d]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=42cc199f [42cc199f]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=82ec9916 [82ec9916]] TDESynDaemon: prevent more than one instance from running at the same time
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=eac0d870 [eac0d870]] KControl: Add option to toggle visibility of hidden modules
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=10675b72 [10675b72]] khotkeys: make sure the kded service is controlled only by the Service Manager in TCC.<br/>Also make sure any changes to Input Action is immediately notified to<br/>the kded service.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/537 #537]<br/>1. Fix kded service startup settings.<br/>In TCC --&gt; Regional & Accessibility --&gt; Input Actions --&gt; General<br/>Settings tab, there was a checkbox to "disable the daemon". This was<br/>either quitting or relaunching khotkeys as a standalone application,<br/>overlapping any choice set in the TCC -&gt; TDE Components --&gt; Service<br/>Manager page.<br/>khotkeys is now launched as a kded service, therefore the aforemention<br/>checkbox is no longer required. If a user choose to manually launch<br/>khotkeys as a standalone application, they can disable it by simply<br/>terminating the application (either by killing it or quitting through<br/>DCOP).<br/>2. Notify Input Actions changes to the kded service<br/>If Input Actions are changed, the changes will be notified to either the<br/>kded service or the standalone khotkeys application, depending on which<br/>of the two is running.<br/>3. the kcm_khotkeys_init library has been removed since it is no longer<br/> necessary.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=1a8369c8 [1a8369c8]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=4123f156 [4123f156]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=6b615f8a [6b615f8a]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=ba58d6ad [ba58d6ad]] Various fixes for khotkeys. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/326 #326]<br/>1. ensure there is a single khotkeys instance running per session<br/> instead of per screen (remote multihead related code)<br/>2. allow khotkeys to be run as a kded module<br/>3. make sure that khotkeys run either as a standalone application or as<br/> a kded module, but not both at the same time<br/>4. do not register khotkeys as a main DCOP entry (like an app) anymore.<br/> When run as kded module, this was causing kded to be registered as<br/> khotkeys a second time.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=77134aea [77134aea]] KControl: Fix test function of Joystick module
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=a05ee7f7 [a05ee7f7]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=03e50a17 [03e50a17]] kcontrol touchpad: rename syndaemon to tdesyndaemon
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=5dcbaf6b [5dcbaf6b]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=d9f73a1e [d9f73a1e]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=2af9d1ed [2af9d1ed]] KControl: add touchpad configuration module<br/>Supports the Libinput and Synaptics drivers, includes documentation and inpupt-touchpad icon.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=63178a88 [63178a88]] KControl: implement dynamic module tests<br/>Since KDE 3.4 there is underlying support for dynamically determining whether a module should<br/>be loaded or not, depending on an exported test function which would return a boolean value<br/>depending on the success of one or more tests (e.g. for presence of specific hardware).<br/>This approach is documented but has so far not been implemented by the TDE Control Centre.<br/>This commit adds a check to the TCC which performs the test function if needed (that is, if<br/>the X-TDE-Test-Module property is true) and, if it returns false, prevents showing the<br/>module in the tree list, which is the intended behaviour of the test function feature.<br/>For more information see:<br/>https://wiki.trinitydesktop.org/index.php?title=TDEConfig_Module_HOWTO&oldid=1893#Making_a_KCModule_dynamically_available
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=0046b760 [0046b760]] Klipper: Use translations from klipper-desktops for Copy Full Path action for Konqueror.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=d7760242 [d7760242]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=61e633f5 [61e633f5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=2e3c7151 [2e3c7151]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=c0203e4c [c0203e4c]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=6659eb22 [6659eb22]] Klipper: add Copy Full Path action for Konqueror
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=51fdc21a [51fdc21a]] twin compton: use libpcre2 instead of libpcre
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=e2ed0707 [e2ed0707]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=d888793f [d888793f]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=f5cd123b [f5cd123b]] Fix tiling menu functionality when windows in the taskbar are grouped
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=c57ea5f2 [c57ea5f2]] TWin, Kicker: Add icons for tiling menus
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=72fce97c [72fce97c]] Add support for window tiling to the taskbar and window's popup menus. This relates to [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/349 TDE/tdebase#349]
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=673e48af [673e48af]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=147f7ffc [147f7ffc]] Improve settings for some sliders related to keyboard, accessibility and style. This also solves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/513 #513]
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=5bb53d86 [5bb53d86]] Use server icon for remote folders<br/>This icon is more accurate than the more generic applications-internet.<br/>Includes a tdeconf_update script.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=0657fdb9 [0657fdb9]] KNetAttach: Added SFTP connection type
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=4f090708 [4f090708]] Remote protocol: add UDS_LOCAL_PATH atom to remote folders<br/>This change makes it possible for network folders in Remote Places to be moved to and restored from the Trash folder.<br/>Before this change, such folders could only be removed via deletion (shift+delete) and could not be restored afterwards.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=d0616cdd [d0616cdd]] kcmkeys: update keyboard shortcut schemes<br/>- Add actions related to keys XF86Sleep (Suspend) and XF86ScreenSaver (Lock Session)<br/>- Fix name of "Log Out" actions
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=4371e3c9 [4371e3c9]] KSMServer: reload power-managerrc settings every time before they are needed
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=eb1c3eed [eb1c3eed]] Add support for assigning global shortcuts for suspend actions<br/>The corresponding shortcuts have been added as part of the KDesktop shortucts, to complement similar options (logout, shutdown, reboot).<br/>The shortcuts are only shown for the options that KSMServer reports via DCOP as valid.<br/>In order to do be able to make a DCOP call from kdesktopbindings.cpp, the &lt;dcopref.h&gt; include had to be added to several files of the shortcuts TDECM.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=db3f842c [db3f842c]] KSMServer: improve suspend code<br/>1. Some code deduplication. Suspending is now handled via the public method `suspend(int)` which is DCOP-accessible and maps SuspendType values to corresponding TDEHWLib TDESystemPowerState values, and the internal method `suspendInternal(int)` which performs the chosen suspend and optionally locks the screen beforehand.<br/>2. Options are now read from power-managerrc on startup and stored in memory to avoid reading the configuration file every time a suspend is requested.<br/>3. SuspendType is now a member of KSMServer class (instead of KSMShutdownDlg)<br/>4. A new DCOP-accessible method `suspendOptions()` returns a TQStringList of all available suspend options.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=18d7e664 [18d7e664]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=a857609d [a857609d]] Improve location of kate and kwrite desktop files. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/327 #327]
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=9a7df655 [9a7df655]] konsole: fix column width calculation for string<br/>TQString accessor is 0-based.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=b97477fa [b97477fa]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=1765b8f0 [1765b8f0]] Replace kdemacros.h with tdemacros.h
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=99917282 [99917282]] Fix for building tdm with gcc-14<br/>Solution to issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/505 #505]
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=b43cb9bf [b43cb9bf]] Use tq* headers instead of ntq* ones
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=97383ddf [97383ddf]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=acf31aed [acf31aed]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=e72d76b3 [e72d76b3]] konqueror: Update URL of TQt Reference Documentation
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=e445759a [e445759a]] konqueror: Update URL of Trinity API Reference
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=985353c7 [985353c7]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=0fc217ed [0fc217ed]] Mouse TDECM: do not hide checkboxes in case of option unavailability
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=10732c77 [10732c77]] Mouse TDECM: Improve wording for whatsThis options<br/>Affected options are "Reverse scroll direction" and "Swap history navigation buttons"
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=fb0f60cc [fb0f60cc]] Mouse TDECM: add option to swap history navigation buttons<br/>This leverages the existing code that interacts with X11 and sets the setting system-wide, as happens already with scroll direction reversal.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/497 #497]
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=1a7d33af [1a7d33af]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=d2c1284e [d2c1284e]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=104fd81e [104fd81e]] Fix khotkeys autostart unnecessary feedback. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/495 #495]
 
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=3b75bf0a [3b75bf0a]] Kate: use paths for local files instead of file:/// URLs.
 
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=3b75bf0a [3b75bf0a]] Kate: use paths for local files instead of file:/// URLs.
 
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=9fe2bb32 [9fe2bb32]] Kate: display file type icon and tooltip in viewspace
 
* [https://git.trinitydesktop.org/cgit/tdebase/commit/?id=9fe2bb32 [9fe2bb32]] Kate: display file type icon and tooltip in viewspace
Line 67: Line 210:
   
 
== tdepim ==
 
== tdepim ==
  +
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=30de6cff [30de6cff]] libemailfunctions: move kAscii* functions to tdelibs
  +
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=94890b77 [94890b77]] Remove unused code
  +
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=928ea3c2 [928ea3c2]] KAddressBook: Fix import encoding for vCard v4.
  +
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=04db7b27 [04db7b27]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=9c3116fd [9c3116fd]] Replace KDE_TQ_EXPORT_PLUGIN with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=9c3116fd [9c3116fd]] Replace KDE_TQ_EXPORT_PLUGIN with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=47025f3e [47025f3e]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdepim/commit/?id=47025f3e [47025f3e]] Replace KDE_DEPRECATED with TDE_DEPRECATED
Line 74: Line 221:
   
 
== tdemultimedia ==
 
== tdemultimedia ==
  +
* [https://git.trinitydesktop.org/cgit/tdemultimedia/commit/?id=dafa15cc [dafa15cc]] Fix FTBFS when xinelib &lt;= 1.2.9<br/>Resolves: https://mirror.git.trinitydesktop.org/gitea/TDE/tdemultimedia/issues/83
  +
* [https://git.trinitydesktop.org/cgit/tdemultimedia/commit/?id=0fb5d8ad [0fb5d8ad]] Fix mime type registration for FLAC with taglib&gt;=2<br/>The TAGLIB_*_VERSION macros are not (and never have been) defined in<br/>tag.h, however, tag.h used to include tstring.h, which included taglib.h<br/>[0].<br/>KFlacPlugin doesn't use the 'name' argument in it's constructor so it<br/>can support earlier versions of taglib (&lt; 1.2), instead, it registers<br/>the mime type info for both 'audio/x-flac' and 'audio/x-oggflac' when it<br/>is first loaded. However, since 'audio/x-oggflac' was never being<br/>registered (because TAGLIB_1_2 wasn't defined), when KRenamer attempted<br/>to get the mime type info for 'audio/x-oggflac', the call failed and<br/>it's 'keys' member was never altered, causing the additional 'flac' to<br/>be appended [1].<br/>[0]: https://github.com/taglib/taglib/commit/a08acdcf23c5d4ac4cb795f5edfdc539055138b7#diff-83ce8ae463020e723895af7e50380bc507f358a2d56313767d5305a759bb9f02<br/>[1]: https://mirror.git.trinitydesktop.org/gitea/TDE/krename/src/branch/r14.1.x/krename/fileplugin.cpp#L46-L98<br/>Fixes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdemultimedia/issues/77
  +
* [https://git.trinitydesktop.org/cgit/tdemultimedia/commit/?id=c23bd5af [c23bd5af]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdemultimedia/commit/?id=079c37d1 [079c37d1]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdemultimedia/commit/?id=079c37d1 [079c37d1]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdenetwork ==
 
== tdenetwork ==
  +
* [https://git.trinitydesktop.org/cgit/tdenetwork/commit/?id=1f9edc59 [1f9edc59]] ksirc: Use Getopt::Std instead of deprecated getopts.pl library.
  +
* [https://git.trinitydesktop.org/cgit/tdenetwork/commit/?id=68b14f31 [68b14f31]] Replace kdemacros.h with tdemacros.h
  +
* [https://git.trinitydesktop.org/cgit/tdenetwork/commit/?id=2892487f [2892487f]] Use tq* headers instead of ntq* ones
 
* [https://git.trinitydesktop.org/cgit/tdenetwork/commit/?id=41e2c515 [41e2c515]] Replace KDE_TQ_EXPORT_PLUGIN with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdenetwork/commit/?id=41e2c515 [41e2c515]] Replace KDE_TQ_EXPORT_PLUGIN with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdenetwork/commit/?id=d6ad20b4 [d6ad20b4]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdenetwork/commit/?id=d6ad20b4 [d6ad20b4]] Replace KDE_DEPRECATED with TDE_DEPRECATED
Line 82: Line 235:
   
 
== tdegraphics ==
 
== tdegraphics ==
  +
* [https://git.trinitydesktop.org/cgit/tdegraphics/commit/?id=a828e133 [a828e133]] Advertise WebP read support via .desktop files.
  +
* [https://git.trinitydesktop.org/cgit/tdegraphics/commit/?id=210d8eac [210d8eac]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdegraphics/commit/?id=153ce3e5 [153ce3e5]] Ensure the use of C++20 standard for Poppler &gt;= 24.04.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdegraphics/issues/96 #96]
 
* [https://git.trinitydesktop.org/cgit/tdegraphics/commit/?id=153ce3e5 [153ce3e5]] Ensure the use of C++20 standard for Poppler &gt;= 24.04.<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdegraphics/issues/96 #96]
 
* [https://git.trinitydesktop.org/cgit/tdegraphics/commit/?id=fcb418ee [fcb418ee]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdegraphics/commit/?id=fcb418ee [fcb418ee]] Merge translation files from master branch.
Line 87: Line 242:
   
 
== tdetoys ==
 
== tdetoys ==
  +
* [https://git.trinitydesktop.org/cgit/tdetoys/commit/?id=7787f653 [7787f653]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdetoys/commit/?id=f58a8da2 [f58a8da2]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdetoys/commit/?id=f58a8da2 [f58a8da2]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdetoys/commit/?id=02300d49 [02300d49]] Add documentation builds for each package separately
 
* [https://git.trinitydesktop.org/cgit/tdetoys/commit/?id=02300d49 [02300d49]] Add documentation builds for each package separately
Line 92: Line 248:
   
 
== tdeutils ==
 
== tdeutils ==
  +
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=8bd95de8 [8bd95de8]] Superkaramba: add GPU load sensor<br/>The sensor has a required `driver` parameter and an optional `gpu` parameter.<br/>- The former specifies the backend to use to query the system about GPU load.<br/>- The latter specifies the id of the GPU to check. If left out, the backend default will be used.<br/>For now it only supports NVidia GPUs via the `nvidia` driver, but it can be extended.
  +
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=2c4a3e7f [2c4a3e7f]] Superkaramba: add GB format strings to memory sensor<br/>Added variants: %fm(b)g %um(b)g %fsg %usg %tmg %tsg
  +
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=6b7d5441 [6b7d5441]] Superkaramba: minor code refactoring/restyling in memsensor
  +
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=9a9ab1be [9a9ab1be]] Superkaramba: add memory sensor percentage format strings<br/>The strings which end in 'p' represent percentage value variants of the following pre-existing format strings:<br/>%fmb(p) %fm(p) %umb(p) %um(p) %fs(p) %us(p)
  +
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=222d52d9 [222d52d9]] Improve location of kedit desktop file. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdeutils/issues/46 #46]
  +
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=b23bc1fa [b23bc1fa]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=9eb5b12f [9eb5b12f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=9eb5b12f [9eb5b12f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=71387620 [71387620]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeutils/commit/?id=71387620 [71387620]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdeedu ==
 
== tdeedu ==
  +
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=d7569eb4 [d7569eb4]] Fix FTBFS with Python 3.13.<br/>This solves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/tdeedu/issues/46 #46]
  +
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=03236ff7 [03236ff7]] Fix FTBFS with gcc 14
  +
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=6021f991 [6021f991]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=4728afb5 [4728afb5]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=422e7fef [422e7fef]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=422e7fef [422e7fef]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=1ad8fd66 [1ad8fd66]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeedu/commit/?id=1ad8fd66 [1ad8fd66]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdegames ==
 
== tdegames ==
  +
* [https://git.trinitydesktop.org/cgit/tdegames/commit/?id=4905e1cc [4905e1cc]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdegames/commit/?id=ac071efb [ac071efb]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdegames/commit/?id=ac071efb [ac071efb]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdegames/commit/?id=dd75912c [dd75912c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdegames/commit/?id=dd75912c [dd75912c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdeaccessibility ==
 
== tdeaccessibility ==
  +
* [https://git.trinitydesktop.org/cgit/tdeaccessibility/commit/?id=c06e0a2b [c06e0a2b]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdeaccessibility/commit/?id=1973d99d [1973d99d]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdeaccessibility/commit/?id=3891d3d9 [3891d3d9]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdeaccessibility/commit/?id=de5e54fd [de5e54fd]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdeaccessibility/commit/?id=93d2ad8f [93d2ad8f]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeaccessibility/commit/?id=93d2ad8f [93d2ad8f]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdeaddons ==
 
== tdeaddons ==
  +
* [https://git.trinitydesktop.org/cgit/tdeaddons/commit/?id=f3aaaec8 [f3aaaec8]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdeaddons/commit/?id=a184527f [a184527f]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdeaddons/commit/?id=b30cd117 [b30cd117]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdeaddons/commit/?id=22ddaacb [22ddaacb]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeaddons/commit/?id=22ddaacb [22ddaacb]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeaddons/commit/?id=2bbb215c [2bbb215c]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdeaddons/commit/?id=2bbb215c [2bbb215c]] Merge translation files from master branch.
   
 
== tdeadmin ==
 
== tdeadmin ==
  +
* [https://git.trinitydesktop.org/cgit/tdeadmin/commit/?id=b2b4bc52 [b2b4bc52]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdeadmin/commit/?id=e87baf34 [e87baf34]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdeadmin/commit/?id=36436c15 [36436c15]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tdeadmin/commit/?id=5fc7892e [5fc7892e]] Add documentation builds for each package separately
 
* [https://git.trinitydesktop.org/cgit/tdeadmin/commit/?id=5fc7892e [5fc7892e]] Add documentation builds for each package separately
 
* [https://git.trinitydesktop.org/cgit/tdeadmin/commit/?id=866c88c2 [866c88c2]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeadmin/commit/?id=866c88c2 [866c88c2]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Line 119: Line 296:
   
 
== tdebindings ==
 
== tdebindings ==
  +
* [https://git.trinitydesktop.org/cgit/tdebindings/commit/?id=8db0c3ad [8db0c3ad]] Load tqtjava library instead of qtjava<br/>Fixes a runtime error "no qtjava in java.library.path" since the<br/>generated library name is 'libtqtjava.so'.
  +
* [https://git.trinitydesktop.org/cgit/tdebindings/commit/?id=f2389da0 [f2389da0]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdebindings/commit/?id=19b0a550 [19b0a550]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdebindings/commit/?id=19b0a550 [19b0a550]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdebindings/commit/?id=8d288123 [8d288123]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdebindings/commit/?id=8d288123 [8d288123]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdesdk ==
 
== tdesdk ==
  +
* [https://git.trinitydesktop.org/cgit/tdesdk/commit/?id=ba3a42c2 [ba3a42c2]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdesdk/commit/?id=f9ccae8d [f9ccae8d]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdesdk/commit/?id=19e19197 [19e19197]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdesdk/commit/?id=19e19197 [19e19197]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdesdk/commit/?id=c264ece0 [c264ece0]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdesdk/commit/?id=c264ece0 [c264ece0]] Replace KDE_DEPRECATED with TDE_DEPRECATED
Line 128: Line 309:
   
 
== tdevelop ==
 
== tdevelop ==
  +
* [https://git.trinitydesktop.org/cgit/tdevelop/commit/?id=13923bec [13923bec]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdevelop/commit/?id=b018e020 [b018e020]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdevelop/commit/?id=b018e020 [b018e020]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/tdevelop/commit/?id=7489a97a [7489a97a]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdevelop/commit/?id=7489a97a [7489a97a]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdewebdev ==
 
== tdewebdev ==
  +
* [https://git.trinitydesktop.org/cgit/tdewebdev/commit/?id=dedaec14 [dedaec14]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdewebdev/commit/?id=da00a36d [da00a36d]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdewebdev/commit/?id=cffd6b6e [cffd6b6e]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdewebdev/commit/?id=2a1388a5 [2a1388a5]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdewebdev/commit/?id=2a1388a5 [2a1388a5]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tdewebdev/commit/?id=11eb1ed1 [11eb1ed1]] Remove KDE_ISLIKELY and KDE_ISUNLIKELY defines
 
* [https://git.trinitydesktop.org/cgit/tdewebdev/commit/?id=11eb1ed1 [11eb1ed1]] Remove KDE_ISLIKELY and KDE_ISUNLIKELY defines
Line 138: Line 323:
   
 
== tde-i18n ==
 
== tde-i18n ==
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=0c38104f [0c38104f]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=7d0d1599 [7d0d1599]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=30eacd37 [30eacd37]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=4597c261 [4597c261]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=c927fc3d [c927fc3d]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=584bd402 [584bd402]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=015284e4 [015284e4]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=130d0d33 [130d0d33]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=35924182 [35924182]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=9d313172 [9d313172]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=8dd995ff [8dd995ff]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=e2a58f8c [e2a58f8c]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=aefcecf2 [aefcecf2]] tdebase: update to match PR [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/538 TDE/tdebase#538]
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=f8dea4bc [f8dea4bc]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=6958efbb [6958efbb]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=9a339ff5 [9a339ff5]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=fff1a0a0 [fff1a0a0]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=d3dbd8c9 [d3dbd8c9]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=ee332cd4 [ee332cd4]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=0e82c63b [0e82c63b]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=7eca727d [7eca727d]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=e460241e [e460241e]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=4d1a1cd3 [4d1a1cd3]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=91885ffc [91885ffc]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=7efe52d4 [7efe52d4]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=4bd43316 [4bd43316]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=958c4ca7 [958c4ca7]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=badc6c6a [badc6c6a]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=ffa4138f [ffa4138f]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=809c1afc [809c1afc]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=1c2a30dc [1c2a30dc]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=ff309cbd [ff309cbd]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=5bab0f86 [5bab0f86]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=5e4f0cd5 [5e4f0cd5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=e50cd332 [e50cd332]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=5bb5dfa5 [5bb5dfa5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=1d2f4ef2 [1d2f4ef2]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=1a1db394 [1a1db394]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=1c2caed5 [1c2caed5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=5cb2fffe [5cb2fffe]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=fca24f9e [fca24f9e]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=8c537df0 [8c537df0]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=08a61328 [08a61328]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=46453d7e [46453d7e]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=bfbb18a5 [bfbb18a5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=cc847f45 [cc847f45]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=dec23195 [dec23195]] Fix plural form of translations.<br/>The leading '_n: ' should not be part of the translations.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=40a54a16 [40a54a16]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=beedfe2a [beedfe2a]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=238f0191 [238f0191]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=c4161b55 [c4161b55]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=3b9f94b5 [3b9f94b5]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=dd1f61cd [dd1f61cd]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=eeec7e1d [eeec7e1d]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=7ac49189 [7ac49189]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=935d5e8f [935d5e8f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=935d5e8f [935d5e8f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=ccd05f23 [ccd05f23]] Update translation template.
 
* [https://git.trinitydesktop.org/cgit/tde-i18n/commit/?id=ccd05f23 [ccd05f23]] Update translation template.
Line 160: Line 400:
 
= libraries =
 
= libraries =
 
== libkdcraw ==
 
== libkdcraw ==
  +
* [https://git.trinitydesktop.org/cgit/libkdcraw/commit/?id=83dc653e [83dc653e]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/libkdcraw/commit/?id=0d17cf8c [0d17cf8c]] Remove unnecessary define and make sure to include tdemacros.h
  +
* [https://git.trinitydesktop.org/cgit/libkdcraw/commit/?id=921e2d15 [921e2d15]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/libkdcraw/commit/?id=81dc15bc [81dc15bc]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/libkdcraw/commit/?id=81dc15bc [81dc15bc]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/libkdcraw/commit/?id=dfbdaaed [dfbdaaed]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/libkdcraw/commit/?id=dfbdaaed [dfbdaaed]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== libkexiv2 ==
 
== libkexiv2 ==
  +
* [https://git.trinitydesktop.org/cgit/libkexiv2/commit/?id=505878f1 [505878f1]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/libkexiv2/commit/?id=803a46b6 [803a46b6]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/libkexiv2/commit/?id=3a295a79 [3a295a79]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/libkexiv2/commit/?id=3a295a79 [3a295a79]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== libkipi ==
 
== libkipi ==
  +
* [https://git.trinitydesktop.org/cgit/libkipi/commit/?id=1db25959 [1db25959]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/libkipi/commit/?id=eb6e700a [eb6e700a]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/libkipi/commit/?id=a53baecb [a53baecb]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/libkipi/commit/?id=a53baecb [a53baecb]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/libkipi/commit/?id=cb43a8ff [cb43a8ff]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/libkipi/commit/?id=cb43a8ff [cb43a8ff]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== kipi-plugins ==
 
== kipi-plugins ==
  +
* [https://git.trinitydesktop.org/cgit/kipi-plugins/commit/?id=00132ff0 [00132ff0]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kipi-plugins/commit/?id=269f792d [269f792d]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/kipi-plugins/commit/?id=422b94aa [422b94aa]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/kipi-plugins/commit/?id=b797dfbe [b797dfbe]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kipi-plugins/commit/?id=b797dfbe [b797dfbe]] Merge translation files from master branch.
  +
  +
== libksquirrel ==
  +
* [https://git.trinitydesktop.org/cgit/libksquirrel/commit/?id=51f42b6f [51f42b6f]] Use JasPer 3 library initialization routines<br/>Update to use the jas_init_library() and jas_init_thread() functions as<br/>JasPer 3 deprecated jas_init and changed its behaviour to not register<br/>jas_cleanup() as an atexit callback.
  +
* [https://git.trinitydesktop.org/cgit/libksquirrel/commit/?id=8ae5191e [8ae5191e]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/libksquirrel/commit/?id=7d79524e [7d79524e]] Replace kdemacros.h with tdemacros.h
   
 
== libtdeldap ==
 
== libtdeldap ==
  +
* [https://git.trinitydesktop.org/cgit/libtdeldap/commit/?id=81b3ec1e [81b3ec1e]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/libtdeldap/commit/?id=099c3ec1 [099c3ec1]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/libtdeldap/commit/?id=5c301750 [5c301750]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/libtdeldap/commit/?id=5c301750 [5c301750]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
Line 180: Line 437:
   
 
== pytde ==
 
== pytde ==
  +
* [https://git.trinitydesktop.org/cgit/pytde/commit/?id=4883892c [4883892c]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/pytde/commit/?id=45cb24c9 [45cb24c9]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/pytde/commit/?id=45cb24c9 [45cb24c9]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/pytde/commit/?id=3f2e6e14 [3f2e6e14]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/pytde/commit/?id=3f2e6e14 [3f2e6e14]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Line 185: Line 443:
 
= applications/development =
 
= applications/development =
 
== kdbg ==
 
== kdbg ==
  +
* [https://git.trinitydesktop.org/cgit/kdbg/commit/?id=316c1368 [316c1368]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kdbg/commit/?id=362831ed [362831ed]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kdbg/commit/?id=362831ed [362831ed]] Use proper TQt headers
   
 
== kdiff3 ==
 
== kdiff3 ==
  +
* [https://git.trinitydesktop.org/cgit/kdiff3/commit/?id=2371b490 [2371b490]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kdiff3/commit/?id=b8cd662e [b8cd662e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kdiff3/commit/?id=b8cd662e [b8cd662e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kdiff3/commit/?id=1ff6ea62 [1ff6ea62]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kdiff3/commit/?id=1ff6ea62 [1ff6ea62]] Merge translation files from master branch.
  +
  +
== kpicosim ==
  +
* [https://git.trinitydesktop.org/cgit/kpicosim/commit/?id=201f3373 [201f3373]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kpicosim/commit/?id=f728bb02 [f728bb02]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kpicosim/commit/?id=d63aaf1b [d63aaf1b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== kscope ==
 
== kscope ==
  +
* [https://git.trinitydesktop.org/cgit/kscope/commit/?id=35bc076c [35bc076c]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kscope/commit/?id=6730bcbc [6730bcbc]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kscope/commit/?id=6730bcbc [6730bcbc]] Use proper TQt headers
   
 
== ktechlab ==
 
== ktechlab ==
  +
* [https://git.trinitydesktop.org/cgit/ktechlab/commit/?id=69788745 [69788745]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/ktechlab/commit/?id=04455a04 [04455a04]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/ktechlab/commit/?id=04455a04 [04455a04]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/ktechlab/commit/?id=21265b55 [21265b55]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ktechlab/commit/?id=21265b55 [21265b55]] Merge translation files from master branch.
   
 
== kxmleditor ==
 
== kxmleditor ==
  +
* [https://git.trinitydesktop.org/cgit/kxmleditor/commit/?id=19deaeb3 [19deaeb3]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kxmleditor/commit/?id=4508b0ef [4508b0ef]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kxmleditor/commit/?id=4508b0ef [4508b0ef]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kxmleditor/commit/?id=51322a94 [51322a94]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kxmleditor/commit/?id=51322a94 [51322a94]] Merge translation files from master branch.
   
 
== piklab ==
 
== piklab ==
  +
* [https://git.trinitydesktop.org/cgit/piklab/commit/?id=93af744d [93af744d]] Fixed build problem with ncurses library
  +
* [https://git.trinitydesktop.org/cgit/piklab/commit/?id=1c29d98b [1c29d98b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/piklab/commit/?id=f2550e4c [f2550e4c]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/piklab/commit/?id=f2550e4c [f2550e4c]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/piklab/commit/?id=dc5b11fc [dc5b11fc]] CMake conversion
 
* [https://git.trinitydesktop.org/cgit/piklab/commit/?id=dc5b11fc [dc5b11fc]] CMake conversion
Line 215: Line 485:
   
 
== tdesvn ==
 
== tdesvn ==
  +
* [https://git.trinitydesktop.org/cgit/tdesvn/commit/?id=8932eec6 [8932eec6]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdesvn/commit/?id=944780b9 [944780b9]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdesvn/commit/?id=6fbfff0a [6fbfff0a]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdesvn/commit/?id=9096ae56 [9096ae56]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdesvn/commit/?id=2eb15088 [2eb15088]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdesvn/commit/?id=2eb15088 [2eb15088]] Merge translation files from master branch.
   
 
= applications/games =
 
= applications/games =
  +
== knights ==
  +
* [https://git.trinitydesktop.org/cgit/knights/commit/?id=70ccae04 [70ccae04]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
 
== tdepacman ==
 
== tdepacman ==
 
* [https://git.trinitydesktop.org/cgit/tdepacman/commit/?id=8d7dc432 [8d7dc432]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdepacman/commit/?id=8d7dc432 [8d7dc432]] Merge translation files from master branch.
Line 223: Line 500:
 
= applications/graphics =
 
= applications/graphics =
 
== digikam ==
 
== digikam ==
  +
* [https://git.trinitydesktop.org/cgit/digikam/commit/?id=3823312d [3823312d]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/digikam/commit/?id=9966557a [9966557a]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/digikam/commit/?id=6ae95b80 [6ae95b80]] Advertise WebP read support for showfoto via .desktop file
 
* [https://git.trinitydesktop.org/cgit/digikam/commit/?id=6ae95b80 [6ae95b80]] Advertise WebP read support for showfoto via .desktop file
 
* [https://git.trinitydesktop.org/cgit/digikam/commit/?id=9b92ae02 [9b92ae02]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/digikam/commit/?id=9b92ae02 [9b92ae02]] Merge translation files from master branch.
Line 228: Line 507:
   
 
== gwenview ==
 
== gwenview ==
  +
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=ec196430 [ec196430]] Fix FTBFS coming from issue [https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/41 #41]
  +
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=5f1fe4bd [5f1fe4bd]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=7a94ca6b [7a94ca6b]] External tools: replace gimp-remote with gimp<br/>The gimp-remote tool has been deprecated since 2008.<br/>See https://www.gimp.org/man/gimp-remote.html
  +
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=5528a74d [5528a74d]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=dcc30344 [dcc30344]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=d8662ba8 [d8662ba8]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=3a15c885 [3a15c885]] Fix FTBFS on OMV. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/38 #38]
 
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=3a15c885 [3a15c885]] Fix FTBFS on OMV. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/38 #38]
 
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=df746ca9 [df746ca9]] Advertise WebP read support via .desktop files<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/1 #1]
 
* [https://git.trinitydesktop.org/cgit/gwenview/commit/?id=df746ca9 [df746ca9]] Advertise WebP read support via .desktop files<br/>This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/1 #1]
Line 241: Line 526:
   
 
== ksquirrel ==
 
== ksquirrel ==
  +
* [https://git.trinitydesktop.org/cgit/ksquirrel/commit/?id=f26ba650 [f26ba650]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/ksquirrel/commit/?id=1658fc3b [1658fc3b]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksquirrel/commit/?id=1658fc3b [1658fc3b]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksquirrel/commit/?id=1c9b1d06 [1c9b1d06]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksquirrel/commit/?id=1c9b1d06 [1c9b1d06]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksquirrel/commit/?id=b0be5893 [b0be5893]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksquirrel/commit/?id=b0be5893 [b0be5893]] Merge translation files from master branch.
  +
  +
== potracegui ==
  +
* [https://git.trinitydesktop.org/cgit/potracegui/commit/?id=e26e550b [e26e550b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
= applications/internet =
 
= applications/internet =
  +
== kasablanca ==
  +
* [https://git.trinitydesktop.org/cgit/kasablanca/commit/?id=c0d7a59e [c0d7a59e]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
 
== kbiff ==
 
== kbiff ==
  +
* [https://git.trinitydesktop.org/cgit/kbiff/commit/?id=73666db5 [73666db5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbiff/commit/?id=4d4a13e6 [4d4a13e6]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kbiff/commit/?id=375a2609 [375a2609]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kbiff/commit/?id=375a2609 [375a2609]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kbiff/commit/?id=9398c3ad [9398c3ad]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kbiff/commit/?id=9398c3ad [9398c3ad]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== kftpgrabber ==
 
== kftpgrabber ==
  +
* [https://git.trinitydesktop.org/cgit/kftpgrabber/commit/?id=7da1d2cc [7da1d2cc]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kftpgrabber/commit/?id=86ecfe8c [86ecfe8c]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kftpgrabber/commit/?id=86ecfe8c [86ecfe8c]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kftpgrabber/commit/?id=8b3c15a5 [8b3c15a5]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/kftpgrabber/commit/?id=8b3c15a5 [8b3c15a5]] Replace KDE_DEPRECATED with TDE_DEPRECATED
Line 256: Line 551:
   
 
== knmap ==
 
== knmap ==
  +
* [https://git.trinitydesktop.org/cgit/knmap/commit/?id=43244db3 [43244db3]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/knmap/commit/?id=d7f518fa [d7f518fa]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/knmap/commit/?id=d7f518fa [d7f518fa]] Use proper TQt headers
   
Line 264: Line 560:
   
 
== kopete-otr ==
 
== kopete-otr ==
  +
* [https://git.trinitydesktop.org/cgit/kopete-otr/commit/?id=1dd25c19 [1dd25c19]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/kopete-otr/commit/?id=ceb024e1 [ceb024e1]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/kopete-otr/commit/?id=6a0c636c [6a0c636c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kopete-otr/commit/?id=6a0c636c [6a0c636c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== kshowmail ==
 
== kshowmail ==
  +
* [https://git.trinitydesktop.org/cgit/kshowmail/commit/?id=cc7eb270 [cc7eb270]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kshowmail/commit/?id=727f9c3c [727f9c3c]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kshowmail/commit/?id=727f9c3c [727f9c3c]] Use proper TQt headers
   
 
== kstreamripper ==
 
== kstreamripper ==
  +
* [https://git.trinitydesktop.org/cgit/kstreamripper/commit/?id=109f8e74 [109f8e74]] Added check for pressing the Cancel button in the file dialog<br/>The Destination field should not be changed if the cancel button is pressed in the file dialog
  +
* [https://git.trinitydesktop.org/cgit/kstreamripper/commit/?id=ef957d70 [ef957d70]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kstreamripper/commit/?id=6ef29b49 [6ef29b49]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kstreamripper/commit/?id=6ef29b49 [6ef29b49]] Use proper TQt headers
   
Line 276: Line 577:
   
 
== kvirc ==
 
== kvirc ==
  +
* [https://git.trinitydesktop.org/cgit/kvirc/commit/?id=a12798e7 [a12798e7]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kvirc/commit/?id=12700b44 [12700b44]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kvirc/commit/?id=34cef094 [34cef094]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kvirc/commit/?id=34cef094 [34cef094]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kvirc/commit/?id=6e2602fa [6e2602fa]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kvirc/commit/?id=6e2602fa [6e2602fa]] Merge translation files from master branch.
Line 282: Line 585:
   
 
== kvpnc ==
 
== kvpnc ==
  +
* [https://git.trinitydesktop.org/cgit/kvpnc/commit/?id=b2dc6a57 [b2dc6a57]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kvpnc/commit/?id=4ef26a9b [4ef26a9b]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kvpnc/commit/?id=a911fd70 [a911fd70]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kvpnc/commit/?id=b82812a3 [b82812a3]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kvpnc/commit/?id=b82812a3 [b82812a3]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kvpnc/commit/?id=3633a93b [3633a93b]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kvpnc/commit/?id=3633a93b [3633a93b]] Merge translation files from master branch.
Line 287: Line 593:
   
 
== smb4k ==
 
== smb4k ==
  +
* [https://git.trinitydesktop.org/cgit/smb4k/commit/?id=89bd0844 [89bd0844]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/smb4k/commit/?id=2c528b60 [2c528b60]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/smb4k/commit/?id=19488bba [19488bba]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/smb4k/commit/?id=19488bba [19488bba]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/smb4k/commit/?id=9bb489fb [9bb489fb]] Merge duplicate Norwegian translations of desktop files and<br/>use two-letter codes names NB and NN, such as usual in other cases.
 
* [https://git.trinitydesktop.org/cgit/smb4k/commit/?id=9bb489fb [9bb489fb]] Merge duplicate Norwegian translations of desktop files and<br/>use two-letter codes names NB and NN, such as usual in other cases.
Line 296: Line 604:
   
 
== tork ==
 
== tork ==
  +
* [https://git.trinitydesktop.org/cgit/tork/commit/?id=0d318f09 [0d318f09]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tork/commit/?id=24cb4e0d [24cb4e0d]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/tork/commit/?id=24cb4e0d [24cb4e0d]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/tork/commit/?id=1f155134 [1f155134]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tork/commit/?id=1f155134 [1f155134]] Merge translation files from master branch.
Line 302: Line 611:
   
 
= applications/misc =
 
= applications/misc =
  +
== bibletime ==
  +
* [https://git.trinitydesktop.org/cgit/bibletime/commit/?id=11021fb0 [11021fb0]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
 
== compizconfig-backend-tdeconfig ==
 
== compizconfig-backend-tdeconfig ==
  +
* [https://git.trinitydesktop.org/cgit/compizconfig-backend-tdeconfig/commit/?id=f225f48f [f225f48f]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/compizconfig-backend-tdeconfig/commit/?id=6ddf91c7 [6ddf91c7]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/compizconfig-backend-tdeconfig/commit/?id=6ddf91c7 [6ddf91c7]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  +
  +
== desktop-effects-tde ==
  +
* [https://git.trinitydesktop.org/cgit/desktop-effects-tde/commit/?id=d9b08e45 [d9b08e45]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/desktop-effects-tde/commit/?id=a3d98e7d [a3d98e7d]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/desktop-effects-tde/commit/?id=861ee303 [861ee303]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/desktop-effects-tde/commit/?id=a30304ca [a30304ca]] Merge translation files from master branch.
  +
  +
== kcmldap ==
  +
* [https://git.trinitydesktop.org/cgit/kcmldap/commit/?id=40e52bb5 [40e52bb5]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== kcmldapcontroller ==
  +
* [https://git.trinitydesktop.org/cgit/kcmldapcontroller/commit/?id=1e46f8ab [1e46f8ab]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== kcmldapmanager ==
  +
* [https://git.trinitydesktop.org/cgit/kcmldapmanager/commit/?id=9be1b414 [9be1b414]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== kerberostray ==
  +
* [https://git.trinitydesktop.org/cgit/kerberostray/commit/?id=067e5235 [067e5235]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/kerberostray/commit/?id=c29b06de [c29b06de]] Replace kdemacros.h with tdemacros.h
   
 
== krecipes ==
 
== krecipes ==
  +
* [https://git.trinitydesktop.org/cgit/krecipes/commit/?id=64df5710 [64df5710]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/krecipes/commit/?id=788606cd [788606cd]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/krecipes/commit/?id=dbf13a36 [dbf13a36]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/krecipes/commit/?id=dbf13a36 [dbf13a36]] Use proper TQt headers
   
 
= applications/multimedia =
 
= applications/multimedia =
 
== amarok ==
 
== amarok ==
  +
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=69a8a1af [69a8a1af]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=61ea97c2 [61ea97c2]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=e8dc45c8 [e8dc45c8]] Replace custom MP4 metadata parser with TagLib<br/>TagLib supports MP4 metadata since version 1.6 (2009). The custom<br/>parser code caused problems because there was a mismatch between<br/>the definition of TagLib::Tag and TagLib::MP4::Tag, and the<br/>implementation of the custom TagLib::MP4::Tag.<br/>This requires TagLib 1.11 and above.<br/>Resolves: [https://mirror.git.trinitydesktop.org/gitea/TDE/tdemultimedia/issues/82 TDE/tdemultimedia#82]
  +
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=09dcfc68 [09dcfc68]] Fix unsigned overflow in Debug::Block dtor
  +
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=c18b5298 [c18b5298]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=32da5fbf [32da5fbf]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=32da5fbf [32da5fbf]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=2d4abcb6 [2d4abcb6]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=2d4abcb6 [2d4abcb6]] Merge translation files from master branch.
Line 318: Line 657:
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=223dc92b [223dc92b]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=223dc92b [223dc92b]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=edadbab7 [edadbab7]] Add support for taglib 2, part 2.
 
* [https://git.trinitydesktop.org/cgit/amarok/commit/?id=edadbab7 [edadbab7]] Add support for taglib 2, part 2.
  +
  +
== codeine ==
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=c2ba45c1 [c2ba45c1]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=39912d87 [39912d87]] Fix channel selection menus disappearing<br/>When adding/removing an action to/from the toolbar, the aspect ratio,<br/>audio channel, and subtitle channel menus would disappear from the<br/>parent settings menu.<br/>My understanding is that this happened because nothing was keeping those<br/>menus present (plugged?) when other actions were plugged/unplugged.<br/>This changes it so "Aspect Ratio", "Subtitles", and "Audio Channels"<br/>each are a TDESelectAction that is dynamically filled with items. This<br/>way, each popup menu is still present after other actions being<br/>plugged/unplugged.<br/>Resolves: [https://mirror.git.trinitydesktop.org/gitea/TDE/codeine/issues/24 TDE/codeine#24]
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=5100a090 [5100a090]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=0dbeeeb9 [0dbeeeb9]] Address -Wall warnings<br/>VideoWindow::ExposeEvent wasn't being used correctly; it should be a<br/>TQCustomEvent (although, the 3000 type is already being used for<br/>forwarding XINE_PROGRESS_EVENT).<br/>While the pts_per_smpls part never seemed to be encountered, it would<br/>have resulted in a floating point exception as it's always 0. Commented<br/>out to leave a hint as to what the code should be doing.<br/>Resolves: [https://mirror.git.trinitydesktop.org/gitea/TDE/codeine/issues/2 TDE/codeine#2]
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=f41da351 [f41da351]] Fix filter list when opening a file
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=fb0c092e [fb0c092e]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=9f6a25bc [9f6a25bc]] Improve the layout of XineConfigDialog<br/>Properly display the description of each of the settings. Also,<br/>reorganize the layout so that it uses layouts rather than VBox/HBox.<br/>The TabWidget class has been removed in favour of the standard<br/>TQTabWidget class, as the different behaviour doesn't make a notable<br/>visual difference.
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=5394e874 [5394e874]] Fix crash when showing context menu in DVDs
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=e2003a00 [e2003a00]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=bca2a1a1 [bca2a1a1]] Use nullptr instead of NULL/0 pointer in C++ files<br/>See: https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/73
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=55214aea [55214aea]] Use safer xine_get_current_frame_s<br/>xine_get_current_frame was deprecated back in 2019 because it is<br/>"unsafe by design"[0]. The '_s' version was introduced in xine-lib<br/>1.1.11, which was released in 2008, so there are no version checks.<br/>[0]:<br/>https://sourceforge.net/p/xine/xine-lib-1.2/ci/c1a154c1a89759a8d69a6895587085adf6868d50/
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=9cec7f89 [9cec7f89]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=86b8d57a [86b8d57a]] Scale capture preview if it exceeds screen bounds
  +
* [https://git.trinitydesktop.org/cgit/codeine/commit/?id=b4cc6a0c [b4cc6a0c]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== k3b ==
 
== k3b ==
  +
* [https://git.trinitydesktop.org/cgit/k3b/commit/?id=75435ce1 [75435ce1]] Fix compatibility with ffmpeg 7.x.
  +
* [https://git.trinitydesktop.org/cgit/k3b/commit/?id=fb26314a [fb26314a]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/k3b/commit/?id=bfd52a71 [bfd52a71]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/k3b/commit/?id=8c770638 [8c770638]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/k3b/commit/?id=8c770638 [8c770638]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== k3b-i18n ==
 
== k3b-i18n ==
  +
* [https://git.trinitydesktop.org/cgit/k3b-i18n/commit/?id=fb28b567 [fb28b567]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/k3b-i18n/commit/?id=b3e87d49 [b3e87d49]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/k3b-i18n/commit/?id=4c32ec32 [4c32ec32]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/k3b-i18n/commit/?id=bcbabbda [bcbabbda]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/k3b-i18n/commit/?id=bcbabbda [bcbabbda]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/k3b-i18n/commit/?id=a21cb0e7 [a21cb0e7]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/k3b-i18n/commit/?id=a21cb0e7 [a21cb0e7]] Merge translation files from master branch.
Line 329: Line 690:
   
 
== k9copy ==
 
== k9copy ==
  +
* [https://git.trinitydesktop.org/cgit/k9copy/commit/?id=8d584861 [8d584861]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/k9copy/commit/?id=7ad2cf65 [7ad2cf65]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/k9copy/commit/?id=b6bc7d3a [b6bc7d3a]] Use strlcat from libc instead of custom one. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/k9copy/issues/29 #29]
 
* [https://git.trinitydesktop.org/cgit/k9copy/commit/?id=b6bc7d3a [b6bc7d3a]] Use strlcat from libc instead of custom one. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/k9copy/issues/29 #29]
   
 
== kaffeine ==
 
== kaffeine ==
  +
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=b9073568 [b9073568]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=0f19d223 [0f19d223]] Use safer xine_get_current_frame_s<br/>xine_get_current_frame was deprecated back in 2019 because it is<br/>"unsafe by design"[0]. The '_s' version was introduced in xine-lib<br/>1.1.11, which was released in 2008, so there are no version checks.<br/>[0]:<br/>https://sourceforge.net/p/xine/xine-lib-1.2/ci/c1a154c1a89759a8d69a6895587085adf6868d50
  +
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=bfc5ced7 [bfc5ced7]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=e45d3e30 [e45d3e30]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=e45d3e30 [e45d3e30]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=ba1ce6b1 [ba1ce6b1]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=ba1ce6b1 [ba1ce6b1]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Line 337: Line 703:
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=3a1cc256 [3a1cc256]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=3a1cc256 [3a1cc256]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=ee48611f [ee48611f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kaffeine/commit/?id=ee48611f [ee48611f]] Merge translation files from master branch.
  +
  +
== kaffeine-mozilla ==
  +
* [https://git.trinitydesktop.org/cgit/kaffeine-mozilla/commit/?id=d0c34405 [d0c34405]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== kmplayer ==
 
== kmplayer ==
  +
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=74c9cd05 [74c9cd05]] Fix visibility of public slots in PartBase. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kmplayer/issues/24 #24]
  +
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=3ca4c8ba [3ca4c8ba]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=54463fd2 [54463fd2]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=36694213 [36694213]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=c5d77586 [c5d77586]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=c5d77586 [c5d77586]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=2debdf21 [2debdf21]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kmplayer/commit/?id=2debdf21 [2debdf21]] Merge translation files from master branch.
   
 
== kplayer ==
 
== kplayer ==
  +
* [https://git.trinitydesktop.org/cgit/kplayer/commit/?id=75214b4b [75214b4b]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kplayer/commit/?id=f7dbed34 [f7dbed34]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kplayer/commit/?id=502028b2 [502028b2]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kplayer/commit/?id=502028b2 [502028b2]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kplayer/commit/?id=fceabe00 [fceabe00]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kplayer/commit/?id=fceabe00 [fceabe00]] Merge translation files from master branch.
Line 348: Line 723:
   
 
== mplayerthumbs ==
 
== mplayerthumbs ==
  +
* [https://git.trinitydesktop.org/cgit/mplayerthumbs/commit/?id=311bc97e [311bc97e]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/mplayerthumbs/commit/?id=d4c4db4c [d4c4db4c]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/mplayerthumbs/commit/?id=d55559f3 [d55559f3]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/mplayerthumbs/commit/?id=6889475b [6889475b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/mplayerthumbs/commit/?id=6889475b [6889475b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/mplayerthumbs/commit/?id=62cfd3d0 [62cfd3d0]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/mplayerthumbs/commit/?id=62cfd3d0 [62cfd3d0]] Merge translation files from master branch.
   
 
== rosegarden ==
 
== rosegarden ==
  +
* [https://git.trinitydesktop.org/cgit/rosegarden/commit/?id=f4e06ad8 [f4e06ad8]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/rosegarden/commit/?id=1d49f945 [1d49f945]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/rosegarden/commit/?id=1d49f945 [1d49f945]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/rosegarden/commit/?id=5daf082b [5daf082b]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/rosegarden/commit/?id=5daf082b [5daf082b]] Merge translation files from master branch.
   
 
== soundkonverter ==
 
== soundkonverter ==
  +
* [https://git.trinitydesktop.org/cgit/soundkonverter/commit/?id=7ae832ac [7ae832ac]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/soundkonverter/commit/?id=07655291 [07655291]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/soundkonverter/commit/?id=e5ac893e [e5ac893e]] Remove 'admin' subfolder that was mistakenly left in the source tree
 
* [https://git.trinitydesktop.org/cgit/soundkonverter/commit/?id=e5ac893e [e5ac893e]] Remove 'admin' subfolder that was mistakenly left in the source tree
 
* [https://git.trinitydesktop.org/cgit/soundkonverter/commit/?id=ce91fc9a [ce91fc9a]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/soundkonverter/commit/?id=ce91fc9a [ce91fc9a]] Merge translation files from master branch.
Line 365: Line 746:
   
 
== tderadio ==
 
== tderadio ==
  +
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=a7eb9a6a [a7eb9a6a]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=5c1aa367 [5c1aa367]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=9638eea8 [9638eea8]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=dafff6e5 [dafff6e5]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=20b6722d [20b6722d]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=4083031f [4083031f]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=5430985a [5430985a]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=68a83400 [68a83400]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=68a83400 [68a83400]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=16bc99ab [16bc99ab]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tderadio/commit/?id=16bc99ab [16bc99ab]] Merge translation files from master branch.
Line 371: Line 759:
 
= applications/office =
 
= applications/office =
 
== basket ==
 
== basket ==
  +
* [https://git.trinitydesktop.org/cgit/basket/commit/?id=2f2d5c00 [2f2d5c00]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/basket/commit/?id=2a176d87 [2a176d87]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/basket/commit/?id=576088df [576088df]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/basket/commit/?id=576088df [576088df]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/basket/commit/?id=1346de7f [1346de7f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/basket/commit/?id=1346de7f [1346de7f]] Merge translation files from master branch.
Line 378: Line 768:
   
 
== kbibtex ==
 
== kbibtex ==
  +
* [https://git.trinitydesktop.org/cgit/kbibtex/commit/?id=247ae3ed [247ae3ed]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kbibtex/commit/?id=1fe284bd [1fe284bd]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kbibtex/commit/?id=1fe284bd [1fe284bd]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kbibtex/commit/?id=79a54fb0 [79a54fb0]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kbibtex/commit/?id=79a54fb0 [79a54fb0]] Merge translation files from master branch.
  +
  +
== kbookreader ==
  +
* [https://git.trinitydesktop.org/cgit/kbookreader/commit/?id=6ae55c79 [6ae55c79]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbookreader/commit/?id=25e6d9e9 [25e6d9e9]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbookreader/commit/?id=23a93547 [23a93547]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== keximdb ==
 
== keximdb ==
  +
* [https://git.trinitydesktop.org/cgit/keximdb/commit/?id=fcb0c1ca [fcb0c1ca]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/keximdb/commit/?id=9ec283ee [9ec283ee]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/keximdb/commit/?id=9ec283ee [9ec283ee]] Use proper TQt headers
   
 
== kile ==
 
== kile ==
  +
* [https://git.trinitydesktop.org/cgit/kile/commit/?id=6a1754f7 [6a1754f7]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kile/commit/?id=1c0ae567 [1c0ae567]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kile/commit/?id=1c0ae567 [1c0ae567]] Merge translation files from master branch.
   
 
== kmymoney ==
 
== kmymoney ==
  +
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=664348a8 [664348a8]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=156e1a9c [156e1a9c]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=bb71a2a2 [bb71a2a2]] tqabstractlayout.h is obsolete
  +
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=e52169fb [e52169fb]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=aae42115 [aae42115]] Replace kdemacros.h with tdemacros.h
  +
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=51cf7be9 [51cf7be9]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=5e350d79 [5e350d79]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=47ae1235 [47ae1235]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=47ae1235 [47ae1235]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=4e1c3b0d [4e1c3b0d]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kmymoney/commit/?id=4e1c3b0d [4e1c3b0d]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  +
  +
== knowit ==
  +
* [https://git.trinitydesktop.org/cgit/knowit/commit/?id=d3584db4 [d3584db4]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== koffice ==
 
== koffice ==
  +
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=3899caa1 [3899caa1]] Replace obsolete python call
  +
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=9e417736 [9e417736]] mswriter: fix wrong ListElement template. This resolves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/koffice/issues/78 #78]
  +
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=83ac2573 [83ac2573]] Fix kexidb build with -std=c++20.<br/>This solves issue [https://mirror.git.trinitydesktop.org/gitea/TDE/koffice/issues/70 #70]
  +
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=79e48868 [79e48868]] Remove inclusion of obsolete header
  +
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=0bb5a74a [0bb5a74a]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=fc7a561e [fc7a561e]] KSpread: New lookup/reference functions<br/>Adds reference functions HLOOKUP, VLOOKUP.<br/>Import from Calligra revision 1134327.<br/>Authors: Stefan Nikolaus <br/> Sebastian Sauer
 
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=fc7a561e [fc7a561e]] KSpread: New lookup/reference functions<br/>Adds reference functions HLOOKUP, VLOOKUP.<br/>Import from Calligra revision 1134327.<br/>Authors: Stefan Nikolaus <br/> Sebastian Sauer
 
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=979ee566 [979ee566]] KSpread: Add natural comparison operators.<br/>Natural comparison does not depend on the type of data (whether it's a string or a number).<br/>Based on Calligra Sheets code originally from revision 551470.
 
* [https://git.trinitydesktop.org/cgit/koffice/commit/?id=979ee566 [979ee566]] KSpread: Add natural comparison operators.<br/>Natural comparison does not depend on the type of data (whether it's a string or a number).<br/>Based on Calligra Sheets code originally from revision 551470.
Line 398: Line 811:
   
 
== koffice-i18n ==
 
== koffice-i18n ==
  +
* [https://git.trinitydesktop.org/cgit/koffice-i18n/commit/?id=77804584 [77804584]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/koffice-i18n/commit/?id=a14dfd17 [a14dfd17]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/koffice-i18n/commit/?id=765ccdee [765ccdee]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/koffice-i18n/commit/?id=765ccdee [765ccdee]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/koffice-i18n/commit/?id=ea9d233c [ea9d233c]] Update translation template.
 
* [https://git.trinitydesktop.org/cgit/koffice-i18n/commit/?id=ea9d233c [ea9d233c]] Update translation template.
Line 407: Line 822:
   
 
== kpilot ==
 
== kpilot ==
  +
* [https://git.trinitydesktop.org/cgit/kpilot/commit/?id=6a7458cb [6a7458cb]] Fix FTBFS described in issue [https://mirror.git.trinitydesktop.org/gitea/TDE/kpilot/issues/25 #25]
  +
* [https://git.trinitydesktop.org/cgit/kpilot/commit/?id=6430ebd1 [6430ebd1]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kpilot/commit/?id=c8232e4f [c8232e4f]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kpilot/commit/?id=41c5e580 [41c5e580]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/kpilot/commit/?id=41c5e580 [41c5e580]] Replace KDE_DEPRECATED with TDE_DEPRECATED
 
* [https://git.trinitydesktop.org/cgit/kpilot/commit/?id=f28feea0 [f28feea0]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kpilot/commit/?id=f28feea0 [f28feea0]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Line 418: Line 836:
 
= applications/settings =
 
= applications/settings =
 
== kdpkg ==
 
== kdpkg ==
  +
* [https://git.trinitydesktop.org/cgit/kdpkg/commit/?id=73cafa09 [73cafa09]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kdpkg/commit/?id=15c91fce [15c91fce]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kdpkg/commit/?id=e437ed11 [e437ed11]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kdpkg/commit/?id=ebc14adc [ebc14adc]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kdpkg/commit/?id=ebc14adc [ebc14adc]] Merge translation files from master branch.
   
 
== kima ==
 
== kima ==
  +
* [https://git.trinitydesktop.org/cgit/kima/commit/?id=deb15cb9 [deb15cb9]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/kima/commit/?id=2a9c4d6f [2a9c4d6f]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/kima/commit/?id=adfb3437 [adfb3437]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kima/commit/?id=adfb3437 [adfb3437]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  +
  +
== kiosktool ==
  +
* [https://git.trinitydesktop.org/cgit/kiosktool/commit/?id=f1704dfe [f1704dfe]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== kkbswitch ==
 
== kkbswitch ==
  +
* [https://git.trinitydesktop.org/cgit/kkbswitch/commit/?id=910d4cd0 [910d4cd0]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kkbswitch/commit/?id=b668f9a0 [b668f9a0]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kkbswitch/commit/?id=b668f9a0 [b668f9a0]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/kkbswitch/commit/?id=83d3bdd4 [83d3bdd4]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kkbswitch/commit/?id=83d3bdd4 [83d3bdd4]] Merge translation files from master branch.
   
 
== klcddimmer ==
 
== klcddimmer ==
  +
* [https://git.trinitydesktop.org/cgit/klcddimmer/commit/?id=9792f11a [9792f11a]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/klcddimmer/commit/?id=b4c84799 [b4c84799]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/klcddimmer/commit/?id=b4c84799 [b4c84799]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/klcddimmer/commit/?id=9c2c4505 [9c2c4505]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/klcddimmer/commit/?id=9c2c4505 [9c2c4505]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== kmyfirewall ==
 
== kmyfirewall ==
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=5df559f4 [5df559f4]] CMake: Add explicit source dependency for generated header.<br/>This solves FTBFS with parallel build.
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=ec3aadb3 [ec3aadb3]] CMake conversion
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=da2eb213 [da2eb213]] Remove original copy of translation templates files
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=43ea0caf [43ea0caf]] Move .pot files to translations/messages subfolder
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=775bbec9 [775bbec9]] Add missing TDE_EXPORT required for hidden visibility support
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=3d1fba0b [3d1fba0b]] Add kmyfirewall.xpm from tde-packaging repo
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=6332e242 [6332e242]] Add missing .moc include directives
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=adf24510 [adf24510]] Remove [xx] entries from .desktop files
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=17c77753 [17c77753]] Remove unnecessary section in installer plugin desktop file
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=326f093a [326f093a]] Restructure doc folder
  +
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=e42fffb1 [e42fffb1]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=9411476d [9411476d]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kmyfirewall/commit/?id=9411476d [9411476d]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tde-guidance ==
 
== tde-guidance ==
  +
* [https://git.trinitydesktop.org/cgit/tde-guidance/commit/?id=1ac58023 [1ac58023]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tde-guidance/commit/?id=3c8e1521 [3c8e1521]] Drop autotools support
 
* [https://git.trinitydesktop.org/cgit/tde-guidance/commit/?id=3c8e1521 [3c8e1521]] Drop autotools support
 
* [https://git.trinitydesktop.org/cgit/tde-guidance/commit/?id=7b0bf9b0 [7b0bf9b0]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-guidance/commit/?id=7b0bf9b0 [7b0bf9b0]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tde-systemsettings ==
 
== tde-systemsettings ==
  +
* [https://git.trinitydesktop.org/cgit/tde-systemsettings/commit/?id=476f2db3 [476f2db3]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-systemsettings/commit/?id=0c37ee34 [0c37ee34]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tde-systemsettings/commit/?id=4693133e [4693133e]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tde-systemsettings/commit/?id=4693133e [4693133e]] Merge translation files from master branch.
   
 
== tdenetworkmanager ==
 
== tdenetworkmanager ==
  +
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=9ce7b22c [9ce7b22c]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=d12dce43 [d12dce43]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=ec406aac [ec406aac]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=ec406aac [ec406aac]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=26ea7034 [26ea7034]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=26ea7034 [26ea7034]] Merge translation files from master branch.
Line 448: Line 892:
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=5083399f [5083399f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=5083399f [5083399f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=bef558d0 [bef558d0]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdenetworkmanager/commit/?id=bef558d0 [bef558d0]] Merge translation files from master branch.
  +
  +
== tdesudo ==
  +
* [https://git.trinitydesktop.org/cgit/tdesudo/commit/?id=ecd8d3ab [ecd8d3ab]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdesudo/commit/?id=69558995 [69558995]] Merge translation files from master branch.
   
 
= applications/system =
 
= applications/system =
 
== dolphin ==
 
== dolphin ==
  +
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=067975c9 [067975c9]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=dd363344 [dd363344]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=4adc24b2 [4adc24b2]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=08388d1c [08388d1c]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=e8b51c3e [e8b51c3e]] Add Klipper Copy Full Path action for Dolphin
  +
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=5fe6bdaf [5fe6bdaf]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=8de6abea [8de6abea]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=a6b3d686 [a6b3d686]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=a6b3d686 [a6b3d686]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=ead76c2a [ead76c2a]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/dolphin/commit/?id=ead76c2a [ead76c2a]] Merge translation files from master branch.
Line 457: Line 912:
   
 
== katapult ==
 
== katapult ==
  +
* [https://git.trinitydesktop.org/cgit/katapult/commit/?id=1b49bc77 [1b49bc77]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/katapult/commit/?id=f07b0d8b [f07b0d8b]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/katapult/commit/?id=49381598 [49381598]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/katapult/commit/?id=49381598 [49381598]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/katapult/commit/?id=aaa62f62 [aaa62f62]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/katapult/commit/?id=aaa62f62 [aaa62f62]] Merge translation files from master branch.
Line 462: Line 919:
   
 
== kbfx ==
 
== kbfx ==
  +
* [https://git.trinitydesktop.org/cgit/kbfx/commit/?id=d17925e7 [d17925e7]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kbfx/commit/?id=a2938633 [a2938633]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kbfx/commit/?id=a2938633 [a2938633]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kbfx/commit/?id=244f59c2 [244f59c2]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kbfx/commit/?id=244f59c2 [244f59c2]] Merge translation files from master branch.
   
 
== kcmautostart ==
 
== kcmautostart ==
  +
* [https://git.trinitydesktop.org/cgit/kcmautostart/commit/?id=fba064a1 [fba064a1]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kcmautostart/commit/?id=46490365 [46490365]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kcmautostart/commit/?id=5b0a7b08 [5b0a7b08]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kcmautostart/commit/?id=d46f61a1 [d46f61a1]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kcmautostart/commit/?id=d46f61a1 [d46f61a1]] Merge translation files from master branch.
   
 
== kdbusnotification ==
 
== kdbusnotification ==
  +
* [https://git.trinitydesktop.org/cgit/kdbusnotification/commit/?id=d21c7a05 [d21c7a05]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kdbusnotification/commit/?id=6a96f59a [6a96f59a]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kdbusnotification/commit/?id=6a96f59a [6a96f59a]] Merge translation files from master branch.
   
 
== klamav ==
 
== klamav ==
  +
* [https://git.trinitydesktop.org/cgit/klamav/commit/?id=23e20ce3 [23e20ce3]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/klamav/commit/?id=0898f7c1 [0898f7c1]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/klamav/commit/?id=0898f7c1 [0898f7c1]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/klamav/commit/?id=11eaef48 [11eaef48]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/klamav/commit/?id=11eaef48 [11eaef48]] Merge translation files from master branch.
Line 478: Line 941:
   
 
== knemo ==
 
== knemo ==
  +
* [https://git.trinitydesktop.org/cgit/knemo/commit/?id=b04d9403 [b04d9403]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/knemo/commit/?id=1ebb94a8 [1ebb94a8]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/knemo/commit/?id=e6226215 [e6226215]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/knemo/commit/?id=e6226215 [e6226215]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  +
  +
== knetload ==
  +
* [https://git.trinitydesktop.org/cgit/knetload/commit/?id=4df65581 [4df65581]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== knetstats ==
 
== knetstats ==
  +
* [https://git.trinitydesktop.org/cgit/knetstats/commit/?id=837b10c4 [837b10c4]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/knetstats/commit/?id=4e984d25 [4e984d25]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/knetstats/commit/?id=4e984d25 [4e984d25]] Merge translation files from master branch.
  +
  +
== kooldock ==
  +
* [https://git.trinitydesktop.org/cgit/kooldock/commit/?id=cbf0ee92 [cbf0ee92]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== krusader ==
 
== krusader ==
  +
* [https://git.trinitydesktop.org/cgit/krusader/commit/?id=e868817c [e868817c]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/krusader/commit/?id=52151afe [52151afe]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/krusader/commit/?id=61b0c0e2 [61b0c0e2]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/krusader/commit/?id=77f63ab8 [77f63ab8]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/krusader/commit/?id=77f63ab8 [77f63ab8]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/krusader/commit/?id=ebd0c612 [ebd0c612]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/krusader/commit/?id=ebd0c612 [ebd0c612]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Line 491: Line 966:
   
 
== kshutdown ==
 
== kshutdown ==
  +
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=f7ff640b [f7ff640b]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=3410c791 [3410c791]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=549bf2bf [549bf2bf]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=549bf2bf [549bf2bf]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=3ef5a84e [3ef5a84e]] Update translation template.
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=3ef5a84e [3ef5a84e]] Update translation template.
Line 496: Line 973:
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=496baf37 [496baf37]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=496baf37 [496baf37]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=632d7522 [632d7522]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kshutdown/commit/?id=632d7522 [632d7522]] Merge translation files from master branch.
  +
  +
== ksystemlog ==
  +
* [https://git.trinitydesktop.org/cgit/ksystemlog/commit/?id=53f7b4b6 [53f7b4b6]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== kvkbd ==
  +
* [https://git.trinitydesktop.org/cgit/kvkbd/commit/?id=e06715d7 [e06715d7]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kvkbd/commit/?id=2e49eafc [2e49eafc]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kvkbd/commit/?id=ca8705e0 [ca8705e0]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kvkbd/commit/?id=36163735 [36163735]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== polkit-agent-tde ==
  +
* [https://git.trinitydesktop.org/cgit/polkit-agent-tde/commit/?id=96ce9abf [96ce9abf]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== smartcardauth ==
  +
* [https://git.trinitydesktop.org/cgit/smartcardauth/commit/?id=dcb47054 [dcb47054]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== tastymenu ==
 
== tastymenu ==
  +
* [https://git.trinitydesktop.org/cgit/tastymenu/commit/?id=c13b86f2 [c13b86f2]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tastymenu/commit/?id=7fb249e3 [7fb249e3]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tastymenu/commit/?id=1a5946c4 [1a5946c4]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tastymenu/commit/?id=1a5946c4 [1a5946c4]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tastymenu/commit/?id=0895b87f [0895b87f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tastymenu/commit/?id=0895b87f [0895b87f]] Merge translation files from master branch.
   
 
== tdebluez ==
 
== tdebluez ==
  +
* [https://git.trinitydesktop.org/cgit/tdebluez/commit/?id=a624cc94 [a624cc94]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdebluez/commit/?id=8c1d1ad5 [8c1d1ad5]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdebluez/commit/?id=e66100de [e66100de]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdebluez/commit/?id=ee33f37e [ee33f37e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdebluez/commit/?id=ee33f37e [ee33f37e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
Line 510: Line 1,007:
   
 
== tdepowersave ==
 
== tdepowersave ==
  +
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=e26aa282 [e26aa282]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=9b154f26 [9b154f26]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=1cf29573 [1cf29573]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=9a02138d [9a02138d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=9a02138d [9a02138d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=284595e2 [284595e2]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=284595e2 [284595e2]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=ec7d3d6d [ec7d3d6d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=ec7d3d6d [ec7d3d6d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=71d1417c [71d1417c]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdepowersave/commit/?id=71d1417c [71d1417c]] Merge translation files from master branch.
  +
  +
== tdesshaskpass ==
  +
* [https://git.trinitydesktop.org/cgit/tdesshaskpass/commit/?id=173e0ff5 [173e0ff5]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== yakuake ==
  +
* [https://git.trinitydesktop.org/cgit/yakuake/commit/?id=5a1c1934 [5a1c1934]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
= applications/tdeio =
 
= applications/tdeio =
 
== tdeio-appinfo ==
 
== tdeio-appinfo ==
  +
* [https://git.trinitydesktop.org/cgit/tdeio-appinfo/commit/?id=4bc2d0d9 [4bc2d0d9]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tdeio-appinfo/commit/?id=05e1f513 [05e1f513]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdeio-appinfo/commit/?id=05e1f513 [05e1f513]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdeio-appinfo/commit/?id=7f457455 [7f457455]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdeio-appinfo/commit/?id=7f457455 [7f457455]] Merge translation files from master branch.
   
 
== tdeio-apt ==
 
== tdeio-apt ==
  +
* [https://git.trinitydesktop.org/cgit/tdeio-apt/commit/?id=4609f1df [4609f1df]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tdeio-apt/commit/?id=4c21709a [4c21709a]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeio-apt/commit/?id=4c21709a [4c21709a]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeio-apt/commit/?id=c98dc1df [c98dc1df]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tdeio-apt/commit/?id=c98dc1df [c98dc1df]] Merge translation files from master branch.
   
 
== tdeio-ftps ==
 
== tdeio-ftps ==
  +
* [https://git.trinitydesktop.org/cgit/tdeio-ftps/commit/?id=26a7084d [26a7084d]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tdeio-ftps/commit/?id=51ed90dc [51ed90dc]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/tdeio-ftps/commit/?id=51ed90dc [51ed90dc]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/tdeio-ftps/commit/?id=9cff6e3b [9cff6e3b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeio-ftps/commit/?id=9cff6e3b [9cff6e3b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Line 533: Line 1,042:
   
 
== tdeio-locate ==
 
== tdeio-locate ==
  +
* [https://git.trinitydesktop.org/cgit/tdeio-locate/commit/?id=7ab3f918 [7ab3f918]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tdeio-locate/commit/?id=d27aac8e [d27aac8e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tdeio-locate/commit/?id=d27aac8e [d27aac8e]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tdeio-sword ==
 
== tdeio-sword ==
  +
* [https://git.trinitydesktop.org/cgit/tdeio-sword/commit/?id=75ef2684 [75ef2684]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tdeio-sword/commit/?id=6ae4c97f [6ae4c97f]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/tdeio-sword/commit/?id=6ae4c97f [6ae4c97f]] Use proper TQt headers
  +
  +
== tdeio-umountwrapper ==
  +
* [https://git.trinitydesktop.org/cgit/tdeio-umountwrapper/commit/?id=db319b71 [db319b71]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdeio-umountwrapper/commit/?id=79d9431f [79d9431f]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tdeio-umountwrapper/commit/?id=8e0ca404 [8e0ca404]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
= applications/themes =
 
= applications/themes =
 
== gtk-qt-engine ==
 
== gtk-qt-engine ==
  +
* [https://git.trinitydesktop.org/cgit/gtk-qt-engine/commit/?id=3bec2631 [3bec2631]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/gtk-qt-engine/commit/?id=fbedaf32 [fbedaf32]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/gtk-qt-engine/commit/?id=b15dc96d [b15dc96d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/gtk-qt-engine/commit/?id=b15dc96d [b15dc96d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/gtk-qt-engine/commit/?id=5965bc2b [5965bc2b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/gtk-qt-engine/commit/?id=5965bc2b [5965bc2b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Line 545: Line 1,063:
   
 
== gtk3-tqt-engine ==
 
== gtk3-tqt-engine ==
  +
* [https://git.trinitydesktop.org/cgit/gtk3-tqt-engine/commit/?id=988eb3e8 [988eb3e8]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/gtk3-tqt-engine/commit/?id=a050a81d [a050a81d]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/gtk3-tqt-engine/commit/?id=5674ef65 [5674ef65]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/gtk3-tqt-engine/commit/?id=5674ef65 [5674ef65]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== kgtk-qt3 ==
 
== kgtk-qt3 ==
  +
* [https://git.trinitydesktop.org/cgit/kgtk-qt3/commit/?id=ddbb27e3 [ddbb27e3]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kgtk-qt3/commit/?id=91ea80de [91ea80de]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kgtk-qt3/commit/?id=86825e65 [86825e65]] Fix build with gcc14 and various warnings
  +
* [https://git.trinitydesktop.org/cgit/kgtk-qt3/commit/?id=5486e122 [5486e122]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kgtk-qt3/commit/?id=bd3836fd [bd3836fd]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kgtk-qt3/commit/?id=bd3836fd [bd3836fd]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== ksplash-engine-moodin ==
 
== ksplash-engine-moodin ==
  +
* [https://git.trinitydesktop.org/cgit/ksplash-engine-moodin/commit/?id=c6da8960 [c6da8960]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/ksplash-engine-moodin/commit/?id=55074cd6 [55074cd6]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksplash-engine-moodin/commit/?id=55074cd6 [55074cd6]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksplash-engine-moodin/commit/?id=2c028f0f [2c028f0f]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/ksplash-engine-moodin/commit/?id=2c028f0f [2c028f0f]] Merge translation files from master branch.
   
 
== tde-style-baghira ==
 
== tde-style-baghira ==
  +
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=49507c2a [49507c2a]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=17dc7880 [17dc7880]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=8305b8a8 [8305b8a8]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=412ec439 [412ec439]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=da4085d9 [da4085d9]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=da4085d9 [da4085d9]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=7f714dc0 [7f714dc0]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tde-style-baghira/commit/?id=7f714dc0 [7f714dc0]] Merge translation files from master branch.
Line 561: Line 1,090:
   
 
== tde-style-domino ==
 
== tde-style-domino ==
  +
* [https://git.trinitydesktop.org/cgit/tde-style-domino/commit/?id=62287944 [62287944]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tde-style-domino/commit/?id=c49ca8f4 [c49ca8f4]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tde-style-domino/commit/?id=c49ca8f4 [c49ca8f4]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tde-style-domino/commit/?id=a70ae40d [a70ae40d]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-style-domino/commit/?id=a70ae40d [a70ae40d]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tde-style-ia-ora ==
 
== tde-style-ia-ora ==
  +
* [https://git.trinitydesktop.org/cgit/tde-style-ia-ora/commit/?id=1a26902a [1a26902a]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tde-style-ia-ora/commit/?id=e2b2fb69 [e2b2fb69]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-style-ia-ora/commit/?id=e2b2fb69 [e2b2fb69]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tde-style-lipstik ==
 
== tde-style-lipstik ==
  +
* [https://git.trinitydesktop.org/cgit/tde-style-lipstik/commit/?id=d89f6a50 [d89f6a50]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/tde-style-lipstik/commit/?id=e38d11b0 [e38d11b0]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tde-style-lipstik/commit/?id=e38d11b0 [e38d11b0]] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
 
* [https://git.trinitydesktop.org/cgit/tde-style-lipstik/commit/?id=8898e019 [8898e019]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-style-lipstik/commit/?id=8898e019 [8898e019]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== tde-style-polyester ==
 
== tde-style-polyester ==
  +
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=f9c956c1 [f9c956c1]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=fdd5b42c [fdd5b42c]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=dec195e8 [dec195e8]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=dec195e8 [dec195e8]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=7c56e0db [7c56e0db]] Fix loading of window decoration module in twin
 
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=7c56e0db [7c56e0db]] Fix loading of window decoration module in twin
 
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=a128939a [a128939a]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/tde-style-polyester/commit/?id=a128939a [a128939a]] Merge translation files from master branch.
  +
  +
== tde-style-qtcurve ==
  +
* [https://git.trinitydesktop.org/cgit/tde-style-qtcurve/commit/?id=0e082531 [0e082531]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/tde-style-qtcurve/commit/?id=16e1ac77 [16e1ac77]] Merge translation files from master branch.
  +
  +
== tdmtheme ==
  +
* [https://git.trinitydesktop.org/cgit/tdmtheme/commit/?id=58bdab77 [58bdab77]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== twin-style-crystal ==
 
== twin-style-crystal ==
  +
* [https://git.trinitydesktop.org/cgit/twin-style-crystal/commit/?id=8190d806 [8190d806]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/twin-style-crystal/commit/?id=656df248 [656df248]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/twin-style-crystal/commit/?id=656df248 [656df248]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== twin-style-dekorator ==
 
== twin-style-dekorator ==
  +
* [https://git.trinitydesktop.org/cgit/twin-style-dekorator/commit/?id=4b397d9a [4b397d9a]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/twin-style-dekorator/commit/?id=4d8078e6 [4d8078e6]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/twin-style-dekorator/commit/?id=4d8078e6 [4d8078e6]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== twin-style-fahrenheit ==
 
== twin-style-fahrenheit ==
  +
* [https://git.trinitydesktop.org/cgit/twin-style-fahrenheit/commit/?id=25914352 [25914352]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/twin-style-fahrenheit/commit/?id=27568ec8 [27568ec8]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/twin-style-fahrenheit/commit/?id=27568ec8 [27568ec8]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/twin-style-fahrenheit/commit/?id=50ad465a [50ad465a]] Fix loading of window decoration module in twin
 
* [https://git.trinitydesktop.org/cgit/twin-style-fahrenheit/commit/?id=50ad465a [50ad465a]] Fix loading of window decoration module in twin
Line 588: Line 1,132:
   
 
== twin-style-machbunt ==
 
== twin-style-machbunt ==
  +
* [https://git.trinitydesktop.org/cgit/twin-style-machbunt/commit/?id=86044a8b [86044a8b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/twin-style-machbunt/commit/?id=4fb5c88b [4fb5c88b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/twin-style-machbunt/commit/?id=4fb5c88b [4fb5c88b]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== twin-style-suse2 ==
 
== twin-style-suse2 ==
  +
* [https://git.trinitydesktop.org/cgit/twin-style-suse2/commit/?id=bc181192 [bc181192]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/twin-style-suse2/commit/?id=a7b408a9 [a7b408a9]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/twin-style-suse2/commit/?id=a7b408a9 [a7b408a9]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
= applications/utilities =
 
= applications/utilities =
  +
== kbarcode ==
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=2e75f1a0 [2e75f1a0]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=c8c4d5e9 [c8c4d5e9]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=c1bb3e8e [c1bb3e8e]] Update translation template.
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=10acf645 [10acf645]] Use libpcre2 instead of libpcre
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=2e1cbea3 [2e1cbea3]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=a21beac7 [a21beac7]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=580668a9 [580668a9]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kbarcode/commit/?id=4e0f5f18 [4e0f5f18]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
 
== kchmviewer ==
 
== kchmviewer ==
  +
* [https://git.trinitydesktop.org/cgit/kchmviewer/commit/?id=32251ec3 [32251ec3]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kchmviewer/commit/?id=21880c6d [21880c6d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kchmviewer/commit/?id=21880c6d [21880c6d]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kchmviewer/commit/?id=2841453c [2841453c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kchmviewer/commit/?id=2841453c [2841453c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
   
 
== kcpuload ==
 
== kcpuload ==
  +
* [https://git.trinitydesktop.org/cgit/kcpuload/commit/?id=a085a3d7 [a085a3d7]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/kcpuload/commit/?id=e9a4639b [e9a4639b]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/kcpuload/commit/?id=653ea9b4 [653ea9b4]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/kcpuload/commit/?id=653ea9b4 [653ea9b4]] Merge translation files from master branch.
  +
  +
== kdirstat ==
  +
* [https://git.trinitydesktop.org/cgit/kdirstat/commit/?id=e4d6a657 [e4d6a657]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== keep ==
 
== keep ==
  +
* [https://git.trinitydesktop.org/cgit/keep/commit/?id=2568c7e3 [2568c7e3]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/keep/commit/?id=9674d36c [9674d36c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/keep/commit/?id=9674d36c [9674d36c]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/keep/commit/?id=ad75f0b7 [ad75f0b7]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/keep/commit/?id=ad75f0b7 [ad75f0b7]] Merge translation files from master branch.
  +
  +
== knutclient ==
  +
* [https://git.trinitydesktop.org/cgit/knutclient/commit/?id=11b5d31d [11b5d31d]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== kommando ==
 
== kommando ==
  +
* [https://git.trinitydesktop.org/cgit/kommando/commit/?id=de55730f [de55730f]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
* [https://git.trinitydesktop.org/cgit/kommando/commit/?id=0289c35c [0289c35c]] Replace kdemacros.h with tdemacros.h
 
* [https://git.trinitydesktop.org/cgit/kommando/commit/?id=8d48abe4 [8d48abe4]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
 
* [https://git.trinitydesktop.org/cgit/kommando/commit/?id=8d48abe4 [8d48abe4]] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  +
  +
== kompose ==
  +
* [https://git.trinitydesktop.org/cgit/kompose/commit/?id=038236ec [038236ec]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
   
 
== krename ==
 
== krename ==
  +
* [https://git.trinitydesktop.org/cgit/krename/commit/?id=5fad42a4 [5fad42a4]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/krename/commit/?id=3bab0c81 [3bab0c81]] Merge translation files from master branch.
 
* [https://git.trinitydesktop.org/cgit/krename/commit/?id=3bab0c81 [3bab0c81]] Merge translation files from master branch.
   
 
== ksensors ==
 
== ksensors ==
  +
* [https://git.trinitydesktop.org/cgit/ksensors/commit/?id=e3e0c521 [e3e0c521]] Merge translation files from master branch.
  +
* [https://git.trinitydesktop.org/cgit/ksensors/commit/?id=d6b154e9 [d6b154e9]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
 
* [https://git.trinitydesktop.org/cgit/ksensors/commit/?id=f13a2038 [f13a2038]] Use proper TQt headers
 
* [https://git.trinitydesktop.org/cgit/ksensors/commit/?id=f13a2038 [f13a2038]] Use proper TQt headers
  +
  +
== mathemagics ==
  +
* [https://git.trinitydesktop.org/cgit/mathemagics/commit/?id=e430b151 [e430b151]] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  +
  +
== qalculate-tde ==
  +
* [https://git.trinitydesktop.org/cgit/qalculate-tde/commit/?id=f524ba99 [f524ba99]] Merge translation files from master branch.
   
 
= packaging =
 
= packaging =
 
== packaging ==
 
== packaging ==
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=3e47a130 [3e47a130]] ArchLinux: Update for final R14.1.3.<br/>Add pkgbuilds for several applications.<br/>Add pkgbuild for libvisual dependency.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=7ac12650 [7ac12650]] RPM: Update for final R14.1.3
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=3486112a [3486112a]] FreeBSD: Update for final R14.1.3.<br/>Add ports for several applications.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=4fb77ce7 [4fb77ce7]] DEB: rename xdg-desktop-portals-trinity to xdg-desktop-portal-trinity
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=9e598c2c [9e598c2c]] DEB kmyfirewall: cmake conversion
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=76e073ac [76e073ac]] DEB xdg-desktop-portal-tde: Add dependency on frontend service xdg-desktop-portal.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=7c0ebb4c [7c0ebb4c]] DEB: add xdg-desktop-portal-tde packaging files
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=4c787867 [4c787867]] RPM: many updates for upcoming R14.1.3
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=e81c987a [e81c987a]] RPM: re-add dependency to gcc-c++ (with condition)
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=ba22e312 [ba22e312]] Add clang compile support<br/>- Add check for installed compiler, remove BuildRequires<br/>- Add platform option for clang when the default symlink resolves to it<br/>- Add OpenMandriva specific checks for required files removed during<br/> packaging<br/>- Comment missing docs, install, and headers during packaging process<br/>- Increment version number to latest stable release<br/>- Replace symlink for build-examples with the actual file, install dereferences<br/>- Add missing translation file for "tr"<br/>- Fix lib prefixes for dependencies needed in MDK/OMV for 64 bit
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=43c883d1 [43c883d1]] DEB: add twin-style-mallory
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=dc384f82 [dc384f82]] DEB amarok: Remove libmp4v2-dev from build-depends.<br/>Support in Taglib is now used for MP4 metadata.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=b6495d8b [b6495d8b]] DEB: move universal-indent-gui-tqt to 'Development' folder
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=6ea13cb9 [6ea13cb9]] DEB: add universal-indent-gui-tqt packaging files
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=f66b8764 [f66b8764]] RPM: add support for Fedora 41
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=c613bf5a [c613bf5a]] DEB tdebase: remove kcm_khotkeys_init library, no loger required
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=0b5a373f [0b5a373f]] DEB tdebase: add desktop file for khotkeys kded service
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=50153ac5 [50153ac5]] DEB kubuntu-meta: Add build-arch to PHONY targets.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=900d4f12 [900d4f12]] DEB ksquirrel: Add build-arch to PHONY targets.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=8de502d0 [8de502d0]] DEB sip4-tqt: Add build-arch to PHONY targets.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=1055d215 [1055d215]] DEB tdebase - kcontrol: Fix the path for generating the udev rules for the Logitech mouses.<br/>Generation of udev rules updated for currently used attribute names.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=0c7629b9 [0c7629b9]] DEB tdebase - kcontrol: add touchpad configuration module.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=bf8c1636 [bf8c1636]] DEB tdebase - klipper: Add Copy Full Path action for Konqueror.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=acf3abd6 [acf3abd6]] Remove unnecessary dependency for libpcre
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=007c5555 [007c5555]] DEB tdebase twin: use libpcre2 instead of libpcre
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=c64e55af [c64e55af]] DEB tdelibs kjs: use libpcre2 instead of libpcre
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=15319cbc [15319cbc]] DEB tqt3: Add libnsl-dev to build-depends.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=172a3644 [172a3644]] DEB kmyfirewall: kmyfirewall.xpm has been moved to main repository
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=f58f51df [f58f51df]] DEB kmyfirewall: remove unnecessary files
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=f1e34b24 [f1e34b24]] DEB tdebase: Add libtirpc-dev to build-depends.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=5f499934 [5f499934]] DEB tdebase: add new tiling icons to twin package
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=8c133614 [8c133614]] DEB tdebase: Update kwrite patch for Ubuntu.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=85562624 [85562624]] DEB tde-ebook-reader: use a variable for the library directory of architecture.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=1035fb68 [1035fb68]] DEB: add tde-ebook-reader packaging files
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=a20efbd9 [a20efbd9]] DEB polkit-agent-tde: Add polkitd as an alternative for policykit-1.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=89e06621 [89e06621]] DEB polkit-tqt: Add polkitd as an alternative for policykit-1.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=661d57c9 [661d57c9]] DEB tdelibs: remove dummy kdemacros.h file
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=891dc2cd [891dc2cd]] DEB tdelibs: add tdemacros.h
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=6b5986e3 [6b5986e3]] RPM: updates for OpenSuse LEAP 15.6
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=1f78e4c1 [1f78e4c1]] DEB: Add support for Ubuntu Oracular, drop support for Ubuntu Kinetic.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=dae553b3 [dae553b3]] ArchLinux imlib: Provide binary package for all architectures.
  +
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=060b5447 [060b5447]] RPM: updates for openmandriva
 
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=24cdefc8 [24cdefc8]] DEB tdebase: Update for [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/490 TDE/tdebase#490]<br/>Kate null action icon removed.
 
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=24cdefc8 [24cdefc8]] DEB tdebase: Update for [https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/490 TDE/tdebase#490]<br/>Kate null action icon removed.
 
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=aadff2c4 [aadff2c4]] DEB tdelibs: Enable build with WebP support.
 
* [https://git.trinitydesktop.org/cgit/packaging/commit/?id=aadff2c4 [aadff2c4]] DEB tdelibs: Enable build with WebP support.

Latest revision as of 12:10, 25 October 2024

common

admin

  • [afaec96a] Fix FTBFS with Python 3.13.
    This solves issue #33
  • [6fa5fdb7] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [d2186b1a] am_edit: Cover all wizard include variants and class name in one regexp.
  • [3c9e11e1] Rename kdemacros.h to tdemacros.h
  • [36c8888e] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

dependencies

tde-cmake

  • [b7e33800] Update version to R14.1.3.
  • [2f37ffcc] tde_create_translated_desktop: Fix processing of files with spaces in name.
  • [5283559e] tde_import: Always do 'include' because macro can be called in a scope that is not global.
  • [5e1ef63e] Remove __KDE_HAVE_GCC_VISIBILITY
  • [713b969b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY. Temporarily __KDE_HAVE_GCC_VISIBILITY is still provided, till renaming on all TDE code base is completed.
  • [03a1c2f4] tde_uic: Cover all wizard include variants and class name in one regexp.
  • [f1352532] Rename kdemacros.h to tdemacros.h
  • [68452c7f] tde_import: Reducing the noise, more common listing of the result.
  • [d9c41557] Add support for relative paths in '_tde_internal_setup_path'
  • [9d383967] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [9a81dc39] Update version to R14.1.3~[DEVELOPMENT]

tqt3

  • [0752cff4] Merge translation files from master branch.
  • [c9932b7c] Make sure to release thread resources back to the OS once the thread completes.
    Threads created with pthread are created in detach mode. Threads created using glib thread functions are instead created as joinable. The fix makes glib-created threads detached, so that the thread resources are released when the thread completes.
    This resolves TDE/amarok#30 and will benefit any place where a TQThread is used.
    Manually cherry-picked from commit 81288cfc.
  • [24032974] Fix fallover case for TQEvent::MetaCall
    Manually cherry-picked from commit 24b42848.
  • [b6eef6a4] Fix possible SEGV if the sender object list was null and thread support enabled
    Commit manually cherry-picked from 8e653076.
  • [08ac5cce] Improve handling of the global post event list in order to minimize possible crashes on exit.
    Key points:
    1. a TQPostEventList can now have an associated mutex, which is used in case of the global post event list (GPEL)
    2. the lifetime of the GPEL is no longer associated to the lifetime of the TQApplication object, but rather extended to the lifetime of the main thread. The GPEL is a static local initialized on first access and destroyed when the global static object destructor is invoked
    3. access to the GPEL after the TQApplication object has been destroyed has been minimized by protecting calls in ~TQObject() and ~TQWidget().
    4. special care was taken not to affect performances or unnecessarily create tons of unused TQMutexes
    This replaces PR #182. Technically it is still possibly unsafe due to the order of destruction of the globat static objects not being guaranteed across multiple compilation units, but the aforementioned changes should minimize (possible to zero) the chances of a SEGV happening.
  • [09d080c0] Added check for tqApp pointer in TQWidget destructor
    Necessary for the application to shut down properly
  • [e06dfea3] Fix OpenType language definition tags and array access. This resolves issue #171
  • [b634a4f6] Fix a missing `if` clause guard
    It was mismatched with indents and sibling `if` clause cases.
  • [cd45e22a] Fix to compare thread_id with `pthread_equal()`
    `pthread_t` is an opaque type, should not be compared with `==`.
  • [03ef2cdd] Remove commercial site content and documentation
    trolltech domain is no longer valid.
  • [8141b881] Correctly release glib mainloop and gsource, to avoid memory leaks

tqtinterface

  • [1e47a121] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [d4f8267e] Remove unnecessary files and processing when building libtqt.so.

akode

  • [400687a3] Fix version check for akode_write and ffmpeg 7.x.
  • [a4d07cf6] Fix compatibility with ffmpeg 7.x
  • [88d21b1b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

arts

  • [0f72e47c] Improve fatal error messages
  • [30779eb2] Fix incorrect command name
  • [999d426c] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [7f3dda33] Rename thread mutex related debug flag name
    It is used to detect multiple mutex lock, not just for pthread related
    debugging.
  • [75cb448c] Fix usage of `pthread_t`
    `pthread_t` is opaque type.
    Change to compare with `pthread_equal()` and introduce validate flag.
  • [210a7151] fix to use AudioIOSun on Solaris and NetBSD
    `USE_SOLARIS` is not defined (related to TDE/tde#74).
    On NetBSD, native audio system audioio(4) i.e. sunaudio is preferred.

avahi-tqt

  • [cb6ab292] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

dbus-1-tqt

libart-lgpl

  • [52ecb65b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

libcaldav

  • [023b3918] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

libcarddav

  • [a3d434ae] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

sip4-tqt

  • [fa5e4646] Fix FTBFS with Python 3.13.
    This solves issue #26
  • [7f3c0748] Added prototype of yylex() function
    Required for building with the new gcc-14

tqscintilla

  • [2116474a] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

pytqt

  • [5afb6e8e] Fix FTBFS with Python 3.13.
    This solves issue #32
  • [03a1fe47] Fix example translations for pytqt
  • [3dec37ec] Changing string types to bytes for pytquic
    For python3 you need to explicitly specify the bytes type, it is different from strings

tqca

  • [33b8372a] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [efc46edc] Use `pkg_get_variable` to retrieve the value of pkg-config variable
    It is a new feature in CMake version 3.4, CMake-3.5 is required for
    TDE now.

core

tdelibs

  • [98cd2f96] Update version to R14.1.3.
  • [ab167e15] Fix syntax error when using tqmoc on tdestoragedevice.h
    TDE now requires c++11, so the conditional code is no longer required.
  • [3d8df21c] tdeio - scheduler: Fix crash if the job or slave are not valid.
  • [e711642d] Add kascii* methods previously part of tdepim/libemailfunctions
  • [f9615ed5] Kate: update rust syntax to highlight alerts and todo.
  • [c5c7697c] Improve JasPer 3/4 support
    Versions prior to 3 registered an atexit hander which performed resource
    cleanup with 'jas_cleanup', this was removed in version 3 meaning we
    were leaking resources.
    The 'jas_init' and 'jas_cleanup' functions were deprecated in version 3,
    so we use the newer jas_init_library/jas_init_thread functions.
    The max memory that JasPer can use has been limited to (at most) 512 MB.
    Without this change, JasPer will use whatever JAS_DEFAULT_MAX_MEM_USAGE
    is configured to, which is 1 GB by default.
  • [4ba00075] Fix FTBFS introduced by PR #302
    LibTIFF versions 4.2.0 and older used custom integer types, causing
    distributions with those versions to fail when building.
    In 4.3.0 and newer, the 'uint16' and 'uint32' types are deprecated,
    so this removes the deprecation warnings and keeps compatibility with
    any versions of LibTIFF where uint16 and uint32 did not equal their
    stdint.h counterparts.
  • [e2732d38] kimgio: Support TIFF transparency
    See: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/issues/282
  • [269661fa] kjs - pcre: Fix crash if regexp is invalid.
    If the regular expression is invalid and pcre2_compile ends with error,
    match_data will remain uninitialized, which in turn leads to crash on
    pcre2_match_data_free in RegExp destructor.
  • [e034c819] Fix TDECModuleInfo::needsTest() returning always false
    Properties such as this first make a call to the protected loadAll() method if the modules desktop files
    have not been processed yet, but such a call was for some reason missing from the needsTest() function,
    resulting in the method always returning false unless another function called loadAll() first.
  • [9be6785a] tqtglobaldefines.h only contains comments, so it is an unnecessary inclusion
  • [a1b7068d] Fix display of icon for filenames with multiple dots in the icon dialog window.
    This patch has been adapted from the equivalent patch in the Suse's KDE3 repositories created by Yasuhiko Kamata.
    https://build.opensuse.org/projects/KDE:KDE3/packages/kdelibs3/files/kdelibs-multiple-dot-iconfile.patch
  • [cc8ddafa] Check KDE start condition if TDE start condition was not found. This refers to issue #283
  • [3ccc8ad9] kjs: use libpcre2 instead of libpcre
  • [8b5a4521] Explicitly skip KDE xdg autostart files. This relates to issue #283
  • [20badf14] Improve and fix autostart support for KDE programs. This relates to issue #283
  • [66028a61] Remove __KDE_HAVE_GCC_VISIBILITY
  • [34e58a5f] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY. Temporarily __KDE_HAVE_GCC_VISIBILITY is still provided, till renaming on all TDE code base is completed.
  • [a4a424a3] Remove dummy kdemacros.h file
  • [41737353] Rename kdemacros.* files to tdemacros.*
    A dummy 'kdemacros.h' has been added to allow TDE to built till renaming is carried out across the whole code base. It will then be removed.
  • [69ec8f3e] Use tq* headers instead of ntq* ones
  • [89b880a0] Merge translation files from master branch.
  • [46838919] Merge translation files from master branch.
  • [767dff65] Merge translation files from master branch.
  • [750384b9] KDirOperator: add support for history navigation mouse buttons
  • [07dfb84a] Merge translation files from master branch.
  • [c1ea7021] kimgio: Add kimgio desktop files to the translation.
  • [3856007b] Kate: use paths for local files in modified on disk dialog
  • [0ec3c25c] Merge translation files from master branch.
  • [402f0ff4] Remove KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL
  • [7476deac] Merge translation files from master branch.
  • [70c31758] Update translation template.
  • [09fd7adf] Added image/webp to tdehtmlimage's list of supported formats
  • [533b0264] Added mimetypes/image/webp.desktop
  • [8414af17] Adds WebP read support to kimgio
  • [b74ce592] Replace KDE_DEPRECATED with TDE_DEPRECATED.
    This relates to #275 - part specific to R14.1.x branch.
  • [8ea80a77] Remove KDE_ISLIKELY and KDE_ISUNLIKELY defines
  • [4864f9da] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [9c9f5bf8] Remove KDE_DEPRECATED define
  • [83d0d2ce] Kate syntax: allow PHP heredoc closing identifiers to be idented
    It is allowed syntax since PHP version 7.3.0.
    See https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
  • [f23f0ef9] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [cce9e894] Remove KDE_EXPORT and KDE_NO_EXPORT defines
  • [62949e0a] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [bef9baf7] Update version to R14.1.3~[DEVELOPMENT]

tdebase

  • [04b48a89] Update R14.1.3 release notes to final version
  • [b61f27f7] ksmserver: Fix FTBFS when building without tdehw library.
  • [524eb4d5] Merge translation files from master branch.
  • [e2b5f424] Merge translation files from master branch.
  • [be5424c4] Merge translation files from master branch.
  • [0515333d] Merge translation files from master branch.
  • [42cc199f] Update translation template.
  • [82ec9916] TDESynDaemon: prevent more than one instance from running at the same time
  • [eac0d870] KControl: Add option to toggle visibility of hidden modules
  • [10675b72] khotkeys: make sure the kded service is controlled only by the Service Manager in TCC.
    Also make sure any changes to Input Action is immediately notified to
    the kded service.
    This resolves issue #537
    1. Fix kded service startup settings.
    In TCC --> Regional & Accessibility --> Input Actions --> General
    Settings tab, there was a checkbox to "disable the daemon". This was
    either quitting or relaunching khotkeys as a standalone application,
    overlapping any choice set in the TCC -> TDE Components --> Service
    Manager page.
    khotkeys is now launched as a kded service, therefore the aforemention
    checkbox is no longer required. If a user choose to manually launch
    khotkeys as a standalone application, they can disable it by simply
    terminating the application (either by killing it or quitting through
    DCOP).
    2. Notify Input Actions changes to the kded service
    If Input Actions are changed, the changes will be notified to either the
    kded service or the standalone khotkeys application, depending on which
    of the two is running.
    3. the kcm_khotkeys_init library has been removed since it is no longer
    necessary.
  • [1a8369c8] Merge translation files from master branch.
  • [4123f156] Merge translation files from master branch.
  • [6b615f8a] Update translation template.
  • [ba58d6ad] Various fixes for khotkeys. This resolves issue #326
    1. ensure there is a single khotkeys instance running per session
    instead of per screen (remote multihead related code)
    2. allow khotkeys to be run as a kded module
    3. make sure that khotkeys run either as a standalone application or as
    a kded module, but not both at the same time
    4. do not register khotkeys as a main DCOP entry (like an app) anymore.
    When run as kded module, this was causing kded to be registered as
    khotkeys a second time.
  • [77134aea] KControl: Fix test function of Joystick module
  • [a05ee7f7] Merge translation files from master branch.
  • [03e50a17] kcontrol touchpad: rename syndaemon to tdesyndaemon
  • [5dcbaf6b] Merge translation files from master branch.
  • [d9f73a1e] Update translation template.
  • [2af9d1ed] KControl: add touchpad configuration module
    Supports the Libinput and Synaptics drivers, includes documentation and inpupt-touchpad icon.
  • [63178a88] KControl: implement dynamic module tests
    Since KDE 3.4 there is underlying support for dynamically determining whether a module should
    be loaded or not, depending on an exported test function which would return a boolean value
    depending on the success of one or more tests (e.g. for presence of specific hardware).
    This approach is documented but has so far not been implemented by the TDE Control Centre.
    This commit adds a check to the TCC which performs the test function if needed (that is, if
    the X-TDE-Test-Module property is true) and, if it returns false, prevents showing the
    module in the tree list, which is the intended behaviour of the test function feature.
    For more information see:
    https://wiki.trinitydesktop.org/index.php?title=TDEConfig_Module_HOWTO&oldid=1893#Making_a_KCModule_dynamically_available
  • [0046b760] Klipper: Use translations from klipper-desktops for Copy Full Path action for Konqueror.
  • [d7760242] Merge translation files from master branch.
  • [61e633f5] Merge translation files from master branch.
  • [2e3c7151] Merge translation files from master branch.
  • [c0203e4c] Update translation template.
  • [6659eb22] Klipper: add Copy Full Path action for Konqueror
  • [51fdc21a] twin compton: use libpcre2 instead of libpcre
  • [e2ed0707] Merge translation files from master branch.
  • [d888793f] Merge translation files from master branch.
  • [f5cd123b] Fix tiling menu functionality when windows in the taskbar are grouped
  • [c57ea5f2] TWin, Kicker: Add icons for tiling menus
  • [72fce97c] Add support for window tiling to the taskbar and window's popup menus. This relates to TDE/tdebase#349
  • [673e48af] Merge translation files from master branch.
  • [147f7ffc] Improve settings for some sliders related to keyboard, accessibility and style. This also solves issue #513
  • [5bb53d86] Use server icon for remote folders
    This icon is more accurate than the more generic applications-internet.
    Includes a tdeconf_update script.
  • [0657fdb9] KNetAttach: Added SFTP connection type
  • [4f090708] Remote protocol: add UDS_LOCAL_PATH atom to remote folders
    This change makes it possible for network folders in Remote Places to be moved to and restored from the Trash folder.
    Before this change, such folders could only be removed via deletion (shift+delete) and could not be restored afterwards.
  • [d0616cdd] kcmkeys: update keyboard shortcut schemes
    - Add actions related to keys XF86Sleep (Suspend) and XF86ScreenSaver (Lock Session)
    - Fix name of "Log Out" actions
  • [4371e3c9] KSMServer: reload power-managerrc settings every time before they are needed
  • [eb1c3eed] Add support for assigning global shortcuts for suspend actions
    The corresponding shortcuts have been added as part of the KDesktop shortucts, to complement similar options (logout, shutdown, reboot).
    The shortcuts are only shown for the options that KSMServer reports via DCOP as valid.
    In order to do be able to make a DCOP call from kdesktopbindings.cpp, the <dcopref.h> include had to be added to several files of the shortcuts TDECM.
  • [db3f842c] KSMServer: improve suspend code
    1. Some code deduplication. Suspending is now handled via the public method `suspend(int)` which is DCOP-accessible and maps SuspendType values to corresponding TDEHWLib TDESystemPowerState values, and the internal method `suspendInternal(int)` which performs the chosen suspend and optionally locks the screen beforehand.
    2. Options are now read from power-managerrc on startup and stored in memory to avoid reading the configuration file every time a suspend is requested.
    3. SuspendType is now a member of KSMServer class (instead of KSMShutdownDlg)
    4. A new DCOP-accessible method `suspendOptions()` returns a TQStringList of all available suspend options.
  • [18d7e664] Merge translation files from master branch.
  • [a857609d] Improve location of kate and kwrite desktop files. This resolves issue #327
  • [9a7df655] konsole: fix column width calculation for string
    TQString accessor is 0-based.
  • [b97477fa] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [1765b8f0] Replace kdemacros.h with tdemacros.h
  • [99917282] Fix for building tdm with gcc-14
    Solution to issue #505
  • [b43cb9bf] Use tq* headers instead of ntq* ones
  • [97383ddf] Merge translation files from master branch.
  • [acf31aed] Merge translation files from master branch.
  • [e72d76b3] konqueror: Update URL of TQt Reference Documentation
  • [e445759a] konqueror: Update URL of Trinity API Reference
  • [985353c7] Merge translation files from master branch.
  • [0fc217ed] Mouse TDECM: do not hide checkboxes in case of option unavailability
  • [10732c77] Mouse TDECM: Improve wording for whatsThis options
    Affected options are "Reverse scroll direction" and "Swap history navigation buttons"
  • [fb0f60cc] Mouse TDECM: add option to swap history navigation buttons
    This leverages the existing code that interacts with X11 and sets the setting system-wide, as happens already with scroll direction reversal.
    This resolves issue #497
  • [1a7d33af] Merge translation files from master branch.
  • [d2c1284e] Update translation template.
  • [104fd81e] Fix khotkeys autostart unnecessary feedback. This resolves issue #495
  • [3b75bf0a] Kate: use paths for local files instead of file:/// URLs.
  • [9fe2bb32] Kate: display file type icon and tooltip in viewspace
  • [a599fb97] Kate: display file type icons in file list
  • [b54bd51c] Kate: use mouse back/forward buttons to move between open documents
    The direction of movement can be configured (reversed) through the
    settings dialog.
  • [3f9a9bab] l10n: fix typo in locale
    zn_CN should actually be zh_CN
  • [4765f925] Fix KJobViewer autostart. This resolves issue #492
  • [a92de61f] Konqueror: Add support for back/forward actions using history mouse buttons
    This closes #421
  • [07202787] Fix the detecion and use of the udev library.
  • [518c6806] konsole: Add Solarized dark and light color schemes
  • [6eec2a60] Adds thumbnail generation for WebP images
    This resolves issue #380
  • [3dd373bc] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [87f85a9a] Merge translation files from master branch.
  • [62547444] Build documentation for each subpackage separately
  • [fe496033] Merge translation files from master branch.
  • [2b92c9f0] Merge translation files from master branch.
  • [beb289c9] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [375a57ed] Merge translation files from master branch.
  • [81ca1a67] Added R14.1.3 release notes draft

tdepim

  • [30de6cff] libemailfunctions: move kAscii* functions to tdelibs
  • [94890b77] Remove unused code
  • [928ea3c2] KAddressBook: Fix import encoding for vCard v4.
  • [04db7b27] Replace kdemacros.h with tdemacros.h
  • [9c3116fd] Replace KDE_TQ_EXPORT_PLUGIN with TDE_* equivalent
  • [47025f3e] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [a6bbab74] Add documentation builds for each package separately
  • [7bfa0fb6] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [622ea70b] Fix attachment filename handling
    Currently filenames containing '#' are not correctly escaped, which
    prevents to open attachments. This resolves issue #119

tdemultimedia

tdenetwork

  • [1f9edc59] ksirc: Use Getopt::Std instead of deprecated getopts.pl library.
  • [68b14f31] Replace kdemacros.h with tdemacros.h
  • [2892487f] Use tq* headers instead of ntq* ones
  • [41e2c515] Replace KDE_TQ_EXPORT_PLUGIN with TDE_* equivalent
  • [d6ad20b4] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [eb63c76f] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdegraphics

  • [a828e133] Advertise WebP read support via .desktop files.
  • [210d8eac] Replace kdemacros.h with tdemacros.h
  • [153ce3e5] Ensure the use of C++20 standard for Poppler >= 24.04.
    This resolves issue #96
  • [fcb418ee] Merge translation files from master branch.
  • [230d8655] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdetoys

  • [7787f653] Merge translation files from master branch.
  • [f58a8da2] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [02300d49] Add documentation builds for each package separately
  • [5bd77f3d] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdeutils

  • [8bd95de8] Superkaramba: add GPU load sensor
    The sensor has a required `driver` parameter and an optional `gpu` parameter.
    - The former specifies the backend to use to query the system about GPU load.
    - The latter specifies the id of the GPU to check. If left out, the backend default will be used.
    For now it only supports NVidia GPUs via the `nvidia` driver, but it can be extended.
  • [2c4a3e7f] Superkaramba: add GB format strings to memory sensor
    Added variants: %fm(b)g %um(b)g %fsg %usg %tmg %tsg
  • [6b7d5441] Superkaramba: minor code refactoring/restyling in memsensor
  • [9a9ab1be] Superkaramba: add memory sensor percentage format strings
    The strings which end in 'p' represent percentage value variants of the following pre-existing format strings:
    %fmb(p) %fm(p) %umb(p) %um(p) %fs(p) %us(p)
  • [222d52d9] Improve location of kedit desktop file. This resolves issue #46
  • [b23bc1fa] Replace kdemacros.h with tdemacros.h
  • [9eb5b12f] Merge translation files from master branch.
  • [71387620] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdeedu

  • [d7569eb4] Fix FTBFS with Python 3.13.
    This solves issue #46
  • [03236ff7] Fix FTBFS with gcc 14
  • [6021f991] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [4728afb5] Replace kdemacros.h with tdemacros.h
  • [422e7fef] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [1ad8fd66] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdegames

  • [4905e1cc] Replace kdemacros.h with tdemacros.h
  • [ac071efb] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [dd75912c] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdeaccessibility

  • [c06e0a2b] Merge translation files from master branch.
  • [1973d99d] Merge translation files from master branch.
  • [3891d3d9] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [de5e54fd] Replace kdemacros.h with tdemacros.h
  • [93d2ad8f] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdeaddons

  • [f3aaaec8] Merge translation files from master branch.
  • [a184527f] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [b30cd117] Replace kdemacros.h with tdemacros.h
  • [22ddaacb] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [2bbb215c] Merge translation files from master branch.

tdeadmin

  • [b2b4bc52] Merge translation files from master branch.
  • [e87baf34] Merge translation files from master branch.
  • [36436c15] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [5fc7892e] Add documentation builds for each package separately
  • [866c88c2] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdeartwork

  • [eb6a6689] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [82b7c9da] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdebindings

  • [8db0c3ad] Load tqtjava library instead of qtjava
    Fixes a runtime error "no qtjava in java.library.path" since the
    generated library name is 'libtqtjava.so'.
  • [f2389da0] Replace kdemacros.h with tdemacros.h
  • [19b0a550] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [8d288123] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdesdk

  • [ba3a42c2] Merge translation files from master branch.
  • [f9ccae8d] Replace kdemacros.h with tdemacros.h
  • [19e19197] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [c264ece0] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [1fe043c8] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdevelop

  • [13923bec] Merge translation files from master branch.
  • [b018e020] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [7489a97a] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdewebdev

  • [dedaec14] Merge translation files from master branch.
  • [da00a36d] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [cffd6b6e] Replace kdemacros.h with tdemacros.h
  • [2a1388a5] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [11eb1ed1] Remove KDE_ISLIKELY and KDE_ISUNLIKELY defines
  • [ad3b14a6] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [2ff6e13a] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tde-i18n

  • [0c38104f] Merge translation files from master branch.
  • [7d0d1599] Merge translation files from master branch.
  • [30eacd37] Update translation template.
  • [4597c261] Merge translation files from master branch.
  • [c927fc3d] Update translation template.
  • [584bd402] Merge translation files from master branch.
  • [015284e4] Merge translation files from master branch.
  • [130d0d33] Merge translation files from master branch.
  • [35924182] Update translation template.
  • [9d313172] Merge translation files from master branch.
  • [8dd995ff] Merge translation files from master branch.
  • [e2a58f8c] Update translation template.
  • [aefcecf2] tdebase: update to match PR TDE/tdebase#538
  • [f8dea4bc] Merge translation files from master branch.
  • [6958efbb] Merge translation files from master branch.
  • [9a339ff5] Update translation template.
  • [fff1a0a0] Merge translation files from master branch.
  • [d3dbd8c9] Merge translation files from master branch.
  • [ee332cd4] Merge translation files from master branch.
  • [0e82c63b] Merge translation files from master branch.
  • [7eca727d] Merge translation files from master branch.
  • [e460241e] Update translation template.
  • [4d1a1cd3] Merge translation files from master branch.
  • [91885ffc] Merge translation files from master branch.
  • [7efe52d4] Merge translation files from master branch.
  • [4bd43316] Update translation template.
  • [958c4ca7] Merge translation files from master branch.
  • [badc6c6a] Merge translation files from master branch.
  • [ffa4138f] Update translation template.
  • [809c1afc] Merge translation files from master branch.
  • [1c2a30dc] Update translation template.
  • [ff309cbd] Merge translation files from master branch.
  • [5bab0f86] Update translation template.
  • [5e4f0cd5] Merge translation files from master branch.
  • [e50cd332] Merge translation files from master branch.
  • [5bb5dfa5] Merge translation files from master branch.
  • [1d2f4ef2] Merge translation files from master branch.
  • [1a1db394] Update translation template.
  • [1c2caed5] Merge translation files from master branch.
  • [5cb2fffe] Update translation template.
  • [fca24f9e] Merge translation files from master branch.
  • [8c537df0] Merge translation files from master branch.
  • [08a61328] Merge translation files from master branch.
  • [46453d7e] Merge translation files from master branch.
  • [bfbb18a5] Merge translation files from master branch.
  • [cc847f45] Merge translation files from master branch.
  • [dec23195] Fix plural form of translations.
    The leading '_n: ' should not be part of the translations.
  • [40a54a16] Merge translation files from master branch.
  • [beedfe2a] Merge translation files from master branch.
  • [238f0191] Merge translation files from master branch.
  • [c4161b55] Merge translation files from master branch.
  • [3b9f94b5] Update translation template.
  • [dd1f61cd] Merge translation files from master branch.
  • [eeec7e1d] Update translation template.
  • [7ac49189] Merge translation files from master branch.
  • [935d5e8f] Merge translation files from master branch.
  • [ccd05f23] Update translation template.
  • [981f3358] Merge translation files from master branch.
  • [b9633e33] Update translation template.
  • [7ecb440c] Merge translation files from master branch.
  • [e470fceb] Merge translation files from master branch.
  • [c24f4fb3] Update translation template.
  • [e5ba82f5] Merge translation files from master branch.
  • [3e1e30d4] Update translation template.
  • [492a0682] Merge translation files from master branch.
  • [4c28ac5e] Merge translation files from master branch.
  • [c5e23d83] Merge translation files from master branch.
  • [75ac45e3] Merge translation files from master branch.
  • [136de97b] Merge translation files from master branch.
  • [0dd7dd2a] Merge translation files from master branch.
  • [4db577a3] Merge translation files from master branch.
  • [8a9b3253] Merge translation files from master branch.
  • [9a665ae0] Merge translation files from master branch.
  • [081982b1] Merge translation files from master branch.

libraries

libkdcraw

  • [83dc653e] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [0d17cf8c] Remove unnecessary define and make sure to include tdemacros.h
  • [921e2d15] Replace kdemacros.h with tdemacros.h
  • [81dc15bc] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [dfbdaaed] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

libkexiv2

  • [505878f1] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [803a46b6] Replace kdemacros.h with tdemacros.h
  • [3a295a79] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

libkipi

  • [1db25959] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [eb6e700a] Replace kdemacros.h with tdemacros.h
  • [a53baecb] Merge translation files from master branch.
  • [cb43a8ff] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kipi-plugins

  • [00132ff0] Merge translation files from master branch.
  • [269f792d] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [422b94aa] Replace kdemacros.h with tdemacros.h
  • [b797dfbe] Merge translation files from master branch.

libksquirrel

  • [51f42b6f] Use JasPer 3 library initialization routines
    Update to use the jas_init_library() and jas_init_thread() functions as
    JasPer 3 deprecated jas_init and changed its behaviour to not register
    jas_cleanup() as an atexit callback.
  • [8ae5191e] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [7d79524e] Replace kdemacros.h with tdemacros.h

libtdeldap

  • [81b3ec1e] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [099c3ec1] Replace kdemacros.h with tdemacros.h
  • [5c301750] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

libtqt-perl

  • [87a21537] Replace KDE_DEPRECATED with TDE_DEPRECATED

pytde

  • [4883892c] Replace kdemacros.h with tdemacros.h
  • [45cb24c9] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [3f2e6e14] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

applications/development

kdbg

  • [316c1368] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [362831ed] Use proper TQt headers

kdiff3

  • [2371b490] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [b8cd662e] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [1ff6ea62] Merge translation files from master branch.

kpicosim

  • [201f3373] Merge translation files from master branch.
  • [f728bb02] Merge translation files from master branch.
  • [d63aaf1b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kscope

  • [35bc076c] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [6730bcbc] Use proper TQt headers

ktechlab

  • [69788745] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [04455a04] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [21265b55] Merge translation files from master branch.

kxmleditor

  • [19deaeb3] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [4508b0ef] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [51322a94] Merge translation files from master branch.

piklab

  • [93af744d] Fixed build problem with ncurses library
  • [1c29d98b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [f2550e4c] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [dc5b11fc] CMake conversion
  • [d5d77862] Merge translation files from master branch.
  • [b4896d07] Update translation template.
  • [014e4b95] Allow generation of build time data files in out-of-source builds. Also fix generation of data file for devices/mem24 subfolder
  • [f2e2d9a5] Include moc files in cpp sources
  • [98a43160] Moves icons into separate folder
  • [ce951906] Remove obsolete svn-related logic
  • [8bdcbe01] Removed unused file in translation folder
  • [819166fe] Update doc and man folder structure

tdesvn

  • [8932eec6] Merge translation files from master branch.
  • [944780b9] Merge translation files from master branch.
  • [6fbfff0a] Merge translation files from master branch.
  • [9096ae56] Replace kdemacros.h with tdemacros.h
  • [2eb15088] Merge translation files from master branch.

applications/games

knights

  • [70ccae04] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

tdepacman

  • [8d7dc432] Merge translation files from master branch.

applications/graphics

digikam

  • [3823312d] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [9966557a] Replace kdemacros.h with tdemacros.h
  • [6ae95b80] Advertise WebP read support for showfoto via .desktop file
  • [9b92ae02] Merge translation files from master branch.
  • [dcadf933] Merge translation files from master branch.

gwenview

  • [ec196430] Fix FTBFS coming from issue #41
  • [5f1fe4bd] Merge translation files from master branch.
  • [7a94ca6b] External tools: replace gimp-remote with gimp
    The gimp-remote tool has been deprecated since 2008.
    See https://www.gimp.org/man/gimp-remote.html
  • [5528a74d] Merge translation files from master branch.
  • [dcc30344] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [d8662ba8] Replace kdemacros.h with tdemacros.h
  • [3a15c885] Fix FTBFS on OMV. This resolves issue #38
  • [df746ca9] Advertise WebP read support via .desktop files
    This resolves issue #1
  • [5703e424] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [5c4c6611] Merge translation files from master branch.
  • [12fabaa1] Added the target folder for desktop files translation template
    so that it is not inadvertently generated into a gwenview-i18n module.
  • [61a94a07] Added translation of .desktop files.
  • [4bd38b70] Drop autotools support
  • [d9ca086d] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

gwenview-i18n

  • [f19c0cef] Merge translation files from master branch.

ksquirrel

  • [f26ba650] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [1658fc3b] Merge translation files from master branch.
  • [1c9b1d06] Merge translation files from master branch.
  • [b0be5893] Merge translation files from master branch.

potracegui

  • [e26e550b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

applications/internet

kasablanca

  • [c0d7a59e] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kbiff

  • [73666db5] Merge translation files from master branch.
  • [4d4a13e6] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [375a2609] Use proper TQt headers
  • [9398c3ad] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kftpgrabber

  • [7da1d2cc] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [86ecfe8c] Use proper TQt headers
  • [8b3c15a5] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [cd7665b7] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

knmap

  • [43244db3] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [d7f518fa] Use proper TQt headers

konversation

  • [af9177c8] Merge translation files from master branch.
  • [042aee2e] Merge translation files from master branch.
  • [0aab9eba] Merge translation files from master branch.

kopete-otr

  • [1dd25c19] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [ceb024e1] Replace kdemacros.h with tdemacros.h
  • [6a0c636c] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kshowmail

  • [cc7eb270] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [727f9c3c] Use proper TQt headers

kstreamripper

  • [109f8e74] Added check for pressing the Cancel button in the file dialog
    The Destination field should not be changed if the cancel button is pressed in the file dialog
  • [ef957d70] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [6ef29b49] Use proper TQt headers

ktorrent

  • [59bbb6d1] Merge translation files from master branch.

kvirc

  • [a12798e7] Merge translation files from master branch.
  • [12700b44] Merge translation files from master branch.
  • [34cef094] Merge translation files from master branch.
  • [6e2602fa] Merge translation files from master branch.
  • [f756cb34] Merge translation files from master branch.
  • [5943ab1e] Merge translation files from master branch.

kvpnc

  • [b2dc6a57] Merge translation files from master branch.
  • [4ef26a9b] Merge translation files from master branch.
  • [a911fd70] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [b82812a3] Merge translation files from master branch.
  • [3633a93b] Merge translation files from master branch.
  • [d2d99d5a] Merge translation files from master branch.

smb4k

  • [89bd0844] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [2c528b60] Replace kdemacros.h with tdemacros.h
  • [19488bba] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [9bb489fb] Merge duplicate Norwegian translations of desktop files and
    use two-letter codes names NB and NN, such as usual in other cases.
  • [890c1e2e] Remove duplicate Norwegian Bokmål translations of desktop files.
  • [3f571059] Remove the original translation directory layout.
  • [5991219e] Copy translations to a new directory layout.
    Added translation of .desktop files.
  • [198fb9f3] Drop autotools support
  • [22dea1e5] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tork

  • [0d318f09] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [24cb4e0d] Use proper TQt headers
  • [1f155134] Merge translation files from master branch.
  • [d3a1b4a1] Merge translation files from master branch.
  • [8db23dd9] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

applications/misc

bibletime

  • [11021fb0] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

compizconfig-backend-tdeconfig

  • [f225f48f] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [6ddf91c7] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

desktop-effects-tde

  • [d9b08e45] Merge translation files from master branch.
  • [a3d98e7d] Merge translation files from master branch.
  • [861ee303] Merge translation files from master branch.
  • [a30304ca] Merge translation files from master branch.

kcmldap

  • [40e52bb5] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kcmldapcontroller

  • [1e46f8ab] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kcmldapmanager

  • [9be1b414] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kerberostray

  • [067e5235] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [c29b06de] Replace kdemacros.h with tdemacros.h

krecipes

  • [64df5710] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [788606cd] Replace kdemacros.h with tdemacros.h
  • [dbf13a36] Use proper TQt headers

applications/multimedia

amarok

  • [69a8a1af] Merge translation files from master branch.
  • [61ea97c2] Update translation template.
  • [e8dc45c8] Replace custom MP4 metadata parser with TagLib
    TagLib supports MP4 metadata since version 1.6 (2009). The custom
    parser code caused problems because there was a mismatch between
    the definition of TagLib::Tag and TagLib::MP4::Tag, and the
    implementation of the custom TagLib::MP4::Tag.
    This requires TagLib 1.11 and above.
    Resolves: TDE/tdemultimedia#82
  • [09dcfc68] Fix unsigned overflow in Debug::Block dtor
  • [c18b5298] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [32da5fbf] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [2d4abcb6] Merge translation files from master branch.
  • [bc688481] Merge translation files from master branch.
  • [1d66256d] Update translation template.
  • [1dc95c27] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [3addcdd0] Merge translation files from master branch.
  • [223dc92b] Merge translation files from master branch.
  • [edadbab7] Add support for taglib 2, part 2.

codeine

  • [c2ba45c1] Update translation template.
  • [39912d87] Fix channel selection menus disappearing
    When adding/removing an action to/from the toolbar, the aspect ratio,
    audio channel, and subtitle channel menus would disappear from the
    parent settings menu.
    My understanding is that this happened because nothing was keeping those
    menus present (plugged?) when other actions were plugged/unplugged.
    This changes it so "Aspect Ratio", "Subtitles", and "Audio Channels"
    each are a TDESelectAction that is dynamically filled with items. This
    way, each popup menu is still present after other actions being
    plugged/unplugged.
    Resolves: TDE/codeine#24
  • [5100a090] Update translation template.
  • [0dbeeeb9] Address -Wall warnings
    VideoWindow::ExposeEvent wasn't being used correctly; it should be a
    TQCustomEvent (although, the 3000 type is already being used for
    forwarding XINE_PROGRESS_EVENT).
    While the pts_per_smpls part never seemed to be encountered, it would
    have resulted in a floating point exception as it's always 0. Commented
    out to leave a hint as to what the code should be doing.
    Resolves: TDE/codeine#2
  • [f41da351] Fix filter list when opening a file
  • [fb0c092e] Update translation template.
  • [9f6a25bc] Improve the layout of XineConfigDialog
    Properly display the description of each of the settings. Also,
    reorganize the layout so that it uses layouts rather than VBox/HBox.
    The TabWidget class has been removed in favour of the standard
    TQTabWidget class, as the different behaviour doesn't make a notable
    visual difference.
  • [5394e874] Fix crash when showing context menu in DVDs
  • [e2003a00] Update translation template.
  • [bca2a1a1] Use nullptr instead of NULL/0 pointer in C++ files
    See: https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/73
  • [55214aea] Use safer xine_get_current_frame_s
    xine_get_current_frame was deprecated back in 2019 because it is
    "unsafe by design"[0]. The '_s' version was introduced in xine-lib
    1.1.11, which was released in 2008, so there are no version checks.
    [0]:
    https://sourceforge.net/p/xine/xine-lib-1.2/ci/c1a154c1a89759a8d69a6895587085adf6868d50/
  • [9cec7f89] Update translation template.
  • [86b8d57a] Scale capture preview if it exceeds screen bounds
  • [b4cc6a0c] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

k3b

  • [75435ce1] Fix compatibility with ffmpeg 7.x.
  • [fb26314a] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [bfd52a71] Replace kdemacros.h with tdemacros.h
  • [8c770638] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

k3b-i18n

  • [fb28b567] Merge translation files from master branch.
  • [b3e87d49] Update translation template.
  • [4c32ec32] Merge translation files from master branch.
  • [bcbabbda] Merge translation files from master branch.
  • [a21cb0e7] Merge translation files from master branch.
  • [e542902f] Merge translation files from master branch.
  • [a6edd997] Merge translation files from master branch.

k9copy

  • [8d584861] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [7ad2cf65] Merge translation files from master branch.
  • [b6bc7d3a] Use strlcat from libc instead of custom one. This resolves issue #29

kaffeine

kaffeine-mozilla

  • [d0c34405] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kmplayer

  • [74c9cd05] Fix visibility of public slots in PartBase. This resolves issue #24
  • [3ca4c8ba] Merge translation files from master branch.
  • [54463fd2] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [36694213] Replace kdemacros.h with tdemacros.h
  • [c5d77586] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [2debdf21] Merge translation files from master branch.

kplayer

  • [75214b4b] Merge translation files from master branch.
  • [f7dbed34] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [502028b2] Merge translation files from master branch.
  • [fceabe00] Merge translation files from master branch.
  • [b68ac66b] Merge translation files from master branch.

mplayerthumbs

  • [311bc97e] Merge translation files from master branch.
  • [d4c4db4c] Merge translation files from master branch.
  • [d55559f3] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [6889475b] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [62cfd3d0] Merge translation files from master branch.

rosegarden

  • [f4e06ad8] Merge translation files from master branch.
  • [1d49f945] Merge translation files from master branch.
  • [5daf082b] Merge translation files from master branch.

soundkonverter

  • [7ae832ac] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [07655291] Merge translation files from master branch.
  • [e5ac893e] Remove 'admin' subfolder that was mistakenly left in the source tree
  • [ce91fc9a] Merge translation files from master branch.
  • [82d4f87e] Remove the original translation directory layout.
  • [b428cc90] Copy translations to a new directory layout.
    Added translation of .desktop files.
  • [9389522a] Drop autotools support
  • [c8120890] Merge translation files from master branch.
  • [69c3134e] Merge translation files from master branch.

tderadio

  • [a7eb9a6a] Merge translation files from master branch.
  • [5c1aa367] Merge translation files from master branch.
  • [9638eea8] Merge translation files from master branch.
  • [dafff6e5] Merge translation files from master branch.
  • [20b6722d] Merge translation files from master branch.
  • [4083031f] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [5430985a] Replace kdemacros.h with tdemacros.h
  • [68a83400] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [16bc99ab] Merge translation files from master branch.
  • [b96e2f00] Merge translation files from master branch.

applications/office

basket

  • [2f2d5c00] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [2a176d87] Replace kdemacros.h with tdemacros.h
  • [576088df] Merge translation files from master branch.
  • [1346de7f] Merge translation files from master branch.
  • [f7bca5cd] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [65cf4686] Merge translation files from master branch.
  • [20f4f832] Merge translation files from master branch.

kbibtex

  • [247ae3ed] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [1fe284bd] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [79a54fb0] Merge translation files from master branch.

kbookreader

  • [6ae55c79] Merge translation files from master branch.
  • [25e6d9e9] Merge translation files from master branch.
  • [23a93547] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

keximdb

  • [fcb0c1ca] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [9ec283ee] Use proper TQt headers

kile

  • [6a1754f7] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [1c0ae567] Merge translation files from master branch.

kmymoney

  • [664348a8] Merge translation files from master branch.
  • [156e1a9c] Update translation template.
  • [bb71a2a2] tqabstractlayout.h is obsolete
  • [e52169fb] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [aae42115] Replace kdemacros.h with tdemacros.h
  • [51cf7be9] Merge translation files from master branch.
  • [5e350d79] Merge translation files from master branch.
  • [47ae1235] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [4e1c3b0d] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

knowit

  • [d3584db4] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

koffice

  • [3899caa1] Replace obsolete python call
  • [9e417736] mswriter: fix wrong ListElement template. This resolves issue #78
  • [83ac2573] Fix kexidb build with -std=c++20.
    This solves issue #70
  • [79e48868] Remove inclusion of obsolete header
  • [0bb5a74a] Replace kdemacros.h with tdemacros.h
  • [fc7a561e] KSpread: New lookup/reference functions
    Adds reference functions HLOOKUP, VLOOKUP.
    Import from Calligra revision 1134327.
    Authors: Stefan Nikolaus
    Sebastian Sauer
  • [979ee566] KSpread: Add natural comparison operators.
    Natural comparison does not depend on the type of data (whether it's a string or a number).
    Based on Calligra Sheets code originally from revision 551470.
  • [950f6aa0] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [9fa1a9ed] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

koffice-i18n

  • [77804584] Merge translation files from master branch.
  • [a14dfd17] Merge translation files from master branch.
  • [765ccdee] Merge translation files from master branch.
  • [ea9d233c] Update translation template.
  • [b5ad0939] Merge translation files from master branch.
  • [612fc3a3] Merge translation files from master branch.
  • [b84e0025] Merge translation files from master branch.
  • [65e60572] Merge translation files from master branch.
  • [293f2e35] Merge translation files from master branch.

kpilot

  • [6a7458cb] Fix FTBFS described in issue #25
  • [6430ebd1] Merge translation files from master branch.
  • [c8232e4f] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [41c5e580] Replace KDE_DEPRECATED with TDE_DEPRECATED
  • [f28feea0] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [40ffb58a] Merge translation files from master branch.
  • [3395355e] Merge translation files from master branch.
  • [eca240ca] Merge translation files from master branch.

tellico

  • [4323132c] Merge translation files from master branch.

applications/settings

kdpkg

  • [73cafa09] Merge translation files from master branch.
  • [15c91fce] Merge translation files from master branch.
  • [e437ed11] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [ebc14adc] Merge translation files from master branch.

kima

  • [deb15cb9] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [2a9c4d6f] Replace kdemacros.h with tdemacros.h
  • [adfb3437] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kiosktool

  • [f1704dfe] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kkbswitch

  • [910d4cd0] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [b668f9a0] Use proper TQt headers
  • [83d3bdd4] Merge translation files from master branch.

klcddimmer

  • [9792f11a] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [b4c84799] Use proper TQt headers
  • [9c2c4505] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kmyfirewall

  • [5df559f4] CMake: Add explicit source dependency for generated header.
    This solves FTBFS with parallel build.
  • [ec3aadb3] CMake conversion
  • [da2eb213] Remove original copy of translation templates files
  • [43ea0caf] Move .pot files to translations/messages subfolder
  • [775bbec9] Add missing TDE_EXPORT required for hidden visibility support
  • [3d1fba0b] Add kmyfirewall.xpm from tde-packaging repo
  • [6332e242] Add missing .moc include directives
  • [adf24510] Remove [xx] entries from .desktop files
  • [17c77753] Remove unnecessary section in installer plugin desktop file
  • [326f093a] Restructure doc folder
  • [e42fffb1] Replace kdemacros.h with tdemacros.h
  • [9411476d] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tde-guidance

  • [1ac58023] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [3c8e1521] Drop autotools support
  • [7b0bf9b0] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tde-systemsettings

  • [476f2db3] Merge translation files from master branch.
  • [0c37ee34] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [4693133e] Merge translation files from master branch.

tdenetworkmanager

  • [9ce7b22c] Merge translation files from master branch.
  • [d12dce43] Replace kdemacros.h with tdemacros.h
  • [ec406aac] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [26ea7034] Merge translation files from master branch.
  • [a2485e95] Merge translation files from master branch.
  • [4268b332] Merge translation files from master branch.
  • [5083399f] Merge translation files from master branch.
  • [bef558d0] Merge translation files from master branch.

tdesudo

  • [ecd8d3ab] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [69558995] Merge translation files from master branch.

applications/system

dolphin

  • [067975c9] Merge translation files from master branch.
  • [dd363344] Merge translation files from master branch.
  • [4adc24b2] Merge translation files from master branch.
  • [08388d1c] Update translation template.
  • [e8b51c3e] Add Klipper Copy Full Path action for Dolphin
  • [5fe6bdaf] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [8de6abea] Merge translation files from master branch.
  • [a6b3d686] Merge translation files from master branch.
  • [ead76c2a] Merge translation files from master branch.
  • [dd1cb9db] Merge translation files from master branch.
  • [543b80c9] Merge translation files from master branch.

katapult

  • [1b49bc77] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [f07b0d8b] Replace kdemacros.h with tdemacros.h
  • [49381598] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [aaa62f62] Merge translation files from master branch.
  • [b862fd97] Merge translation files from master branch.

kbfx

  • [d17925e7] Merge translation files from master branch.
  • [a2938633] Merge translation files from master branch.
  • [244f59c2] Merge translation files from master branch.

kcmautostart

  • [fba064a1] Merge translation files from master branch.
  • [46490365] Merge translation files from master branch.
  • [5b0a7b08] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [d46f61a1] Merge translation files from master branch.

kdbusnotification

  • [d21c7a05] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [6a96f59a] Merge translation files from master branch.

klamav

  • [23e20ce3] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [0898f7c1] Use proper TQt headers
  • [11eaef48] Merge translation files from master branch.
  • [ba8ebc38] Merge translation files from master branch.
  • [af688e8b] Merge translation files from master branch.

knemo

  • [b04d9403] Merge translation files from master branch.
  • [1ebb94a8] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [e6226215] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

knetload

  • [4df65581] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

knetstats

  • [837b10c4] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [4e984d25] Merge translation files from master branch.

kooldock

  • [cbf0ee92] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

krusader

  • [e868817c] Merge translation files from master branch.
  • [52151afe] Merge translation files from master branch.
  • [61b0c0e2] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [77f63ab8] Merge translation files from master branch.
  • [ebd0c612] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [b35c6fdf] Merge translation files from master branch.
  • [2748955e] Merge translation files from master branch.
  • [a2cb9a14] Merge translation files from master branch.

kshutdown

  • [f7ff640b] Merge translation files from master branch.
  • [3410c791] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [549bf2bf] Merge translation files from master branch.
  • [3ef5a84e] Update translation template.
  • [5622d24e] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [496baf37] Merge translation files from master branch.
  • [632d7522] Merge translation files from master branch.

ksystemlog

  • [53f7b4b6] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kvkbd

  • [e06715d7] Merge translation files from master branch.
  • [2e49eafc] Merge translation files from master branch.
  • [ca8705e0] Merge translation files from master branch.
  • [36163735] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

polkit-agent-tde

  • [96ce9abf] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

smartcardauth

  • [dcb47054] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

tastymenu

  • [c13b86f2] Merge translation files from master branch.
  • [7fb249e3] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [1a5946c4] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [0895b87f] Merge translation files from master branch.

tdebluez

  • [a624cc94] Merge translation files from master branch.
  • [8c1d1ad5] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [e66100de] Replace kdemacros.h with tdemacros.h
  • [ee33f37e] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdedocker

  • [ca4ad2c7] Merge translation files from master branch.
  • [330cd800] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [60b7cde5] Merge translation files from master branch.

tdepowersave

  • [e26aa282] Merge translation files from master branch.
  • [9b154f26] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [1cf29573] Replace kdemacros.h with tdemacros.h
  • [9a02138d] Merge translation files from master branch.
  • [284595e2] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [ec7d3d6d] Merge translation files from master branch.
  • [71d1417c] Merge translation files from master branch.

tdesshaskpass

  • [173e0ff5] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

yakuake

  • [5a1c1934] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

applications/tdeio

tdeio-appinfo

  • [4bc2d0d9] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [05e1f513] Merge translation files from master branch.
  • [7f457455] Merge translation files from master branch.

tdeio-apt

  • [4609f1df] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [4c21709a] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [c98dc1df] Merge translation files from master branch.

tdeio-ftps

  • [26a7084d] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [51ed90dc] Use proper TQt headers
  • [9cff6e3b] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdeio-gopher

tdeio-locate

  • [7ab3f918] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [d27aac8e] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tdeio-sword

  • [75ef2684] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [6ae4c97f] Use proper TQt headers

tdeio-umountwrapper

  • [db319b71] Merge translation files from master branch.
  • [79d9431f] Merge translation files from master branch.
  • [8e0ca404] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

applications/themes

gtk-qt-engine

  • [3bec2631] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [fbedaf32] Replace kdemacros.h with tdemacros.h
  • [b15dc96d] Merge translation files from master branch.
  • [5965bc2b] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [fb57dbac] Merge translation files from master branch.

gtk3-tqt-engine

  • [988eb3e8] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [a050a81d] Replace kdemacros.h with tdemacros.h
  • [5674ef65] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kgtk-qt3

  • [ddbb27e3] Merge translation files from master branch.
  • [91ea80de] Merge translation files from master branch.
  • [86825e65] Fix build with gcc14 and various warnings
  • [5486e122] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [bd3836fd] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

ksplash-engine-moodin

  • [c6da8960] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [55074cd6] Merge translation files from master branch.
  • [2c028f0f] Merge translation files from master branch.

tde-style-baghira

  • [49507c2a] Merge translation files from master branch.
  • [17dc7880] Merge translation files from master branch.
  • [8305b8a8] Merge translation files from master branch.
  • [412ec439] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [da4085d9] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [7f714dc0] Merge translation files from master branch.
  • [5b644243] Merge translation files from master branch.
  • [5b7a05a6] Merge translation files from master branch.

tde-style-domino

  • [62287944] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [c49ca8f4] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [a70ae40d] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tde-style-ia-ora

  • [1a26902a] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [e2b2fb69] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tde-style-lipstik

  • [d89f6a50] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [e38d11b0] Replace KDE_Q_EXPORT_PLUGIN, KDE_PACKED and KDE_WEAK_SYMBOL with TDE_* equivalent
  • [8898e019] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

tde-style-polyester

  • [f9c956c1] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [fdd5b42c] Replace kdemacros.h with tdemacros.h
  • [dec195e8] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [7c56e0db] Fix loading of window decoration module in twin
  • [a128939a] Merge translation files from master branch.

tde-style-qtcurve

  • [0e082531] Merge translation files from master branch.
  • [16e1ac77] Merge translation files from master branch.

tdmtheme

  • [58bdab77] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

twin-style-crystal

  • [8190d806] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [656df248] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

twin-style-dekorator

  • [4b397d9a] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [4d8078e6] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

twin-style-fahrenheit

  • [25914352] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [27568ec8] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [50ad465a] Fix loading of window decoration module in twin
  • [65623aaa] Merge translation files from master branch.

twin-style-machbunt

  • [86044a8b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [4fb5c88b] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

twin-style-suse2

  • [bc181192] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [a7b408a9] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

applications/utilities

kbarcode

  • [2e75f1a0] Merge translation files from master branch.
  • [c8c4d5e9] Merge translation files from master branch.
  • [c1bb3e8e] Update translation template.
  • [10acf645] Use libpcre2 instead of libpcre
  • [2e1cbea3] Merge translation files from master branch.
  • [a21beac7] Merge translation files from master branch.
  • [580668a9] Merge translation files from master branch.
  • [4e0f5f18] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kchmviewer

  • [32251ec3] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [21880c6d] Merge translation files from master branch.
  • [2841453c] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kcpuload

  • [a085a3d7] Merge translation files from master branch.
  • [e9a4639b] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [653ea9b4] Merge translation files from master branch.

kdirstat

  • [e4d6a657] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

keep

  • [2568c7e3] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [9674d36c] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
  • [ad75f0b7] Merge translation files from master branch.

knutclient

  • [11b5d31d] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

kommando

  • [de55730f] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [0289c35c] Replace kdemacros.h with tdemacros.h
  • [8d48abe4] Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

kompose

  • [038236ec] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

krename

  • [5fad42a4] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [3bab0c81] Merge translation files from master branch.

ksensors

  • [e3e0c521] Merge translation files from master branch.
  • [d6b154e9] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
  • [f13a2038] Use proper TQt headers

mathemagics

  • [e430b151] Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY

qalculate-tde

  • [f524ba99] Merge translation files from master branch.

packaging

packaging

  • [3e47a130] ArchLinux: Update for final R14.1.3.
    Add pkgbuilds for several applications.
    Add pkgbuild for libvisual dependency.
  • [7ac12650] RPM: Update for final R14.1.3
  • [3486112a] FreeBSD: Update for final R14.1.3.
    Add ports for several applications.
  • [4fb77ce7] DEB: rename xdg-desktop-portals-trinity to xdg-desktop-portal-trinity
  • [9e598c2c] DEB kmyfirewall: cmake conversion
  • [76e073ac] DEB xdg-desktop-portal-tde: Add dependency on frontend service xdg-desktop-portal.
  • [7c0ebb4c] DEB: add xdg-desktop-portal-tde packaging files
  • [4c787867] RPM: many updates for upcoming R14.1.3
  • [e81c987a] RPM: re-add dependency to gcc-c++ (with condition)
  • [ba22e312] Add clang compile support
    - Add check for installed compiler, remove BuildRequires
    - Add platform option for clang when the default symlink resolves to it
    - Add OpenMandriva specific checks for required files removed during
    packaging
    - Comment missing docs, install, and headers during packaging process
    - Increment version number to latest stable release
    - Replace symlink for build-examples with the actual file, install dereferences
    - Add missing translation file for "tr"
    - Fix lib prefixes for dependencies needed in MDK/OMV for 64 bit
  • [43c883d1] DEB: add twin-style-mallory
  • [dc384f82] DEB amarok: Remove libmp4v2-dev from build-depends.
    Support in Taglib is now used for MP4 metadata.
  • [b6495d8b] DEB: move universal-indent-gui-tqt to 'Development' folder
  • [6ea13cb9] DEB: add universal-indent-gui-tqt packaging files
  • [f66b8764] RPM: add support for Fedora 41
  • [c613bf5a] DEB tdebase: remove kcm_khotkeys_init library, no loger required
  • [0b5a373f] DEB tdebase: add desktop file for khotkeys kded service
  • [50153ac5] DEB kubuntu-meta: Add build-arch to PHONY targets.
  • [900d4f12] DEB ksquirrel: Add build-arch to PHONY targets.
  • [8de502d0] DEB sip4-tqt: Add build-arch to PHONY targets.
  • [1055d215] DEB tdebase - kcontrol: Fix the path for generating the udev rules for the Logitech mouses.
    Generation of udev rules updated for currently used attribute names.
  • [0c7629b9] DEB tdebase - kcontrol: add touchpad configuration module.
  • [bf8c1636] DEB tdebase - klipper: Add Copy Full Path action for Konqueror.
  • [acf3abd6] Remove unnecessary dependency for libpcre
  • [007c5555] DEB tdebase twin: use libpcre2 instead of libpcre
  • [c64e55af] DEB tdelibs kjs: use libpcre2 instead of libpcre
  • [15319cbc] DEB tqt3: Add libnsl-dev to build-depends.
  • [172a3644] DEB kmyfirewall: kmyfirewall.xpm has been moved to main repository
  • [f58f51df] DEB kmyfirewall: remove unnecessary files
  • [f1e34b24] DEB tdebase: Add libtirpc-dev to build-depends.
  • [5f499934] DEB tdebase: add new tiling icons to twin package
  • [8c133614] DEB tdebase: Update kwrite patch for Ubuntu.
  • [85562624] DEB tde-ebook-reader: use a variable for the library directory of architecture.
  • [1035fb68] DEB: add tde-ebook-reader packaging files
  • [a20efbd9] DEB polkit-agent-tde: Add polkitd as an alternative for policykit-1.
  • [89e06621] DEB polkit-tqt: Add polkitd as an alternative for policykit-1.
  • [661d57c9] DEB tdelibs: remove dummy kdemacros.h file
  • [891dc2cd] DEB tdelibs: add tdemacros.h
  • [6b5986e3] RPM: updates for OpenSuse LEAP 15.6
  • [1f78e4c1] DEB: Add support for Ubuntu Oracular, drop support for Ubuntu Kinetic.
  • [dae553b3] ArchLinux imlib: Provide binary package for all architectures.
  • [060b5447] RPM: updates for openmandriva
  • [24cdefc8] DEB tdebase: Update for TDE/tdebase#490
    Kate null action icon removed.
  • [aadff2c4] DEB tdelibs: Enable build with WebP support.
  • [19f941ff] DEB tdebase: add solarized themes to konsole
  • [89ebbd27] ArchLinux: Add tdeio-gopher to tde-meta.
  • [0f672ea7] ArchLinux: add tdeio-gopher pkgbuild
  • [9c50cfcc] DEB tdebase: Do not install tdeio_system_documenthelper manpage.
    The man page was removed in TDE/tdebase#484
  • [79e9e064] RPM: initial support for OMV cooker
  • [61f83f14] DEB piklab: switch to cmake building system
  • [c6d21f11] RPM: initial support for OpenMandriva
  • [2af6f182] RPM: add distro OpenSuse Leap 15.6
  • [2228bc7e] FreeBSD: Fix loading of window decoration module in twin for new styles.
    This relates to issue TDE/tde-packaging-gentoo#373
  • [eacb0eb5] ArchLinux: Fix loading of window decoration module in twin for new styles.
    This relates to issue TDE/tde-packaging-gentoo#373
  • [89b0dd94] DEB piklab: adapt to new man file names
  • [035e7452] RPM: update for final R14.1.2