Changelog For R14.1.2
Jump to navigation
Jump to search
common
admin
- [fabd8c1d] Replace Q_WS_* defines with TQ_WS_* equivalents
- [482d2f66] Fix wrong nesting in KDE_CHECK_TQT_JPEG function
- [3019aa7a] Improve TQt detection. Use CFLAGS from pkg-config
instead of hard-coded include paths. - [bcdb3081] Fix detection of TQt3 following bug introduced in previous commit
- [e27d7286] Drop TQT_VERSION_ONLY
- [02e3ce62] Fix visibility support check
libtdevnc
- [04669ff5] Use centralized cmake version
- [30334121] krfb: fix termination and syncing of threads on exit. This resolves issue #2
- [91b27a73] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2b46ed6b] Raise the minimum required version of CMake to 3.5.
dependencies
tde-cmake
- [1ec54425] Update version to R14.1.2
- [e6fdb4b5] Fix incorrect backslash in tde_set_project_version macro
- [4af11cf9] Set cmake minimum version in a centralized place
- [10b01876] Add support for multiline messages in tde_message_* macros
Also convert tde_message_author_warning() to a function to not pollute
caller's environment. - [8b6215c6] Simplify code since cmake minimum version is now 3.5
- [76ca9f74] Raise the minimum required version of CMake to 3.5.
- [bb49d854] Update version to R14.1.2~[DEVELOPMENT]
tqt3
- [73c97659] Merge translation files from master branch.
- [57465e08] Prevent creation of text codecs when the application is shutting down. This resolves issue #142
- [b4410540] TQTextEdit: remove one of two readOnly flags
There were two flags for read-only with different capitalization:
readonly and readOnly. This was probably a mistake. - [bca1fe4e] TQTextEdit: add missing mightStartDrag initialization
mightStartDrag might have been used uninitialized when moving mouse with
pressed mouse button into window. - [a097a55f] Improve TQFont-related cleanup
Improve TQFont cleanup making sure that all instances of TQFont are
destroyed before TQApplication (or specifically before disconnect from
X11). This gets reed of several valgrind complains about leaks deep
inside fontconfig. - [f2504a8f] Improve TQFont-related cleanup
Improve TQFont cleanup making sure that all instances of TQFont are
destroyed before TQApplication (or specifically before disconnect from
X11). This gets reed of several valgrind complains about leaks deep
inside fontconfig. - [b000ed6a] TQFileDialog: cleanup pixmaps before destroying TQApplication
Otherwise it results in small memmory leakage on exit of Xlib data. - [32f97849] examples/canvas: fix some memory leaks
- [4ab92f6b] TQPrintDialog: cleanup data requested from libcups
- [41c8fa0f] inputmethods/xim: fix incorrect fontset ref counting
- rename fontsetRefCount -> fontsetCacheRefCount
- move fontsetCacheRefCount to constructor as setHolderWidget() could be
called more than once - [bb6797db] TQPrinterPrivate: add virtual destructor.
As derivative from it e.g. TQPrinterUnixPrivate are getting deleted (e.g
in unix TQPrinter implementation) by a reference to base class.
Also added missing include to the header. - [ba566100] Zero unused data fields in XClientMessageEvent struct
valgrind was complaining about access to uninitialized data because
unused elements in client_message.data.l array weren't set o any value. - [323382b1] Fix TQThreadStorage destruction in the main thread
Before that the allocations of TQThreadStorage objects from the main
thread were never destroyed and memory associated with them were never
freed. The second one isn't a huge problem as at that point program is
terminating anyway (but it still makes valgrind complain). The first one
is the bigger issue as destructors might contain some essential external
cleanups like removing temporary files.
Also make `TQApplication::guiThread()` return `0` when the thread is
destroyed (may happen on the program exiting during destruction of
statics). - [336e61b2] Fix TQString::sprintf() not calling va_end() in case of bad cformat
Also rearrange code a bit so it would be obvious that the function
doesn't return a dangling reference. - [4bed6be8] Fix a small memory leak in xim plugin
TQXIMInputContext::setHolderWidget() function may be (and actually is)
called more than once. This results in multiple instances of the same
object being added to ximContextList. But the destructor removes only
one instance, which effectively results in leak of several bytes
whenever a window is opened. - [d730db2c] gitignore: add a couple more tests
- [57f90016] Add explicit declaration TQChar&TQCharRef default constructor/destructor
This suppresses -Wdeprecated-copy warning. - [590a2e04] Resort includes in ntqt.h
- [5d90b035] ./configure: turn thread support on by default
- [5232ccdf] Avoid setting CONFIG=thread in qmake.conf
Otherwise it's impossible to override in ./configure - [d643d19c] Fix compilation with -no-thread
- [9d1f8015] Fix up mkspecs/linux-g++-32/qplatformdefs.h
The head of file was accidentally deleted in 455154ce - [ee2df978] Fix compilation with -disable-inputmethod and -no-inputmethod
As for now here are two sets of inputmethod options:
- -enable-inputmethod/disable-inputmethod - which seems to supposed to
control whether build the 'inputmethod' module or not
- -inputmethod/-no-inputmethod - which seems to supposed to
enable/disable inputmethod support without changing the ABI.
Before the patch both -disable-inputmethod and -no-inputmethod were just
breaking the build: -no-inputmethod were disabling some code with
support for the module, but didn't disabled the module build itself nor
build of plugins. -disable-inputmethod were disabling build of plugins
and module, but didn't disabled code depending upon it.
It seems the inputmethod support were still WIP when the last release of
Qt3 came to be, hence the mess.
This patch fixes the build if both -disable-inputmethod AND
-no-inputmethod are supplied. Disabling only one is not enough due to
tqmake/configure have problems handling two different options of the
same name. Later the -inputmethod/-no-inputmethod should be probably
removed entirely. - [9aa03105] Fix FTBFS with -no-xkb
The analogue of XkbKeycodeToKeysym() used to be XKeycodeToKeysym(), but
it was deprecated in favour of XGetKeyboardMapping() method. - [77927b79] Fix FTBFS with -no-stl
On modern compilers placement new requires inclusion of <new> - [7b575b58] avoid translating the /qt/XIMInputStyle options when saving into config
Also use "On The Spot" as the default when the setting in the config is
incorrect. - [53a1dfa8] gitignore: add missing examples (sound, tablet)
- [94c71d50] Fix FTBFS with -qt-sql-sqlite3
Fix FTBFS when sqlite3 sql driver is being built into the library - [cabcb339] fix grep complain in configure: "warning: stray \ before c"
- [486ac782] Remove original Q_WS_* defines
- [da061df4] Add .gitignore file
- [33c36fae] Replace QT_STATIC_CONST_* with actual definitions
- [473cd1e8] Replace Q_WS_* defines with TQ_WS_* equivalents
This is the first part of the replacement process.
Usage of Q_WS_* has been replaced with the equivalent TQ_WS_*.
Definition of Q_WS_* has been mirrored into TQ_WS_* defines, to allow
TDE code to continue building till replacement is carried over to all
other modules.
Once that is completed, the original Q_WS_* defines will
be removed. - [ecca365d] Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
- [1c308584] Fix potential buffer overflow in debug functions.
This resolves issue #70 - [f30ac87a] Add support for HistoryBackButton and HistoryForwardButton
This resolves TDE/tdebase#421 - [c339f68f] Update README
A new README with markdown format, updated information on TQt, contributor section and translations status.
The old README has been preserved as README.Qt3 for historical reasons. - [a059b24f] tqdesigner: prevent SEGV from invalid pointer. This resolves issue #97
- [ccc0d8e4] Replaced various '#define' with actual strings - part 3
- [541b9007] Replace Qt with TQt
tqtinterface
- [127b7afb] Use centralized cmake version
- [ffb0e63e] cmake files: change keywords to lower case
- [a2ffbf64] Remove QT_NO_SQL define
- [3db78466] Remove Q_WS_* defines
- [d7ef2c15] Remove TQT_{METHOD, SIGNAL, SLOT} and METHOD, SIGNAL, SLOT
- [42cd150b] Rename TQT_{METHOD, SIGNAL, SLOT} and METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT. This is a temporary step to make sure TDE keeps building while METHOD, SIGNAL, SLOT are renamed in every repository.
- [7850ec99] Remove various '#define' strings - part 6
- [aee37a80] Remove various '#define' strings - part 5
- [ed3960fe] Remove 'Event' #define strings
- [e49839b0] Remove various '#define' with actual strings - part 4
- [f933a4cd] Remove various '#define' with actual strings - part 3
- [1adb7b0c] Remove color '#define' strings
- [f3d5db9e] Remove various '#define' with actual strings - part 2
- [8a3ee3cf] Remove time related '#define' with actual strings
- [4f64bcf4] Remove various tq* strings
- [4469ebf5] Remove various '#define' strings
- [83393107] Replace Qt with TQt
- [4999d66f] Change to build and install inputmethod files if enabled
- [5b1ff5f7] Raise the minimum required version of CMake to 3.5.
- [ce975cb4] Drop TQT_VERSION_ONLY
akode
- [b9bf6085] Use centralized cmake version
- [e7588f45] cmake files: change keywords to lower case
- [1a7d54b0] cmake: make flac, speex and vorbis support in xiph optional
- [76833fdb] Raise the minimum required version of CMake to 3.5.
arts
- [5877b3be] Use centralized cmake version
- [b8da6ca9] cmake files: change keywords to lower case
- [c96b8deb] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c048d067] Raise the minimum required version of CMake to 3.5.
avahi-tqt
- [9aec3e38] Use centralized cmake version
- [5d56fcdf] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [571a0c03] Raise the minimum required version of CMake to 3.5.
dbus-1-tqt
- [ab0f2949] Use centralized cmake version
- [008f34be] Replace QT_STATIC_CONST_* with actual definitions
- [9b724c19] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [49dca60b] Replaced various '#define' with actual strings - part 5
- [122c2a5a] Raise the minimum required version of CMake to 3.5.
dbus-tqt
- [c0e37ab0] Use centralized cmake version
- [fe52f8f3] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [31736507] Raise the minimum required version of CMake to 3.5.
libart-lgpl
- [6dada22d] Use centralized cmake version
- [604e7976] cmake files: change keywords to lower case
- [a8d8c5d0] Raise the minimum required version of CMake to 3.5.
libcaldav
- [f1c843a8] Use centralized cmake version
- [212fdb12] Raise the minimum required version of CMake to 3.5.
libcarddav
- [7b7f2ab5] Use centralized cmake version
- [2bee3c7a] Raise the minimum required version of CMake to 3.5.
libr
- [9e8c893b] Use centralized cmake version
- [2cf31691] Expose used backend via pkg-config
- [75d69350] Make dependency upon gtk optional
- [aaf98109] Update library version to 0.7.0
- [47a836e4] Remove libglade related code, since libglade is no longer available
- [35d7395c] Raise the minimum required version of CMake to 3.5.
sip4-tqt
- [c3d189b3] Fix FTBFS described in issue #19
- [15dc4a7c] Fix pytde FTBFS caused by commit 5cfeb8e
- [9d52e5c0] Fix yyerror ftbfs under Fedora 40
- [5cfeb8ec] Replace Q_SIGNALS and Q_SLOTS
- [5e77787c] Fix SEGV on exit when using python 3.12 and raise minimum required version to 3.4.
- [18bbe173] Add support for python 3.12 and raise minimum required version to 3.3
- [c668d2b1] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
tqscintilla
- [7a4f96cd] Use centralized cmake version
- [c763d908] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [0355ec98] Replace Qt with TQt
- [57048ef2] Raise the minimum required version of CMake to 3.5.
pytqt
- [88d14d22] Replace Q_WS_* defines with TQ_WS_* equivalents
- [244f8405] Add support for python 3.12 and raise minimum required version to 3.4.
- [27f46d60] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [a131499f] Replaced various '#define' with actual strings - part 3
polkit-tqt
- [446ba007] Use centralized cmake version
- [0b5b2bf9] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [b5e521d0] Raise the minimum required version of CMake to 3.5.
tqca
- [891a22ce] Use centralized cmake version
- [7267a6cb] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [9cbea02c] Raise the minimum required version of CMake to 3.5.
core
tdelibs
- [e521dcc1] Update version to R14.1.2
- [aebefeb7] Merge translation files from master branch.
- [baf8f91d] tdeprint: Use 'httpGetAddress' for 'httpAddrLocalhost' on cups >= 2.0.
This relates to issue #268 - [fff7139a] tdeprint: Use 'const' for list of files to print.
This resolves issue #268 - [ab9f8038] Fix compatibility with C++17.
- [b31821dd] Align kalyptus to changes made in TDE/tdebindings#36
- [e132f2be] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [1f956046] Use centralized cmake version
- [773b8e23] cmake files: change keywords to lower case
- [8b4af6a9] kdoctools: Add TQt entity to obsolete/general.entities.
- [69e73207] Kate: add support for template string syntax of JS
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals - [d658f645] tdeio/kdirlister: better handle if TDEIO::localURL() failed
This shouldn't generally happend, but better safe than sorry. - [25f86695] tdeio/kdirlister: reset complete flag earlier for remote URLs
Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/20 - [63999d71] tdeio/kdirlister: add some cleanups for LocalURLJob's
Theoretically the lack of those could lead to segfaults and data
corruptions, hard to debug but very rare. - [26274cb6] tdeio/KDirLister: add url validity check
Before 0756aab51 and 4d6667159 this validity check was done for all URLs
inside KDirListerCache::listDir(). But since those two commits the result
of this check for remote URLs is impossible to propagate to the user. So
implicit check is in order. - [9d4be4eb] tdeio/kdirlister: some refactoring
- [ddaf1402] tdeio/Mainpage.dox: fix an incorrect reference to KDE as Trinity
- [ac345f68] Replace QT_STATIC_CONST_* with actual definitions
- [d81ab9bb] Simplify code since cmake minimum version is now 3.5
- [5e51787f] Replace Q_WS_* defines with TQ_WS_* equivalents
- [ff174128] Replace Q_SIGNALS and Q_SLOTS
- [7b83dfe0] Replace auto_ptr
- [7f03918f] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [dff83720] Fix lvm volumes appearing as removable devices
- remove obsolete/erroneous code meddling with
GENHD_FL_MEDIA_CHANGE_NOTIFY
- use /sys/block/<dev>/removable rather than
/sys/block/<dev>/capabilities
- deprecate TDEDiskDeviceStatus::Hotpluggable and use
TDEDiskDeviceStatus::Removable for all removable devices
- put some local utility function into anonymous namespace
See https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/148 - [2a3a62bb] Replace various '#define' strings - part 6
- [af8caead] Replaced various '#define' with actual strings - part 5
- [553b7050] Merge translation files from master branch.
- [d8d8319b] Replace 'Event' #define strings
- [3a837ecf] Fix FTBFS caused by detection of libr version after recent update
- [9fc074fc] Replaced various '#define' with actual strings - part 4
- [4c9f3f02] Replaced various '#define' with actual strings - part 3
- [cf7f8e74] Replace color '#define' strings with actual values
- [89c80321] Replaced various '#define' with actual strings - part 2
- [e84b6d89] Replaced time related '#define' with actual strings
- [3373b45c] Replace various tq* strings with TQt::* equivalents
- [0e4a5c95] Replace various strings '#define'd in tqtinterface
- [303b6445] Replace Qt with TQt
- [141ced0c] Prevent to use conditional inclusion preprocessor feature (since C++23)
`#elifdef` is supported since C23 and C++23, but such newer compiler
is not required here. - [1b8945b1] Raise the minimum required version of CMake to 3.5.
- [050ff82b] KTabBar: add way to revert tab color to default
This commit adds a resetTabColor(...) method to TQTabBar and TQTabWidget which allows the color of the appropriate tab to be reset to the default as specified by the desktop color scheme.
It also changes how invalid color values are handled; before, an invalid value would be used as a valid color, resulting in 0,0,0 (black). Seeing that an invalid color is returned by KColorDialog when the default color checkbox is checked, it makes more sense to ignore invalid colors, using the appropriate color from the color scheme instead. - [10b5c67d] Merge translation files from master branch.
- [2cc4398e] Update version to R14.1.2~[DEVELOPMENT]
tdebase
- [c7f1a812] Update translation template.
- [c8c65f3c] Updated release notes for R14.1.2 version
- [c2268515] tdm: Allow to detect pthread_setname_np. Add linking pthread.
This relates to issue #473 - [b151ca95] Fix FTBFS caused by incompatible cast. This resolves issue #473
- [8ad38a5e] Merge translation files from master branch.
- [0c14d592] Fix compatibility with C++17.
- [d5a875e4] Merge translation files from master branch.
- [c07cf1a4] Merge translation files from master branch.
- [459b5925] kxkb: fix incorrect signal name introduced by 1fea8982f
- [a442aacb] Merge translation files from master branch.
- [577b0ec1] twin: add tileWindowToBorder() and rename previously introduced tileHorizontally(), tileVertically(), tileGrid() DCOP calls
- [62ce8414] TWin: add tileHorizontally(), tileVertically(), tileGrid() DCOP calls
- [8d168e49] Merge translation files from master branch.
- [5403798b] Add GUI option to choose between standard and Ubuntu-style shutdown dialog.
- [d789ec8d] Fix update of fade away checkboxes in TCC session manager module
- [d6b6bd79] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [97c7b667] Use centralized cmake version
- [b8111709] Fix twin crash when starting with 'Switch desktop' option set. This
resolves issue #455 - [ff9d1cfa] Fix FTBFS caused by cmake lowercase renaming
- [b89d30df] cmake files: change keywords to lower case
- [e3c4e755] tdeioslave/sftp: make source c++11-compatible
- [e41e8b9e] tdeioslave/sftp: get rid of goto in openConnection()
- [e55cf59e] tdeioslave/sftp: use unsigned to store auth method flags/bitsets
The libssh defines those flags as unsigned. Technically ssh_auth_list()
still returns int, but its guranteed to be bitset of those flags. - [11c1ec50] tdeioslave/sftp: better erros for unsupported auth methods
Also:
- do not translate auth methods names as the names appear in config
files verbatim
- libssh actually doesn't supports hostbased auth, so exclude it from
bitset of supported - [c1a256a3] tdeioslave/sftp: better cancelation handling in case of several publickeys
Consider publickey auth canceled only if user canceled it for each of
the prompted keys. - [ef56a87f] tdeioslave/sftp: save/restore seqNr for multi-factor auth
In case the server is set up for multi-factor authentication we could
be have to query several things from the user like password, a key
passphrase, their mother's maiden name etc. It doesn't make a big
difference during an initial connection, but it butchers the
reconnection process: it can retrieve the answer of the user to the
first question (e.g. their password), but it fails to retrieve the
second one (e.g. the key passphrase). So the user would be forced to
reenter the answer for the second question upon each reconnection.
The reason for this is the passwdserver's desig (see DESIGN [1]):
Each query for AuthInfo with the openPassDlg() has an secNr number
associated with it. If it's smaller than the one of the one stored for
the privious request, than the one from the cache will be returned
automagically, if it's bigger the dialog will be prompted to the user.
Each call to openPassDlg() advances s_seqNr to the last value reported
by the passwdserver. So the first call will return the cached value and
subsequent calls will actually display the dialog to the user (assuming
authentication with the cached data failed).
But in case of multi-factor auth we have to query user for several
independent values. And we want to try to retrieve each one of those
from the cache. So we have to get a bit hacky and manually manipulate
the SlaveBase::s_seqNr value.
[1]: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/src/branch/master/tdeio/kpasswdserver/DESIGN - [fae96a29] tdeioslave/sftp: imbue error messages with errors from libssh
- [a9d6ae55] tdeioslave/sftp: cache passwords in case they were passed to setHost()
- [7ae47417] tdeioslave/sftp: prevent infinite looping in kb-interactive auth
- [16ad3686] tdeioslave/sftp: purge password in the destructor
This could be useful in case the destructor will be called before
openConnection() - [dbd135cc] tdeioslave/sftp: enable changing user during kb-interactive auth
- [15815002] tdeioslave/sftp: pass correct username to openPassDlg()
We should always pass to the openPassDlg() exactly the same username
otherwise it may result in incorrect caching of passwords especially in
case if the username is changed by the user.
Also don't allow username change in case it was passed to setHost()
(i.e. it was specified in the URL like e.g. sftp://username@host/).
In such a case after changing it'd be impossible to properly cache it. - [c5ae0c2a] tdeioslave/sftp: even bigger authentication overhaul
- Move authentication methods into separate functions so it would be
easier to correctly handle error after those and select which should
be called in which order.
- A lot of minor improvements along the way - [dbde9a19] tdeioslave/sftp: use realmValue to distinguish different prompts
This will help kpasswdserver not to confuse different user's answers to
different questions.
Also avoid passing/returning TDE::AuthInfo for kb-interactive auth as it
isn't really necessary when we don't manually caching passwords anymore. - [c950ace0] tdeioslave/sftp: avoid explicit password caching
All password caching we need actually already autmagically
done by openPassDlg(). - [c01b3345] tdeioslave/sftp: use a scope guards to close connection
There were a couple of missing closeConnection() calls after connection
errors. The probably haven't caused any major bugs, but use scope guards
to be on the safe side. - [e3895956] tdeioslave/sftp: split off connection init to a dedicated function
- [9a9f8570] tdeioslave/sftp: use free to destroy mCallbacks
As it allocated via malloc() rather than new. - [39ee836a] tdeioslave/sftp: overhaul publickey auth
Several enhancements to public key authentication and some other stuff:
- Fix passphrase entry for encrypted keys (was either hanging up or
segfaulting)
- Use scope guard idiom for cleanup calls for more reliable cleanup in
case of errors
- Add normal prompt for public key's passphrase entry dialog
- Correctly differentiate passphrase to password when cached (yes they
are getting cached regardless of keepPassword, at least for some
duration of time)
- Centrilize AuthInfo initialization and some rejig of it
kbd-interactive authentification - [2d6f4a33] tdeioslave/sftp: fix keyboard-interactive authentication
This is a partial fix to the sftp ioslave. Subsequent commits will fix
other issues.
Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/443 - [bbd9f210] kcontrol/smserver: rephrase fadeaway description
- [40879a72] kxkb: utilize a translations provseided by xkeyboard-config
xkeyboard-config package comes with a message catalogue of its own to
translate locale, keyboard model and xkb option names. It would be
easier and more robust to utilize it instead of redoing all
translation in-house. - [e56c1ff3] kxkb: add missing connect
Overvise apply button on the dialog won't be enablen when the option is
changed - [bfb0fce6] cmake: use pkg_get_variable() to query pkg-config variables
- [6b4ac199] kcontrol/input: fix incorrect statements whatsthis + some rewording
- [56037f88] Merge translation files from master branch.
- [26d58ece] Merge translation files from master branch.
- [8db3aae9] kcontrol-info-memory: use 64 bits variable to store memory size
- [10639b72] Simplify code since cmake minimum version is now 3.5
- [b2fcd6f2] Replace Q_WS_* defines with TQ_WS_* equivalents
- [cfbf60a0] kxkb: handle resetOld correctly in cases if all opions already set
Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/391 - [28b6fb9b] Replace Q_SIGNALS and Q_SLOTS
- [71079cac] Replace auto_ptr
- [1c65be77] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [55ba7bff] Merge translation files from master branch.
- [75aeb0d5] Merge translation files from master branch.
- [0e5ef873] Replace various '#define' strings - part 6
- [dcda0012] KXkb: add keyboard layout notification
- [94cec968] Kxkb: move LayoutUnit struct into its own file and add getLayoutName function
- [c55cad68] Make dependency upon libssh optional
- [6c067940] TWin: Add DCOP method showWindowMenu(wid) for default menu position
- [8447a9a6] TWin showWindowMenu: add support for negative coordinates
Negative coordinates change the popup menu origins:
* Negative X: origin is right edge instead of left;
* Negative Y: origin is bottom edge instead of top. - [e67f30eb] twin: fix showWindowMenuAt(...) DCOP call
Before it only called slotWindowOperations(), which showed the operations menu of the current window at a preset position, ignoring all arguments passed to showWindowMenuAt.
This commit implpements the correct behaviour of the function which takes all arguments into account. - [fa7aa947] Merge translation files from master branch.
- [9c73915c] twin: use separate bit to inhibit configure request messages. This resolves issue #434
- [80859919] Merge translation files from master branch.
- [f91c73bf] Merge translation files from master branch.
- [3f84b83e] Replaced various '#define' with actual strings - part 5
- [e240ec46] Merge translation files from master branch.
- [b19e4cab] Replace 'Event' #define strings
- [6b5d95d5] twin: makes sure to notify an application on resizing events so that the window contents can get updated. This is particularly important for Virtual Terminal based application. This resolves issue TDE/tde#57 and issue #384
- [a3017180] Fix FTBFS caused by detection of libr version after recent update
- [df343992] Fix unwanted window resizing. This resolves issue TDE/tde#57
Some applications (like xfce4-terminal) try to manage their sizes by requesting the window manager a different size. The WM responds by resizing the window and the application tries once again to adjust its own size. This can lead to a repeated loop of request-resize which results in the application window to either shrink to the minimum allowed size or expand to the display size. - [71b2eaec] Replaced various '#define' with actual strings - part 4
- [139b166e] Replaced various '#define' with actual strings - part 3
- [c19f68bd] Replaced various '#define' with actual strings - part 2
- [bf17c1e9] Replaced time related '#define' with actual strings
- [7272c289] Replace various tq* strings with TQt::* equivalents
- [4a6f4a17] Replace various strings '#define'd in tqtinterface
- [06606d2a] QuickLauncher: Ignore empty URLs at reading the configuration
- [196fabb2] Fix strlcat and strlcpy check
Solving the TDE/tde-packaging-gentoo#310 problem.
Glibc-2.38 adds new functions strlcat and strlcpy. - [a49b0e2c] Replace Qt with TQt
- [8f661313] Merge translation files from master branch.
- [63432a21] Raise the minimum required version of CMake to 3.5.
- [457c4539] Merge translation files from master branch.
- [539f7f00] Update translation template.
- [e3908518] Deprecate TabColor setting
This is a confusing feature which saves the color of the first tab and makes it the default color in new sessions. As a result, it broke color schemes by overriding the default tab color.
This is not related to saving tab colors as part of a session. - [c7cfaf20] Konsole: add ability to reset tab color to default
- [93dcc468] Add six new color schemes taken from https://www.opendesktop.org.
There is no license files on the website, but based on the site Terms & Conditions, it seems reasonable to redistribute this files under GPL2 license.
Human: https://www.opendesktop.org/p/1123955/
Last.fm: https://www.opendesktop.org/p/1123742/
Lizard: https://www.opendesktop.org/p/1123562
Platinum: https://www.opendesktop.org/p/1123528/
Sienna: https://www.opendesktop.org/p/1123485/
WedgeWeb: https://www.opendesktop.org/p/1123249/ - [5739816e] Added initial draft of release notes for R14.1.2.
- [fe02fc0d] Merge translation files from master branch.
tdepim
- [f6431551] Merge translation files from master branch.
- [0941a94f] Merge translation files from master branch.
- [d77e599f] Fix compatibility with C++17.
- [9a6cea11] Merge translation files from master branch.
- [68a20c5c] Merge translation files from master branch.
- [f315d011] Allow open on all HTML parts
Currently, it is not possible to open a mail with HTML as main body part.
This fixes it by checking if the content type is of `HTML` and allow it
to be opened. This resolves issue #89 - [d3b795b9] Merge translation files from master branch.
- [5a1ccaac] Merge translation files from master branch.
- [04278de8] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [a21e50f9] Use centralized cmake version
- [487706ea] Simplify code since cmake minimum version is now 3.5
- [0037a564] Replace Q_WS_* defines with TQ_WS_* equivalents
- [ea84f574] Fix spurious quotes in calendar events
Newer libical versions no longer require the parameters to be quoted. This
patch removes the quoting to avoid adding unnecessary quotes to the
attendee and organizer parameters. This resolves issue #108 - [112a9744] Fix open HTML with an external program
HTML emails can't be opened because they are not written to disk. This
fixes it by writing HTML parts of the email unconditionally to disk and
adds a '.html' file extension if the part is of type HTML. This resolves
Issue #94 - [7ad14b00] Replace Q_SIGNALS and Q_SLOTS
- [3b1e4bbb] Replace auto_ptr
- [b0f8eef0] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3b25eb31] Replace various '#define' strings - part 6
- [f26a304e] Replaced various '#define' with actual strings - part 5
- [ae35bc48] Replace 'Event' #define strings
- [51d0291b] Replaced various '#define' with actual strings - part 4
- [22da7013] Replaced various '#define' with actual strings - part 3
- [6efcb28e] Replaced time related '#define' with actual strings
- [9ade94ab] Holidays: ua
- [4a793dd7] Replace various strings '#define'd in tqtinterface
- [7a712e61] Replace Qt with TQt
- [0a8405f6] Raise the minimum required version of CMake to 3.5.
tdemultimedia
- [538f7a0f] Fix issue 74 (FTBFS on Fedora 40)
- [1562f148] Fix FTBFS caused by incompatible cast
- [d1b9bae1] KMix: system tray icon enhancements
* XDG-compliant icon names with volume level specification (low, medium, high)
Low-Medium threshold: 33%
Medium-High threshold: 67%
* Improved built-in icon theme with distinct volume levels (according to above)
* Choice between classic KMix icon theme, imrpoved KMix icon theme and system theme.
* New KMixDockWidget::getAvgVolume() method
Gets average volume in %. Code actually comes from KMixDockWidget::setVolumeTip(),
but was put into a separate method to be reused for determination of icon according
to the volume level - [d2ab59b4] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [0b24fa85] Use centralized cmake version
- [b7646ef6] cmake files: change keywords to lower case
- [637d383f] kmix[minor]: remove a stray extra space
- [282d6e6a] Simplify code since cmake minimum version is now 3.5
- [98cd7ba5] Add support for TagLib 2.
- [b71a5b9b] Replace Q_SIGNALS and Q_SLOTS
- [39a4235d] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [f353dc99] Replace various '#define' strings - part 6
- [da49daf5] Replaced various '#define' with actual strings - part 5
- [452c1e81] Replace 'Event' #define strings
- [bd26faa9] Replaced various '#define' with actual strings - part 3
- [de42315f] Noatun: Crashing at empty items in the playlist
- [5bdb5189] Replace Qt with TQt
- [a86ba592] Raise the minimum required version of CMake to 3.5.
tdenetwork
- [9922b609] Fix FTBFS from commit 6d93398d01f28b9047e9b9559a7075da36f3a36f.
- [e360b99f] kopete: Add missing function prototypes.
This resolves issue #77 - [35e56a0a] Merge translation files from master branch.
- [6d93398d] Fix compatibility with C++17.
- [e8c58093] Remove overlooked 'register'.
- [6524c6ee] Zeroconf ioslave: Add support for SFTP servers
- [a557a673] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [b8cee550] Use centralized cmake version
- [a3953252] cmake files: change keywords to lower case
- [f61a13c1] Merge translation files from master branch.
- [9bea52fd] Replace Q_SIGNALS and Q_SLOTS
- [5d85a610] Replace auto_ptr
- [40393e30] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [51f2e0ff] Replace various '#define' strings - part 6
- [4be03979] Merge translation files from master branch.
- [e0a2f545] Replaced various '#define' with actual strings - part 5
- [e6bbef6d] Merge translation files from master branch.
- [4dbc3ab8] Replace 'Event' #define strings
- [b195cf38] Replaced various '#define' with actual strings - part 4
- [4edd87ce] Replaced various '#define' with actual strings - part 3
- [7367a616] Replace Qt with TQt
- [caae1151] Raise the minimum required version of CMake to 3.5.
tdegraphics
- [c6ebe934] Fix FTBFS from prior commit.
- [ce109660] Fix compatibility with C++17.
- [036f40f1] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [d65aac7f] Use centralized cmake version
- [66444947] cmake files: change keywords to lower case
- [459c09ca] Simplify poppler version definitions.
- [df6124db] Added support for poppler-24.02
Solution to problem #85 - [cb1b22d0] Replace Q_SIGNALS and Q_SLOTS
- [ea1f5870] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [904cb397] Replace various '#define' strings - part 6
- [c9e40417] Replaced various '#define' with actual strings - part 5
- [1fe6cb7f] Merge translation files from master branch.
- [556d90cb] Replace 'Event' #define strings
- [7ec27f89] Replaced various '#define' with actual strings - part 4
- [cdcc24c6] ksnapshot: add setPixmap DCOP call
Can be useful to integrate KSnapshot with applications that can take their own screenshots better (e.g. a media player can use a single frame from a video instead of a lower-quality real screen grab). - [57ade681] Replaced various '#define' with actual strings - part 3
- [73368709] Replace various strings '#define'd in tqtinterface
- [cfee7c43] Replace Qt with TQt
- [924f894b] Raise the minimum required version of CMake to 3.5.
- [666a1d67] ksnapshot: add delay functionality to 'Region' mode. This resolves issue #71
tdetoys
- [04527b6a] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [cc18811e] Use centralized cmake version
- [1fb4ee78] cmake files: change keywords to lower case
- [61b80b53] Replace Q_SIGNALS and Q_SLOTS
- [8114410a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [4603b024] Replace various '#define' strings - part 6
- [1606ffff] Replaced various '#define' with actual strings - part 5
- [0b6f951e] Merge translation files from master branch.
- [64a5b23e] Replace 'Event' #define strings
- [79c780ce] Replaced various '#define' with actual strings - part 3
- [8f9e8c88] Replace Qt with TQt
- [a6499fdc] Raise the minimum required version of CMake to 3.5.
tdeutils
- [bbdb67ee] Fix compatibility with C++17.
- [d546951a] Use the new way to find Python with CMake >= 3.12.
- [6e0ff42c] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [75fa7e08] Use centralized cmake version
- [43a8c03e] cmake files: change keywords to lower case
- [7f582d9a] Simplify code since cmake minimum version is now 3.5
- [b6eec758] Replace Q_SIGNALS and Q_SLOTS
- [278d2f50] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c960bd6f] superkaramba: add support for python 3.12. This resolves issue #71
- [d4393c11] Replace various '#define' strings - part 6
- [5b1fdb9a] Replaced various '#define' with actual strings - part 5
- [5ecef94f] kmilo: after changing the screen brightness, allows a small delay before popping up the OSD feedback. This allows the underlying hardware to report the correct value. This resolves issue #68
- [dfb81fda] Replace 'Event' #define strings
- [2d05a4b0] Replaced various '#define' with actual strings - part 3
- [f901ccee] Replace various strings '#define'd in tqtinterface
- [3156b549] Solving the TDE/tde-packaging-gentoo#313 problem.
Glibc-2.38 adds new functions strlcat and strlcpy. - [b3f501d4] Replace Qt with TQt
- [60471443] Raise the minimum required version of CMake to 3.5.
tdeedu
- [46fd80ef] Fix compatibility with C++17.
- [2b50eee0] kstars: Fix FTBFS caused by incompatible cast on *BSD systems.
- [f3c1d301] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [0913e673] Use centralized cmake version
- [093fca95] cmake files: change keywords to lower case
- [aa76b219] Replace Q_SIGNALS and Q_SLOTS
- [84528140] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [5446eb71] Replace various '#define' strings - part 6
- [63af14c3] Merge translation files from master branch.
- [c75fee7f] Replaced various '#define' with actual strings - part 5
- [c407c455] Replaced various '#define' with actual strings - part 4
- [79ebc59c] Replaced various '#define' with actual strings - part 3
- [bcee6c32] Replace Qt with TQt
- [9af05810] Raise the minimum required version of CMake to 3.5.
- [0ef55542] Merge translation files from master branch.
tdegames
- [12522952] Fix FTBFS caused by invalid cast. This resolves issue #38
- [6a21e133] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [50854749] Use centralized cmake version
- [ebb1fd89] cmake files: change keywords to lower case
- [e2b34f0b] Simplify code since cmake minimum version is now 3.5
- [bd2e9436] Replace Q_SIGNALS and Q_SLOTS
- [7b5371d0] Replace auto_ptr
- [6374e2e6] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [4d6acadb] Replace various '#define' strings - part 6
- [76f734a8] Replaced various '#define' with actual strings - part 5
- [03c3d226] Replace 'Event' #define strings
- [f240b9f9] Replaced various '#define' with actual strings - part 3
- [c5a61d6e] Replace various strings '#define'd in tqtinterface
- [afc67225] Replace Qt with TQt
- [d86e0406] Raise the minimum required version of CMake to 3.5.
tdeaccessibility
- [1f03f25f] Merge translation files from master branch.
- [71bcc460] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [b6e3f69e] Use centralized cmake version
- [c4b79b2c] cmake files: change keywords to lower case
- [8923dcc3] Replace Q_SIGNALS and Q_SLOTS
- [79f019f1] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2aad9568] Replace various '#define' strings - part 6
- [93fbe96e] Replaced various '#define' with actual strings - part 5
- [14c0e766] Replaced various '#define' with actual strings - part 3
- [716294c7] Replace Qt with TQt
- [57266e49] Raise the minimum required version of CMake to 3.5.
tdeaddons
- [d996d033] Fix compatibility with C++17.
- [ce857b09] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [b58fbd54] Use centralized cmake version
- [8be498d3] cmake files: change keywords to lower case
- [2b2ba553] kate/katesort: fix a typo
Thanks to adem for noticing this on weblate - [300132f9] Replace Q_SIGNALS and Q_SLOTS
- [e2345655] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c19fc937] Replace various '#define' strings - part 6
- [76b9a4ad] Merge translation files from master branch.
- [92d851c1] Replaced various '#define' with actual strings - part 5
- [588c6181] Replace 'Event' #define strings
- [a67df804] Replaced various '#define' with actual strings - part 4
- [94639370] Replaced various '#define' with actual strings - part 3
- [f37c5af5] Replace Qt with TQt
- [35876c80] Raise the minimum required version of CMake to 3.5.
tdeadmin
- [ffb1e416] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [d5a40b8e] Use centralized cmake version
- [f2ee6cfd] Replace Q_SIGNALS and Q_SLOTS
- [7ad2f154] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [1ab02499] Replace various '#define' strings - part 6
- [ac7e4fb5] Replace 'Event' #define strings
- [684b9d33] Replaced various '#define' with actual strings - part 3
- [16c7639b] Replace Qt with TQt
- [a0028424] Raise the minimum required version of CMake to 3.5.
tdeartwork
- [13267ac4] Merge translation files from master branch.
- [277baf2d] Merge translation files from master branch.
- [265bc607] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [917de326] Use centralized cmake version
- [aecd11b5] cmake files: change keywords to lower case
- [2cfbec61] Replace Q_WS_* defines with TQ_WS_* equivalents
- [78e766b0] Replace Q_SIGNALS and Q_SLOTS
- [d0fc8a81] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [f2e4e24e] Replace various '#define' strings - part 6
- [856d6d13] Replaced various '#define' with actual strings - part 5
- [fc6c321e] Replace 'Event' #define strings
- [e243bddf] Replaced various '#define' with actual strings - part 4
- [149da968] Replaced various '#define' with actual strings - part 3
- [185ed081] Replace Qt with TQt
- [59d0ee36] Raise the minimum required version of CMake to 3.5.
- [5f9b4a9f] Merge translation files from master branch.
- [f6619763] Merge translation files from master branch.
tdebindings
- [388a3d39] Fix FTBFS caused by incompatible cast
- [fd2a99a7] Fix FTBFS caused by TDE/tqt3#109
- [935aa331] Replace QT_STATIC_CONST_* with actual definitions
- [5204caac] Replace Q_WS_* defines with TQ_WS_* equivalents
- [a8bc056a] Replace Q_SIGNALS and Q_SLOTS
- [1eb01731] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [7d03532f] Replace various strings '#define'd in tqtinterface
tdesdk
- [2a74797a] Fix FTBFS from prior commit.
- [9c42eeca] Fix compatibility with C++17.
- [c119718f] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [5e8a11ec] Use centralized cmake version
- [7ea1ab37] cmake files: change keywords to lower case
- [b703ee98] Replace QT_STATIC_CONST_* with actual definitions
- [7f79362a] Rename missed Q_SIGNALS
- [d3799513] Replace Q_SIGNALS and Q_SLOTS
- [725db2ce] Replace auto_ptr
- [d3656a49] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [8fc5cf27] Replace various '#define' strings - part 6
- [74c34bca] Merge translation files from master branch.
- [a03358fd] Replaced various '#define' with actual strings - part 5
- [4f51c08a] Merge translation files from master branch.
- [d6dc3a3d] Replace 'Event' #define strings
- [49d88f18] Replaced various '#define' with actual strings - part 3
- [5d52b8ff] Replace Qt with TQt
- [785064f9] Raise the minimum required version of CMake to 3.5.
- [429f7fd4] Merge translation files from master branch.
tdevelop
- [0deb56b4] Fix FTBFS from prior commit.
- [0d1f1940] Fix compatibility with C++17.
- [cd372fc6] Merge translation files from master branch.
- [40fd405e] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [27159fc6] Use centralized cmake version
- [ce6544d5] cmake files: change keywords to lower case
- [0ddca9b8] Replace QT_STATIC_CONST_* with actual definitions
- [6843dff0] Simplify code since cmake minimum version is now 3.5
- [2f2f4edb] Replace Q_SIGNALS and Q_SLOTS
- [43fd0a38] Replace auto_ptr
- [c891bb5d] Fix KDevPluginController::query() with empty constraint
When KDevPluginController::query() was called with empty constrain it
were resulting in incorrect query string being passed to TDETrader,
which were resulting in at least warnings like the next one:
```
[tdeio (TDETrader)] [6751] WARNING: Parsing ' and [X-TDevelop-Version] == 5' gave syntax error
``` - [e4efa087] Fix SEGV when hovering on symbols after creating a new project. This resolves issue #40
- [0b6a83b7] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [b9186693] Replaced various '#define' with actual strings - part 6
- [f12db681] kdevdesigner: prevent SEGV from invalid pointer. This relates to issue TDE/tqt3#97
- [ea8f1be4] Replaced various '#define' with actual strings - part 5
- [2d0252be] Replace 'Event' #define strings
- [d31a7027] Replaced various '#define' with actual strings - part 4
- [8308ebce] Replaced various '#define' with actual strings - part 3
- [521604de] Replace Qt with TQt
- [96ced6ef] Raise the minimum required version of CMake to 3.5.
tdewebdev
- [c9984a44] Merge translation files from master branch.
- [96368009] Merge translation files from master branch.
- [a605c96a] Adding the header file unistd.h
Solution to issue #42
Required for Clang-17 and newer - [5344e9d7] Adding cstdlib header file inclusion
Solution to issue #42
Necessary to enable some C functions - [49db40e4] Adding support for libxml2-2.12.0 and later for Quanta+
Solution to issue #42 - [5f5631cf] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [cb9f1d4a] Use centralized cmake version
- [684bdead] cmake files: change keywords to lower case
- [f8006999] Fix FTBFS due to multi-line result from ICU C++ flags detection.
- [48c2f91a] Replace Q_SIGNALS and Q_SLOTS
- [dd3ce2e1] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [86fed9b7] Replace various '#define' strings - part 6
- [8954d764] Merge translation files from master branch.
- [717ca24e] Merge translation files from master branch.
- [abd5e8f9] Fix FTBFS from prior commit.
- [37f6b15c] Replaced various '#define' with actual strings - part 5
- [dd931b3e] Replace 'Event' #define strings
- [b4887167] Replaced various '#define' with actual strings - part 4
- [9e8724c9] Replaced various '#define' with actual strings - part 3
- [b00a91b0] Replace Qt with TQt
- [b3b05947] Raise the minimum required version of CMake to 3.5.
tde-i18n
- [8ddfd117] Merge translation files from master branch.
- [2b891ffd] Merge translation files from master branch.
- [72664e87] Merge translation files from master branch.
- [724559ed] Merge translation files from master branch.
- [7667c15e] Merge translation files from master branch.
- [390b68be] Merge translation files from master branch.
- [a82e1bd9] Merge translation files from master branch.
- [c44cc249] Update translation template.
- [8e526f1e] Merge translation files from master branch.
- [c73f1818] Update translation template.
- [f605d562] Merge translation files from master branch.
- [5122fe95] Update translation template.
- [e33c1c38] Merge translation files from master branch.
- [4c77ee42] Merge translation files from master branch.
- [babec909] Merge translation files from master branch.
- [804bcaef] Merge translation files from master branch.
- [b0640083] Merge translation files from master branch.
- [ecd18386] Update translation template.
- [b7184bff] Merge translation files from master branch.
- [2233c58b] Merge translation files from master branch.
- [7be64c49] Update translation template.
- [0b596f80] Merge translation files from master branch.
- [dfb70b49] Merge translation files from master branch.
- [0d696b9e] Update translation template.
- [fd023218] Merge translation files from master branch.
- [73ee15ef] Update translation template.
- [67ea74a6] Merge translation files from master branch.
- [c6d169d2] Update translation template.
- [a4095ce8] Merge translation files from master branch.
- [dc546bf3] Update translation template.
- [8c64c11a] Merge translation files from master branch.
- [de2dd299] Update translation template.
- [45435fb1] Merge translation files from master branch.
- [3d0a34c8] Use centralized cmake version
- [bfd8a62c] Merge translation files from master branch.
- [67869a54] Update translation template.
- [2bcdeb77] Merge translation files from master branch.
- [c58a3740] Merge translation files from master branch.
- [3a4bb944] Update translation template.
- [5a91965f] Merge translation files from master branch.
- [d81951f2] Update translation template.
- [75717c54] Merge translation files from master branch.
- [169faa1b] Merge translation files from master branch.
- [bf17c0ac] tdemultimedia/kmix: remove a stray extra space.
- [fadd5e6b] Merge translation files from master branch.
- [bab54172] Update translation template.
- [cf522957] Merge translation files from master branch.
- [741eef7d] Update translation template.
- [2cf50021] Merge translation files from master branch.
- [f4c5ba08] Replace Q_SIGNALS and Q_SLOTS
- [73230742] Merge translation files from master branch.
- [842d0728] Update translation template.
- [aa5da19a] Merge translation files from master branch.
- [44e3825e] Update translation template.
- [2ea8296a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c5441a72] Merge translation files from master branch.
- [a00bbd9b] Merge translation files from master branch.
- [3cf519c1] Merge translation files from master branch.
- [c7eb7259] Merge translation files from master branch.
- [6c034e83] Merge translation files from master branch.
- [b590f840] Merge translation files from master branch.
- [b319b88a] Update translation template.
- [cc45161c] Merge translation files from master branch.
- [efd947d3] Update translation template.
- [25d196dc] Merge translation files from master branch.
- [e5380a77] Update translation template.
- [a1d02ef5] Merge translation files from master branch.
- [4b02ffeb] Merge translation files from master branch.
- [2729c261] Merge translation files from master branch.
- [47a9a331] Update translation template.
- [41f9994c] Merge translation files from master branch.
- [8772ccd5] Update translation template.
- [9cfeaaba] Merge translation files from master branch.
- [2b8623c9] Merge translation files from master branch.
- [7ea97c56] Merge translation files from master branch.
- [ce43bede] Update translation template.
- [298b491a] Merge translation files from master branch.
- [c2f113be] Merge translation files from master branch.
- [d4594ec8] Merge translation files from master branch.
- [28015952] Update translation template.
- [abe7f960] Merge translation files from master branch.
- [6d051d6a] Merge translation files from master branch.
- [1608a85b] Update translation template.
- [61e2eaf3] Merge translation files from master branch.
- [c41887c6] Remove duplicate translations from commit 83e7d90131a60206a219edf4a2ba9e570c689268.
- [2ff9fcec] Merge translation files from master branch.
- [6b78e804] Replace Qt with TQt
- [83e7d901] Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
- [d3f6a5fb] Merge translation files from master branch.
- [dd01a895] Merge translation files from master branch.
- [d7331290] Update translation template.
- [d39a21e0] Merge translation files from master branch.
- [6383fd9e] Raise the minimum required version of CMake to 3.5.
- [2a662e89] Merge translation files from master branch.
- [0cb349be] Merge translation files from master branch.
- [7d9b15b4] Merge translation files from master branch.
- [42fa475c] Update translation template.
libraries
libkdcraw
- [6cc04761] Use centralized cmake version
- [a8723c31] cmake files: change keywords to lower case
- [4bbbe298] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d2e28d1a] Replace Qt with TQt
- [cf62b14f] Raise the minimum required version of CMake to 3.5.
libkexiv2
- [efab49fa] Use centralized cmake version
- [d69c95c1] Replace Qt with TQt
- [735076ec] Raise the minimum required version of CMake to 3.5.
libkipi
- [713bb546] Merge translation files from master branch.
- [ef09f37c] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [a1ca108f] Use centralized cmake version
- [166d8c53] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [29ef104e] Replace various '#define' strings - part 6
- [72d352a7] Replace Qt with TQt
- [79b037f6] Raise the minimum required version of CMake to 3.5.
kipi-plugins
- [743bf161] Merge translation files from master branch.
- [d3295d99] Merge translation files from master branch.
- [d2ec29f0] Use centralized cmake version
- [8b5c3386] Replace Q_SIGNALS and Q_SLOTS
- [b74930c0] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d0107930] Replace various '#define' strings - part 6
- [2cf37f58] Replaced various '#define' with actual strings - part 5
- [b4ab4f13] Merge translation files from master branch.
- [d543d160] Merge translation files from master branch.
- [cc9c3a67] Merge translation files from master branch.
- [5c09bb36] Replaced various '#define' with actual strings - part 3
- [bc3ec7f2] Replace Qt with TQt
- [d28f47b5] Raise the minimum required version of CMake to 3.5.
libksquirrel
- [4b962006] Fix FTBFS due to invalid pointer in iconv function
- [061a1af5] Set a real data type used for FreeArray2D.
This relates to issue #17 - [4f4ea4c0] Add missing function prototype.
This relates to issue #17 - [01dafd82] Use centralized cmake version
- [115223b1] cmake files: change keywords to lower case
- [a125c8f3] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [592f28f9] Replace Qt with TQt
- [c612c9c0] Raise the minimum required version of CMake to 3.5.
- [029784cd] Drop autotools support
libtdeldap
- [6c4cb0e3] Use centralized cmake version
- [1090c874] Replace Qt with TQt
- [5ba47607] Raise the minimum required version of CMake to 3.5.
libtqt-perl
- [71a53642] Align kalyptus to changes made inx TDE/tdebindings#36
- [fe960594] Replace QT_STATIC_CONST_* with actual definitions
- [a9af628d] Replace Q_WS_* defines with TQ_WS_* equivalents
- [a9e12524] Replace Q_SIGNALS and Q_SLOTS
- [947bc2db] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d655c313] Replaced various '#define' with actual strings - part 4
- [803408f7] Replaced various '#define' with actual strings - part 2
pytde
- [89bcd15e] Replace Q_WS_* defines with TQ_WS_* equivalents
- [db88dbbd] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [41cc3906] Replace various strings '#define'd in tqtinterface
- [16dba0a4] Replace Qt with TQt
pytdeextensions
- [511bdc21] Fixing tdedesigner and tqtuicompiler modules not working
Python3 compatibility fix - [e266e8f8] Fix detection of SIP-TQt, PyTQt and PyTDE modules in tdedistutils
with multiple Python3 installed in parallel. This solves FTBFS
when building tde-guidance.
Remove import of 'imp' module that is no longer needed.
Sysconfig from Python is now used instead of sysconfig from distutils. - [e864982d] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
applications/development
kdbg
- [c4303681] Fix FTBFS from prior commit.
- [f80e1f0c] Fix compatibility with C++17.
- [7e20b904] Use centralized cmake version
- [1a9b8e7a] Replace Qt with TQt
- [320b4e63] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3cefef8e] Merge translation files from master branch.
- [c8f5e54e] Raise the minimum required version of CMake to 3.5.
kdiff3
- [df477675] Use centralized cmake version
- [a8091616] Replace Qt with TQt
- [79daa6a1] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [835702ea] Replaced various '#define' with actual strings - part 6
- [95d0ba61] Replaced various '#define' with actual strings - part 5
- [7ff0b7ed] Merge translation files from master branch.
- [10096961] Merge translation files from master branch.
- [eff219cd] Merge translation files from master branch.
- [b1a7c5eb] Update translation template.
- [180f871b] Fix pasting UTF8 text from clipboard.
This commit is based on work from Roman Savochenko available at PR #13, but adapted to the TDE standard. It replaces the aforementioned PR #13. - [5e65678a] Raise the minimum required version of CMake to 3.5.
- [d3cfbab1] Replace Qt with TQt
kpicosim
- [6b044222] Merge translation files from master branch.
- [e004eca5] Merge translation files from master branch.
- [b946cfb9] Merge translation files from master branch.
- [d4ec62b8] Merge translation files from master branch.
- [4c5f68d5] Merge translation files from master branch.
- [e7444316] Merge translation files from master branch.
- [b2af526f] Use centralized cmake version
- [7825473d] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [bb32ffaf] Replaced various '#define' with actual strings - part 6
- [6e904a10] Raise the minimum required version of CMake to 3.5.
- [69df5d03] Replace Qt with TQt
kscope
- [2642e478] Merge translation files from master branch.
- [7fcca288] Use centralized cmake version
- [76dc310f] Replace Qt with TQt
- [b035a6c4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3fb41909] Raise the minimum required version of CMake to 3.5.
ktechlab
- [ebdcce5a] Use centralized cmake version
- [00010fac] Replace Qt with TQt
- [4bff0b57] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [a082a259] Replaced various '#define' with actual strings - part 6
- [f5d0ed0e] Replaced various '#define' with actual strings - part 5
- [669d1daa] Raise the minimum required version of CMake to 3.5.
- [420fcb6c] Replace Qt with TQt
kxmleditor
- [fa8d4d39] Use centralized cmake version
- [e86e0ce5] Replace Qt with TQt
- [9e94ee99] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [21ab29e9] Raise the minimum required version of CMake to 3.5.
piklab
- [4c7410f2] Merge translation files from master branch.
- [a4782bc0] Rename qt_config.h file to match expected name
- [088305a1] Removed unnecessary files
- [6e5d4478] Use centralized cmake version
- [9689d714] Replace Qt with TQt
- [f3f67ab7] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [26bcb362] Replaced various '#define' with actual strings - part 6
- [aa5aa16b] Replace 'Event' #define strings
- [fb9112c9] Replaced various '#define' with actual strings - part 4
- [d73c00b7] Raise the minimum required version of CMake to 3.5.
- [6ea6638a] Replace Qt with TQt
tdesvn
- [8682d688] Merge translation files from master branch.
- [96a87859] Use centralized cmake version
- [0ec1d384] cmake files: change keywords to lower case
- [593e1773] Removed unnecessary files
- [484c315b] Replace Qt with TQt
- [aa1df34f] Replace Q_SIGNALS and Q_SLOTS
- [f71f6c99] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [a2bf0715] Replaced various '#define' with actual strings - part 6
- [7221e1ed] Replaced various '#define' with actual strings - part 5
- [340a9422] Merge translation files from master branch.
- [2e75d667] Replaced various '#define' with actual strings - part 3
- [2bf1c106] Raise the minimum required version of CMake to 3.5.
- [42734aee] Replace Qt with TQt
applications/games
knights
- [26e12033] Merge translation files from master branch.
- [cd0bca7c] Use centralized cmake version
- [ffaff7d7] Replace Qt with TQt
- [b4b4994c] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [b8335a4a] Replaced various '#define' with actual strings - part 6
- [a39b2b83] Replaced various '#define' with actual strings - part 5
- [0959fe8c] Raise the minimum required version of CMake to 3.5.
- [248df7d9] Replace Qt with TQt
tdepacman
- [bfe3e5c8] Use centralized cmake version
- [b4236bf2] Replace Qt with TQt
- [2d94efff] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [1a929a80] Raise the minimum required version of CMake to 3.5.
applications/graphics
digikam
- [339ffbc1] Merge translation files from master branch.
- [1ba32805] Drop old K&R style function declarations
- [7e9908ea] Add missing return type in function implementations.
This resolves issue #23 - [8f0b4a3a] Use centralized cmake version
- [282e4601] Replace Qt with TQt
- [40c16979] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [4fb5c762] Merge translation files from master branch.
- [dfb59e25] Replaced various '#define' with actual strings - part 6
- [8fa69390] Replaced various '#define' with actual strings - part 5
- [3bedcd00] Merge translation files from master branch.
- [80cb02ba] Replace 'Event' #define strings
- [a7a3aa3b] Replaced various '#define' with actual strings - part 3
- [df0251e7] Raise the minimum required version of CMake to 3.5.
- [56a89d7b] Replace Qt with TQt
gwenview
- [cd17d521] Fix pthread required
- [f0b27130] Use centralized cmake version
- [843bdb50] Fix cmake conversion for ix86 archs
- [41f6d5af] Conversion to cmake building system
- [b24092d4] fix an incorrect condition in ImageViewController::eventFilter()
- [f9cd02af] Suppress several warnings
- [e00293c1] Drop dummy development test for vertical tab widget
- [e99867e7] Add program pixmap from tde-packaging's debian folder
- [2407130a] Move gvdirpart icons under main icons folder
- [10fd80d4] Restructure src/pics into icons folder
- [c3f31d40] Removed unused files
- [d41529e3] Restructure doc/man folders
- [ab31b74b] Fix a crash when loading a PPMRAW image
The crash is caused by the fact that TQImageIO::imageFormat() may return
some values not present in neighter KImageIO::types(KImageIO::Reading)
nor in TQImage::inputFormatList(), e.g. different flavours of ppm like
PPMRAW. Besides that it's possible theat TQt could support other formats
unknown to TDE. - [b97fb9f1] Update FileThumbnailView's grid upon finishing loading thumbnails
- [74da49e1] src/gvcore/filethumbnailview: replace NULL -> nullptr
- [0729233b] configimagelistpage: add whatsthis messages and keyboard accelerators
- [c42622ee] Make metadata loading optional
See: https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/17#issuecomment-44076 - [8f266257] Use image dimmentions from metadata as a fallback
- [db4080c1] Avoid sorting items and creating thumbnails when loading metadata
Otherwice it has a big performance impact: it causes lots of
thumbnail reloads and resorts of FileThumbnailView. - [a5931c83] Some refactoring of FileThumbnailViewItem::updateLines()
- [d84beae4] Keep an item in browse mode selected when switchng views
- [ad01a7f1] Various small improvements
- fix some warnings about struct/class deslaration/definition mismatch
- fix incorrect assert in jpegcontent.cpp
- add a note
- null a pointer after deleting a job - [801c90b6] Load file metadata asynchronously
Synchronous load of metadata resulted in big delays when opening a
directory with substantial amount of files.
Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/17 - [8064b0ca] avoid waiting for dir cache when opening a file
At least this will eliminate the most annoying part of the bug there the
file won't be displayed till the dir cache is completely loaded.
Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/gwenview/issues/17 - [30981c12] Replace Qt with TQt
- [f31e61c6] Replace auto_ptr
- [f476b77d] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [5eb453b7] Replaced various '#define' with actual strings - part 6
- [247add21] Replaced various '#define' with actual strings - part 5
- [5a71f93b] Replace 'Event' #define strings
- [20b4653f] Replaced various '#define' with actual strings - part 3
- [d4e69bd2] Replaced various '#define' with actual strings - part 2
- [d2998fbc] Replace various strings '#define'd in tqtinterface
- [549b83de] Raise the minimum required version of CMake to 3.5.
- [4c58d618] Replace Qt with TQt
gwenview-i18n
- [2445104d] Merge translation files from master branch.
- [8ecf8023] Merge translation files from master branch.
- [606e152d] Merge translation files from master branch.
- [226a6ad5] Merge translation files from master branch.
- [5d8fa9a9] Use centralized cmake version
- [ae6e2155] Merge translation files from master branch.
- [498684e4] Update translation template.
- [476bfcf5] Merge translation files from master branch.
- [0aaaf25f] Merge translation files from master branch.
- [eeefb581] Update translation template.
- [adde7bac] Replace Qt with TQt
- [04164129] Merge translation files from master branch.
- [df89b8d0] Update translation template.
- [fe3a9945] Merge translation files from master branch.
- [ec568f0d] Raise the minimum required version of CMake to 3.5.
ksquirrel
- [2337b803] Merge translation files from master branch.
- [fbc60ad1] Merge translation files from master branch.
- [ca605599] Use centralized cmake version
- [c8cada82] Merge translation files from master branch.
- [745c0bda] Replace Qt with TQt
- [ee5dabb7] Replace Q_SIGNALS and Q_SLOTS
- [77d98cdf] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [e814f1e8] Replaced various '#define' with actual strings - part 6
- [9d3adf01] Raise the minimum required version of CMake to 3.5.
- [4078a895] Replace Qt with TQt
potracegui
- [81636cdb] Merge translation files from master branch.
- [6f01896c] Use centralized cmake version
- [323206ba] Replace Qt with TQt
- [7a90b396] Replace Q_SIGNALS and Q_SLOTS
- [7f29a86e] Merge translation files from master branch.
- [63c91476] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [91a23eae] Replaced various '#define' with actual strings - part 6
- [512732b0] Raise the minimum required version of CMake to 3.5.
applications/internet
kasablanca
- [add95234] Use centralized cmake version
- [d7d6eed0] Replace Qt with TQt
- [cd4fe19c] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [44e4c4e1] Merge translation files from master branch.
- [749fadd2] Merge translation files from master branch.
- [d942de57] Merge translation files from master branch.
- [0e9b7d1d] Raise the minimum required version of CMake to 3.5.
kbiff
- [b49eeed5] Merge translation files from master branch.
- [28af00da] Use centralized cmake version
- [1df6327d] Replace Qt with TQt
- [47b05696] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [8498ab1f] Merge translation files from master branch.
- [b1912c9f] Merge translation files from master branch.
- [4c492704] Merge translation files from master branch.
- [e65e12d0] Raise the minimum required version of CMake to 3.5.
kftpgrabber
- [b97aa92b] Fix FTBFS causes by invalid casts. This resolves issue #13
- [9e15b50b] Merge translation files from master branch.
- [20ad9ac5] Use centralized cmake version
- [188e5fce] Replace Qt with TQt
- [f198284d] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [91bacaa9] Raise the minimum required version of CMake to 3.5.
knmap
- [750d9ef3] Use centralized cmake version
- [94758dbe] Replace Qt with TQt
- [1d388460] Merge translation files from master branch.
- [63cafd37] Update translation template.
- [fa583363] Removed already applied .diff file and custom _DEBUG flag
- [2a173c58] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [76067f79] Merge translation files from master branch.
- [3f0328e9] Raise the minimum required version of CMake to 3.5.
konversation
- [b563638e] Merge translation files from master branch.
- [aa7c5936] Use centralized cmake version
- [c8767883] Replace Qt with TQt
- [a920dfcf] Replace Q_SIGNALS and Q_SLOTS
- [f18f28a7] Merge translation files from master branch.
- [097cbcdd] Merge translation files from master branch.
- [0d666f48] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [9f9819b2] Remove various '#define' strings - part 6
- [0b3b0962] Merge translation files from master branch.
- [b44a471a] Replace 'Event' #define strings
- [ae1967dc] Raise the minimum required version of CMake to 3.5.
- [cb42cd20] Replace Qt with TQt
kopete-otr
- [9d9cad79] Merge translation files from master branch.
- [082e0f9f] Merge translation files from master branch.
- [bcef10ab] Use centralized cmake version
- [316e7784] Removed unnecessary files
- [56a8b011] Replace Q_SIGNALS and Q_SLOTS
- [e14ad764] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [edea0d8d] Raise the minimum required version of CMake to 3.5.
kshowmail
- [3b14611f] Merge translation files from master branch.
- [70830035] Merge translation files from master branch.
- [63b3d308] Merge translation files from master branch.
- [e71eaf4d] Use centralized cmake version
- [0cf62cd0] Merge translation files from master branch.
- [84348cbb] Replace Qt with TQt
- [87732784] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [521a7742] Merge translation files from master branch.
- [c5b1ab33] Merge translation files from master branch.
- [86f2b710] Raise the minimum required version of CMake to 3.5.
kstreamripper
- [775a2efb] Merge translation files from master branch.
- [ae93db6d] Use centralized cmake version
- [3506b4a7] Replace Qt with TQt
- [2ce8abf5] Merge translation files from master branch.
- [5e4da610] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [ae602fba] Merge translation files from master branch.
- [786fcd32] Update translation template.
- [04368be9] Properly deallocate memory on exit
- [6a86ef7a] Added context menu
- [248e67ea] Merge translation files from master branch.
- [9f785fdc] Update translation template.
- [c22d8d68] Ask for confirmation before deleting a stream from the list
- [0796f6cb] Merge translation files from master branch.
- [d94539da] Update translation template.
- [8286cc5b] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kstreamripper
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kstreamripper/ - [71c98694] Provide a minimum height for the station listview to improve user experiences when there are more than a few stations
- [64cf76fc] Prevent loss of last station across multiple program runs if its description is empty
- [5aed5382] Removing unnecessary functionality
- [9fb4112a] Added stream editing in a separate dialog box
- [9a8675a8] Remove various '#define' strings - part 6
- [bcdbeef8] Merge translation files from master branch.
- [9d38a4e2] Update translation template.
- [fbb41b91] Add unicode stream support
- [683560fc] Merge translation files from master branch.
- [560afe55] Merge translation files from master branch.
- [7678506d] Fix deallocation of process controllers when quitting the application
- [b624496e] Avoid repeated connection of the same signal when ripping the same item multiple times
- [b3d9058d] Added event processing if the process has finished its work
- [6701bdba] Removed unnecessary code and files
- [be9e9e89] Merge translation files from master branch.
- [015618b1] Update translation template.
- [ff9482e1] Added processing for stopping processes when closing the program window
- [943a67a4] Raise the minimum required version of CMake to 3.5.
ktorrent
- [f82ff345] Fix compatibility with C++17.
- [ce56158f] Use centralized cmake version
- [511b23a3] Removed unnecessary files
- [37d524ba] Replace Q_SIGNALS and Q_SLOTS
- [e98b0ef1] Merge translation files from master branch.
- [657dd888] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [4caf6f3c] Remove various '#define' strings - part 6
- [29628def] Replaced various '#define' with actual strings - part 5
- [ea5e56f7] Merge translation files from master branch.
- [5a75de0b] Merge translation files from master branch.
- [2a3111ed] Replace 'Event' #define strings
- [e76b1b06] Replaced various '#define' with actual strings - part 4
- [59f680d9] Replaced various '#define' with actual strings - part 3
- [f5f62f5b] Raise the minimum required version of CMake to 3.5.
- [9e6ff2e1] Replace Qt with TQt
kvirc
- [b412d82c] Merge translation files from master branch.
- [ecb2920a] Merge translation files from master branch.
- [6acc99a7] Merge translation files from master branch.
- [57afde68] Merge translation files from master branch.
- [7e934f0a] Update translation template.
- [a1413410] Replace Qt with TQt
- [fa9080a8] Merge translation files from master branch.
- [782e31aa] Use centralized cmake version
- [949305a2] Remove unnecessary files and Qt4 support
- [d29e90e6] Merge translation files from master branch.
- [3de49dee] Merge translation files from master branch.
- [677dae3b] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [0066e291] Merge translation files from master branch.
- [35d1f217] Remove various '#define' strings - part 6
- [039fcfa8] Replaced various '#define' with actual strings - part 5
- [3f8bfdfe] Merge translation files from master branch.
- [265b1c8c] Replaced various '#define' with actual strings - part 3
- [860d3e1f] Merge translation files from master branch.
- [5b2ba173] Update translation template.
- [55b59d3d] Replace various strings '#define'd in tqtinterface
- [8bb7372e] Merge translation files from master branch.
- [d7a1d0a3] Raise the minimum required version of CMake to 3.5.
- [945085d2] Replace Qt with TQt
kvpnc
- [4420325b] Merge translation files from master branch.
- [6492b743] Merge translation files from master branch.
- [eea3fa9f] Use centralized cmake version
- [9ced8bd3] Merge translation files from master branch.
- [cee8dbf6] Update translation template.
- [942ccb8e] Removed unused files
- [6a1ecf87] Replace Qt with TQt
- [1cfbe9cb] Replace Q_SIGNALS and Q_SLOTS
- [f6f9924d] Fix remaining unwanted renaming SLOT => TQ_SLOT related to the message.
- [36f7e3f1] Fix unwanted renaming SLOT => TQ_SLOT in the message string.
- [143ef5f5] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c76d015d] Raise the minimum required version of CMake to 3.5.
- [1172d1f6] Replace Qt with TQt
smb4k
- [288434b1] Fix FTBFS caused by wrong order of attributes in namespace. This resolves issue #18
- [9ee91610] Use centralized cmake version
- [035f1d6c] Replace Qt with TQt
- [b703a19e] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [74b97723] Remove various '#define' strings - part 6
- [cfafca88] CMake conversion
- [3b8edca5] TQString related changes required for cmake conversion
- [cdd07aa7] Remove unnecessary files
- [c6b056cc] Raise the minimum required version of CMake to 3.5.
- [e7dc7656] Replace Qt with TQt
tork
- [be9c8f81] Merge translation files from master branch.
- [373e1490] Merge translation files from master branch.
- [936b601d] Use centralized cmake version
- [16d186a5] cmake files: change keywords to lower case
- [c4ac8caf] Replace Qt with TQt
- [4e996a89] Merge translation files from master branch.
- [01627fbd] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [16657171] Raise the minimum required version of CMake to 3.5.
applications/misc
bibletime
- [70dce1cf] Use centralized cmake version
- [5ffb7095] cmake files: change keywords to lower case
- [f4cae605] Update translation template.
- [88b0e5ce] Replace Qt with TQt and KDE with TDE
- [9f336161] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [14f6b82f] Replaced various '#define' with actual strings - part 6
- [138dd9d3] Replaced various '#define' with actual strings - part 5
- [c6f8f1bf] Merge translation files from master branch.
- [f2540b01] Merge translation files from master branch.
- [bc35a6b9] Replace 'Event' #define strings
- [79a57869] Replaced various '#define' with actual strings - part 3
- [89cdda50] Raise the minimum required version of CMake to 3.5.
- [75205341] Replace Qt with TQt
compizconfig-backend-tdeconfig
- [c6d98e12] Use centralized cmake version
- [6cb631f1] Raise the minimum required version of CMake to 3.5.
desktop-effects-tde
- [550d6962] Merge translation files from master branch.
- [2397906c] Merge translation files from master branch.
- [6866de31] Use centralized cmake version
- [7faf6c12] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c3d75707] Raise the minimum required version of CMake to 3.5.
- [842d40b0] Merge translation files from master branch.
kcmldap
- [a820bb36] Merge translation files from master branch.
- [b83de66a] Merge translation files from master branch.
- [ab3e85b9] Use centralized cmake version
- [b4e7fbdb] Replace Qt with TQt
- [df2cc5be] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2fcf4275] Raise the minimum required version of CMake to 3.5.
kcmldapcontroller
- [042d9e8a] Merge translation files from master branch.
- [84bee79e] Merge translation files from master branch.
- [1cc6eedc] Use centralized cmake version
- [7f36742a] Replace Q_WS_* defines with TQ_WS_* equivalents
- [e385027b] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [9e149d4b] Raise the minimum required version of CMake to 3.5.
- [585d173e] Replace Qt with TQt
kcmldapmanager
- [bf8b3ce4] Merge translation files from master branch.
- [e635a31f] Merge translation files from master branch.
- [bbefc9a2] Use centralized cmake version
- [446b4aaf] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d6b06a9d] Raise the minimum required version of CMake to 3.5.
- [47887118] Replace Qt with TQt
kerberostray
- [98085f1c] Merge translation files from master branch.
- [05f0494d] Merge translation files from master branch.
- [8e1b186c] Merge translation files from master branch.
- [52afc69c] Use centralized cmake version
- [0b9aad72] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [67336400] Replaced various '#define' with actual strings - part 6
- [d3f5f06e] Raise the minimum required version of CMake to 3.5.
- [9fe0aff0] Replace Qt with TQt
krecipes
- [bd0871b7] Use centralized cmake version
- [45efcea5] Merge translation files from master branch.
- [5924f9c7] Update translation template.
- [069a14f6] Replace Qt with TQt
- [1d6e93a1] Remove unused files/code
- [dd228586] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c72be0a6] Merge translation files from master branch.
- [6b856e9c] Raise the minimum required version of CMake to 3.5.
- [60c15de3] Replace Qt with TQt
applications/multimedia
amarok
- [9b2d0a20] Merge translation files from master branch.
- [d332055b] Merge translation files from master branch.
- [5f2a6925] Update translation template.
- [5fcd7ee9] Add support for taglib 2
- [1851fada] Merge translation files from master branch.
- [4c59dce5] Use centralized cmake version
- [02b1f0f4] Merge translation files from master branch.
- [3c90dc38] Merge translation files from master branch.
- [226522fa] Replace Q_SIGNALS and Q_SLOTS
- [5a5b34eb] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [97c254f2] Replaced various '#define' with actual strings - part 6
- [a9635517] Merge translation files from master branch.
- [03e5582d] Replaced various '#define' with actual strings - part 5
- [5cae14d5] Merge translation files from master branch.
- [0851e201] Replace 'Event' #define strings
- [832a6a86] Replaced various '#define' with actual strings - part 3
- [22bcf55f] Replace various strings '#define'd in tqtinterface
- [3b0aee61] Merge translation files from master branch.
- [e4b6122b] Raise the minimum required version of CMake to 3.5.
- [36d4e52e] Merge translation files from master branch.
- [f2d29897] Replace Qt with TQt
codeine
- [38dcd285] Use centralized cmake version
- [81d30b11] Replace Qt with TQt
- [b023e039] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [7c2b90bd] Raise the minimum required version of CMake to 3.5.
k3b
- [ed45be67] Use centralized cmake version
- [e4505c94] Fix detection of MMX capabilities on ix86 archs
- [0d811e3e] Replace Qt with TQt
- [f989f27b] Replace Q_SIGNALS and Q_SLOTS
- [80e5226c] Merge translation files from master branch.
- [ac9bee9f] Merge translation files from master branch.
- [ce3ab445] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [6a101aa2] Remove various '#define' strings - part 6
- [386d824e] Replaced various '#define' with actual strings - part 5
- [b591f195] Merge translation files from master branch.
- [361bf819] Replace 'Event' #define strings
- [c7656114] Merge translation files from master branch.
- [214ce2ba] Replaced various '#define' with actual strings - part 4
- [32a52075] Replaced various '#define' with actual strings - part 3
- [21fdca70] Raise the minimum required version of CMake to 3.5.
- [0c90dd24] Replace Qt with TQt
k3b-i18n
- [4f9f7c3b] Merge translation files from master branch.
- [f15d36e8] Merge translation files from master branch.
- [956c959a] Merge translation files from master branch.
- [65cd7320] Merge translation files from master branch.
- [bc3804fa] Use centralized cmake version
- [dc58a60f] Merge translation files from master branch.
- [512501b0] Update translation template.
- [8e431ad6] Replace Qt with TQt
- [fbaf24c8] Merge translation files from master branch.
- [0eb2404b] Replace Q_SIGNALS and Q_SLOTS
- [408cd80e] Merge translation files from master branch.
- [c871eb98] Merge translation files from master branch.
- [6b26d66f] Merge translation files from master branch.
- [f9c5cefe] Merge translation files from master branch.
- [d711e3fb] Raise the minimum required version of CMake to 3.5.
k9copy
- [21f900e2] Use centralized cmake version
- [65ffe0c5] Replace Qt with TQt
- [a90fa4fe] Replace Q_SIGNALS and Q_SLOTS
- [bcf4fd54] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [0828ec19] Remove various '#define' strings - part 6
- [4b425835] Raise the minimum required version of CMake to 3.5.
- [9e55e6ee] Replace Qt with TQt
- [a2dacecf] Remove the original translation directory layout.
- [fb42a086] Copy translations to a new directory layout.
Added translation of .desktop files. - [83c41bf1] Drop autotools support
kaffeine
- [45c9882d] Merge translation files from master branch.
- [2d6def82] Merge translation files from master branch.
- [43720193] Use centralized cmake version
- [15592147] Replace Qt with TQt
- [9aeb52db] Replace Q_SIGNALS and Q_SLOTS
- [ef2254d5] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [89e9863c] Remove various '#define' strings - part 6
- [53219858] Replaced various '#define' with actual strings - part 5
- [3ba0ef17] Merge translation files from master branch.
- [018ae989] xine-backend: Remove protocols from supported extensions
This caused problems with the extension filter of the file opener dialog.
This fixes TDE/tdemultimedia#58 - [283e19b9] Replaced various '#define' with actual strings - part 3
- [2c49540b] Removed patch files from source code.
fast-slow-dcop.patch, generic_tr.patch and scandialog.patch have already
been applied in the code.
terminate.patch has not been applied but contains no explanation on what
problem it was trying to fix. - [f5f7098e] Raise the minimum required version of CMake to 3.5.
- [2fe187b9] Replace Qt with TQt
kaffeine-mozilla
- [d4cb836c] Use centralized cmake version
- [843f25da] Replace Q_WS_* defines with TQ_WS_* equivalents
- [e7e12a9a] Raise the minimum required version of CMake to 3.5.
kmplayer
- [4b9951b4] Merge translation files from master branch.
- [5e4a772d] Fix FTBFS caused by missing include. This resolves issue #19
- [fd1a740f] Merge translation files from master branch.
- [9ec2d11d] Merge translation files from master branch.
- [f2a131c5] Use centralized cmake version
- [6ffc55ca] Replace Qt with TQt
- [1f99527a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [436bc266] Remove various '#define' strings - part 6
- [8a590af0] Merge translation files from master branch.
- [2e5e0a3b] Merge translation files from master branch.
- [8417b0fe] Update translation template.
- [6777b854] Solving the problem of launching the settings dialog without xine support
The settings dialog crashes if built without xine support. - [8527831e] Replaced various '#define' with actual strings - part 4
- [27035a4b] Raise the minimum required version of CMake to 3.5.
- [f29a95f6] Replace Qt with TQt
kplayer
- [1bfb6bc7] Merge translation files from master branch.
- [7916d64f] Use centralized cmake version
- [59e6dbe4] Update DocBook DTD for documentation to 4.2.
- [cc08a7d8] Replace Qt with TQt
- [228b7d8a] Merge translation files from master branch.
- [2d9f7497] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [9ed93309] Raise the minimum required version of CMake to 3.5.
mplayerthumbs
- [e565098c] Merge translation files from master branch.
- [4d6dd76e] Use centralized cmake version
- [0940b08c] Removed unused files
- [790a2c0a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [52f017aa] Raise the minimum required version of CMake to 3.5.
rosegarden
- [0259ed4c] Fix compatibility with C++17.
- [70ed18b3] Merge translation files from master branch.
- [73b0e0f7] Merge translation files from master branch.
- [d91402d7] Use centralized cmake version
- [0adbbf7a] cmake files: change keywords to lower case
- [5b68b462] Remove unused files
- [10e90628] Replace Qt with TQt
- [a3a855ce] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [0d651f25] Remove various '#define' strings - part 6
- [d2261821] Replaced various '#define' with actual strings - part 5
- [ec073d64] Replaced various '#define' with actual strings - part 4
- [6bee7afd] Replaced various '#define' with actual strings - part 3
- [d80f3b6c] Raise the minimum required version of CMake to 3.5.
- [5a840665] Replace Qt with TQt
soundkonverter
- [f2bd39a3] Add support for taglib 2
- [18bdfb20] Use centralized cmake version
- [260f6d19] Merge translation files from master branch.
- [61e1b0e4] Merge translation files from master branch.
- [8c11a140] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [070927f4] Remove various '#define' strings - part 6
- [80596a68] Replaced various '#define' with actual strings - part 5
- [ad48759d] Merge translation files from master branch.
- [54c143b5] Replaced various '#define' with actual strings - part 4
- [0438ba40] Merge translation files from master branch.
- [c4c4d373] Update translation template.
- [5bba09ee] cmake conversion
- [546952a1] Merge translation files from master branch.
- [7fe222c3] Update translation template.
- [2ec39571] Rename src/config.h to src/configuration.h to avoid possible conflicts with autogenerated config.h file
- [b36ba456] Remove unnecessary files
- [65f00ac0] Raise the minimum required version of CMake to 3.5.
- [6d9278a9] Replace Qt with TQt
tderadio
- [316f2809] Merge translation files from master branch.
- [4cf449dc] Merge translation files from master branch.
- [a468f02e] Merge translation files from master branch.
- [c7c3b8bc] Use centralized cmake version
- [e5430936] cmake files: change keywords to lower case
- [ac8ddffa] Replace Qt with TQt
- [24e8de38] Replace Q_SIGNALS and Q_SLOTS
- [9c572378] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3dbd1166] Remove various '#define' strings - part 6
- [a2837bd4] Merge translation files from master branch.
- [525e762e] Replaced various '#define' with actual strings - part 5
- [e76222b9] Merge translation files from master branch.
- [e8c31a52] Raise the minimum required version of CMake to 3.5.
- [779f24c6] Replace Qt with TQt
applications/office
basket
- [5e8690a2] Merge translation files from master branch.
- [323f0758] Merge translation files from master branch.
- [514031eb] Use centralized cmake version
- [8a69776a] Replace Qt with TQt
- [5b1ac559] Removed unused files
- [f9edc9cf] Replace Q_SIGNALS and Q_SLOTS
- [31622296] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [50245e3d] Remove various '#define' strings - part 6
- [b70474e0] Replaced various '#define' with actual strings - part 5
- [b29b77fb] Replaced various '#define' with actual strings - part 4
- [70031454] Replaced various '#define' with actual strings - part 3
- [928b97c5] Raise the minimum required version of CMake to 3.5.
- [48f3d5f4] Replace Qt with TQt
kbibtex
- [f9fea70a] Use centralized cmake version
- [2e910806] Replace Qt with TQt
- [eae3ad00] Removed unused files
- [07a565d7] Replace Q_WS_* defines with TQ_WS_* equivalents
- [483545c2] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [584744b2] Merge translation files from master branch.
- [c9d1bd72] Raise the minimum required version of CMake to 3.5.
kbookreader
- [49e31fae] Merge translation files from master branch.
- [9bdbff38] Use centralized cmake version
- [65a1fc38] Removed unused files
- [5022c499] Replace Q_SIGNALS and Q_SLOTS
- [fd40ec98] Replace auto_ptr
- [d0aa6926] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [9830ae32] Remove various '#define' strings - part 6
- [4bc7d31a] Merge translation files from master branch.
- [86c67226] Merge translation files from master branch.
- [4aa2e024] Replace various strings '#define'd in tqtinterface
- [1e7501a9] Raise the minimum required version of CMake to 3.5.
- [853da7ee] Replace Qt with TQt
keximdb
- [3743c858] Use centralized cmake version
- [7e2ce5dc] Raise the minimum required version of CMake to 3.5.
kile
- [2fe22337] Merge translation files from master branch.
- [39559462] Use centralized cmake version
- [f0b7ab48] Removed unused files
- [90e65b4a] Replace Qt with TQt
- [39a06ef0] Replace Q_SIGNALS and Q_SLOTS
- [6c37103f] Merge translation files from master branch.
- [762d93a8] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [b8b37954] Remove various '#define' strings - part 6
- [cde35e42] Merge translation files from master branch.
- [6549f004] Replace 'Event' #define strings
- [50df78ea] Replaced various '#define' with actual strings - part 3
- [9999c59b] Raise the minimum required version of CMake to 3.5.
- [286a5b17] Replace Qt with TQt
kmymoney
- [faf8f980] Merge translation files from master branch.
- [442efde9] Use centralized cmake version
- [01729135] Merge translation files from master branch.
- [b216ea7a] Update translation template.
- [5123998a] cmake files: change keywords to lower case
- [970832ef] Replace QT_STATIC_CONST_* with actual definitions
- [010c375b] Replace Q_SIGNALS and Q_SLOTS
- [3a528d87] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [04ddc823] Merge translation files from master branch.
- [f892e5be] Remove various '#define' strings - part 6
- [debbb965] Replaced various '#define' with actual strings - part 5
- [778d1114] Merge translation files from master branch.
- [c033bc04] Replace 'Event' #define strings
- [2889777f] Replaced various '#define' with actual strings - part 3
- [483ebca4] Raise the minimum required version of CMake to 3.5.
- [00081047] Replace Qt with TQt
knowit
- [6825bbbf] Merge translation files from master branch.
- [d92080a6] Use centralized cmake version
- [238d5143] cmake files: change keywords to lower case
- [5a55a65c] Remove unused files
- [af5c1114] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2f7d0721] Remove various '#define' strings - part 6
- [b47d595e] Raise the minimum required version of CMake to 3.5.
- [07692010] Replace Qt with TQt
koffice
- [72ca2961] Fix FTBFS reported in issue #67
- [0946bf47] Karbon: Fix FTBFS in xrgbrender due to implicit declaration of functions.
- [3723148a] Replace Qt with TQt
- [e220a1b2] Use centralized cmake version
- [79c5c7cb] Replace QT_STATIC_CONST_* with actual definitions
- [a50710e6] Replace Q_WS_* defines with TQ_WS_* equivalents
- [67aa6b18] Replace Q_SIGNALS and Q_SLOTS
- [cf1bb69b] Replace auto_ptr
- [e1b37ac1] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [757d80a9] Remove various '#define' strings - part 6
- [9abcf51d] Replaced various '#define' with actual strings - part 5
- [5761876d] Replace 'Event' #define strings
- [2891d3c2] Replaced various '#define' with actual strings - part 4
- [f9893e5b] Replaced various '#define' with actual strings - part 3
- [8263fdf7] Replaced various '#define' with actual strings - part 2
- [00aa1f43] Replace various strings '#define'd in tqtinterface
- [c8c5e11f] Replace Qt with TQt
- [c9973bfb] Raise the minimum required version of CMake to 3.5.
koffice-i18n
- [c30a1277] Merge translation files from master branch.
- [a3ce3ff2] Fix syntax errors from #10.
- [50d5fc3f] Addendum to commit 407b54bb
- [6a62ed5d] Merge translation files from master branch.
- [750241d0] Update translation template.
- [407b54bb] Replace Qt with TQt
- [8c635794] Use centralized cmake version
- [79138675] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [6b648c74] Merge translation files from master branch.
- [1033bf66] Merge translation files from master branch.
- [8f039f42] Merge translation files from master branch.
- [d3c5f390] Update translation template.
- [c9c89dbb] Merge translation files from master branch.
- [c0d03513] Replace Qt with TQt
- [0340f152] Merge translation files from master branch.
- [3cc206ab] Raise the minimum required version of CMake to 3.5.
kpilot
- [cadc8b76] Merge translation files from master branch.
- [e0652ba2] Merge translation files from master branch.
- [e9d53339] Use centralized cmake version
- [031143c7] Replace Qt with TQt
- [84beaa20] Merge translation files from master branch.
- [f9289944] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3b5ccc65] Remove various '#define' strings - part 6
- [abcd9a45] Replaced various '#define' with actual strings - part 5
- [1d47a02e] Merge translation files from master branch.
- [04d2f2a5] Replace 'Event' #define strings
- [2f80418d] Raise the minimum required version of CMake to 3.5.
- [255ec906] Replace Qt with TQt
tellico
- [70fcba07] Merge translation files from master branch.
- [fb8caf3a] Merge translation files from master branch.
- [16dc642a] Fix compatibility with C++17.
- [a5f04b82] Merge translation files from master branch.
- [abe4b198] Merge translation files from master branch.
- [e8f457ac] Use centralized cmake version
- [ccc90afb] Replace Qt with TQt
- [f9ec1da0] Replace auto_ptr
- [aa5bb443] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [727a2e58] Remove various '#define' strings - part 6
- [8ed9929d] Merge translation files from master branch.
- [c932624b] Replaced various '#define' with actual strings - part 5
- [5f98a522] Merge translation files from master branch.
- [ad02e86c] Replace 'Event' #define strings
- [1ff93d9e] Replaced various '#define' with actual strings - part 4
- [211ad874] Replaced various '#define' with actual strings - part 3
- [5dcd02bb] Raise the minimum required version of CMake to 3.5.
- [034ed63e] Replace Qt with TQt
applications/settings
kdpkg
- [6b7d75b5] Merge translation files from master branch.
- [be66e1e8] Removed unused files
- [bcb6d6c6] Use centralized cmake version
- [c730b578] Replace Q_SIGNALS and Q_SLOTS
- [921d46a4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [b630d6e2] Replace various '#define' strings - part 6
- [ac316ed3] Raise the minimum required version of CMake to 3.5.
kima
- [cf3e7c33] Merge translation files from master branch.
- [2cb26bb4] Merge translation files from master branch.
- [b31b4ffb] Use centralized cmake version
- [d7c9764d] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [545f3b89] Replace various '#define' strings - part 6
- [aa0c75cc] Replaced various '#define' with actual strings - part 5
- [0558e0fb] Raise the minimum required version of CMake to 3.5.
- [99ba74a9] Replace Qt with TQt
kiosktool
- [df3d7d93] Merge translation files from master branch.
- [eacda823] Replace Qt with TQt
- [051fc70b] Use centralized cmake version
- [b80fb3b7] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2811df5f] Merge translation files from master branch.
- [9ef88aa8] Replaced various '#define' with actual strings - part 4
- [a0811519] Raise the minimum required version of CMake to 3.5.
kkbswitch
- [99b8c3d3] Merge translation files from master branch.
- [df3d8976] Merge translation files from master branch.
- [66b23317] Removed unused files
- [7a308bc2] Replace Qt with TQt
- [24b2cecd] Use centralized cmake version
- [3a19fc03] Merge translation files from master branch.
- [b225c79f] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2b9c1482] Merge translation files from master branch.
- [cf86bb82] Raise the minimum required version of CMake to 3.5.
klcddimmer
- [277c5346] Merge translation files from master branch.
- [5d3a4035] Removed unused files
- [bef490f2] Use centralized cmake version
- [c3581faf] cmake files: change keywords to lower case
- [4d46d6c2] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d69adfd4] Merge translation files from master branch.
- [b09ff5dd] Raise the minimum required version of CMake to 3.5.
kmyfirewall
- [8cd6f0ff] Replace Qt with TQt
- [3541a498] Use centralized cmake version
- [5335ce5d] Replace Q_SIGNALS and Q_SLOTS
- [66b3326a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [53fde083] Replace various '#define' strings - part 6
- [6913f86b] Raise the minimum required version of CMake to 3.5.
- [37baea59] Replace Qt with TQt
tde-guidance
- [d19b852e] Replace Qt with TQt
- [d2626aa8] Use centralized cmake version
- [dceb004c] Conversion to cmake building system
- [1825d1c2] Fix invalid escape sequences.
- [10f0a51a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [5acecc50] Remove unnecessary files
- [4a49ed93] Remove wineconfig module
- [16bbedc3] Remove grubconfig module
- [dc9cd228] Fix functionality of mountconfig module
tde-systemsettings
- [881bb958] Replace Qt with TQt
- [494a1e3d] Use centralized cmake version
- [498895cf] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [f614f05c] Replace various '#define' strings - part 6
- [a1194f5b] Raise the minimum required version of CMake to 3.5.
tdenetworkmanager
- [101c77ad] Merge translation files from master branch.
- [3b229bbd] Merge translation files from master branch.
- [1c33778f] Replace Qt with TQt
- [35996c44] Use centralized cmake version
- [aca334a2] Merge translation files from master branch.
- [c3b1cd37] Merge translation files from master branch.
- [5f8d8691] Update translation template.
- [d408f5cb] Fix a typo
Thanks to adem for noticing this on weblate - [5ec457f3] Replace Q_SIGNALS and Q_SLOTS
- [a88fc517] Merge translation files from master branch.
- [461e2090] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [ac34a604] Replace various '#define' strings - part 6
- [00aab2e4] Merge translation files from master branch.
- [048ed035] Merge translation files from master branch.
- [ba52504d] Replace various strings '#define'd in tqtinterface
- [687ebf64] Raise the minimum required version of CMake to 3.5.
- [f54fe201] Replace Qt with TQt
tdesudo
- [b285a791] Replace Qt with TQt
- [36e7794d] Use centralized cmake version
- [6b4a51a0] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [da05d2b4] Raise the minimum required version of CMake to 3.5.
wlassistant
- [9292908b] Merge translation files from master branch.
- [5f78154b] Remove unnecessary files
- [4469a86f] Use centralized cmake version
- [ee4dfb78] Replace Q_SIGNALS and Q_SLOTS
- [df532886] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3efb8ddd] Replace various '#define' strings - part 6
- [f7a20040] Raise the minimum required version of CMake to 3.5.
applications/system
dolphin
- [ff1f7c16] Replace Qt with TQt
- [134e8258] Remove unused files
- [fb80993a] Use centralized cmake version
- [b81aca2a] Merge translation files from master branch.
- [f03ddc53] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [a822e3e4] Replace various '#define' strings - part 6
- [84dce0e3] Merge translation files from master branch.
- [94fa32f9] Replaced various '#define' with actual strings - part 3
- [60a08792] Raise the minimum required version of CMake to 3.5.
- [5ee150f0] Merge translation files from master branch.
- [c11be914] Merge translation files from master branch.
- [fd73938a] Replace Qt with TQt
katapult
- [70ba9087] Merge translation files from master branch.
- [809fb424] Merge translation files from master branch.
- [8c3736d8] Replace Qt with TQt
- [4265d075] Remove unused files
- [71fcb0b5] Use centralized cmake version
- [fded3c0a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d3f66339] Replace various '#define' strings - part 6
- [bdd907d1] Raise the minimum required version of CMake to 3.5.
- [4ca2cbcf] Replace Qt with TQt
kbfx
- [e08b17f1] Merge translation files from master branch.
- [b62d792c] Use centralized cmake version
- [39b1357d] cmake files: change keywords to lower case
- [120f8eb6] Replace Q_SIGNALS and Q_SLOTS
- [dbc335c7] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [6319099a] Replace various '#define' strings - part 6
- [cca1b232] Raise the minimum required version of CMake to 3.5.
- [97ca6223] Replace Qt with TQt
kcmautostart
- [d4fed915] Use centralized cmake version
- [c0071d4c] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [59eea31e] Merge translation files from master branch.
- [9f38675b] Merge translation files from master branch.
- [f73b98ca] Raise the minimum required version of CMake to 3.5.
kdbusnotification
- [ef213734] Merge translation files from master branch.
- [8db71837] Merge translation files from master branch.
- [36d97289] Use centralized cmake version
- [6ac34a66] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [93591f24] Respect -DDBUS_BINDING_TOOL provided by cmake user
- [a971c7f6] Raise the minimum required version of CMake to 3.5.
klamav
- [b7cd64b9] Fix FTBFS causes by invalid casts. This resolves issue 37.
- [891c4183] Use centralized cmake version
- [2375c3f5] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [e2e86dda] Raise the minimum required version of CMake to 3.5.
knemo
- [e8eb0915] Merge translation files from master branch.
- [dd472e40] Use centralized cmake version
- [73e92cf0] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [bed78533] Merge translation files from master branch.
- [74f1cd87] Merge translation files from master branch.
- [95eef6c3] Replaced various '#define' with actual strings - part 5
- [a2090048] Raise the minimum required version of CMake to 3.5.
- [923a514f] Replace Qt with TQt
knetload
- [8fb31485] Merge translation files from master branch.
- [91790218] Merge translation files from master branch.
- [e631fe28] Use centralized cmake version
- [8c286cc4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [0ba0326e] Replace various '#define' strings - part 6
- [83b084bf] Merge translation files from master branch.
- [0ea50dc6] Raise the minimum required version of CMake to 3.5.
- [bb7f6255] Replace Qt with TQt
knetstats
- [8584baf4] Merge translation files from master branch.
- [170dc4ff] Merge translation files from master branch.
- [0e2aead4] Use centralized cmake version
- [678eabac] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [57a4c0ab] Replace various '#define' strings - part 6
- [1caa8b1b] Raise the minimum required version of CMake to 3.5.
- [de4276a7] Replace Qt with TQt
kooldock
- [3c6a3e0e] Replace Qt with TQt
- [9284b0c1] Use centralized cmake version
- [3f57e4b5] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2191a58b] Raise the minimum required version of CMake to 3.5.
krusader
- [f4c8ab26] Merge translation files from master branch.
- [d362e2af] Update translation template.
- [da1694c4] Fix compatibiliry with c++17 standard
- [02a4efe0] Merge translation files from master branch.
- [e7e91987] Replace Qt with TQt
- [e1978ff4] Remove unused files
- [6551acc5] Use centralized cmake version
- [9c013568] Merge translation files from master branch.
- [56f4ac3a] Replace Q_SIGNALS and Q_SLOTS
- [1570bf7f] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [0e769547] Replace various '#define' strings - part 6
- [e61c1db9] Replaced various '#define' with actual strings - part 5
- [f854b2fe] Merge translation files from master branch.
- [f19fa530] Replace 'Event' #define strings
- [db723943] Replaced various '#define' with actual strings - part 3
- [6c738063] Krusader: Unpacking TXZ.
- [f8733916] Raise the minimum required version of CMake to 3.5.
- [ae61cb4c] Replace Qt with TQt
kshutdown
- [028d6832] Merge translation files from master branch.
- [0cba31c7] Replace Qt with TQt
- [450ad252] Remove unused files
- [fc95493e] Use centralized cmake version
- [2ced6309] Merge translation files from master branch.
- [afe74bfe] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [8f798c9f] Merge translation files from master branch.
- [bdaee14b] Raise the minimum required version of CMake to 3.5.
ksystemlog
- [bff8ba5a] Merge translation files from master branch.
- [1943a15e] Replace Qt with TQt
- [df3f048e] Remove unused files
- [8ce8538c] Use centralized cmake version
- [4217755e] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [c110ab27] Replace various '#define' strings - part 6
- [a07e5bcd] Raise the minimum required version of CMake to 3.5.
- [6200356b] Replace Qt with TQt
kvkbd
- [ab1d038f] Merge translation files from master branch.
- [d74b64b2] Merge translation files from master branch.
- [3c86993a] Remove unused files
- [d2af3256] Use centralized cmake version
- [cae154cc] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [09ce2637] Raise the minimum required version of CMake to 3.5.
- [0a7a004c] Replace Qt with TQt
polkit-agent-tde
- [594805c2] Merge translation files from master branch.
- [ac449919] Merge translation files from master branch.
- [38b87842] Use centralized cmake version
- [1ad151e7] Merge translation files from master branch.
- [eedf1c13] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [fbceb48f] Raise the minimum required version of CMake to 3.5.
smartcardauth
- [06953ed5] Use centralized cmake version
- [0247a594] Raise the minimum required version of CMake to 3.5.
- [4332eaa2] Merge translation files from master branch.
- [a4dd5f46] Merge translation files from master branch.
- [e7653d40] Remove unused files
- [cac317d3] Use centralized cmake version
- [74cbc6e1] Replace Q_WS_* defines with TQ_WS_* equivalents
- [a65bdf88] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [44e77ecb] Raise the minimum required version of CMake to 3.5.
tdebluez
- [a6a5ee1a] Merge translation files from master branch.
- [4cba0c6c] Replace Qt with TQt
- [f436ed27] Use centralized cmake version
- [c82acb8f] Merge translation files from master branch.
- [50734d4f] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [1f091996] Raise the minimum required version of CMake to 3.5.
- [7fe3e3a1] Merge translation files from master branch.
tdedocker
- [826116fd] Replace Qt with TQt
- [7362f260] Remove unused files
- [ac5f06e5] Use centralized cmake version
- [9f512be4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [e9c02a31] Raise the minimum required version of CMake to 3.5.
tdepowersave
- [cae554d2] Merge translation files from master branch.
- [9c28f783] Merge translation files from master branch.
- [2d6c9b7b] Replace Qt with TQt
- [09010778] Remove unused files
- [f0d33ac8] Use centralized cmake version
- [6b77cea8] Merge translation files from master branch.
- [b61a8c75] Replace Q_SIGNALS and Q_SLOTS
- [c03872d3] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [f5832e4a] Replace various '#define' strings - part 6
- [c492704a] Merge translation files from master branch.
- [2ef52b9d] Merge translation files from master branch.
- [135b14de] Raise the minimum required version of CMake to 3.5.
- [04965313] Replace Qt with TQt
tdesshaskpass
- [9cfed0a6] Merge translation files from master branch.
- [0c92cb39] Merge translation files from master branch.
- [d62bdc3d] Use centralized cmake version
- [bf98ebd6] Merge translation files from master branch.
- [60c67fdf] Merge translation files from master branch.
- [481fe0f8] Raise the minimum required version of CMake to 3.5.
yakuake
- [ed0b016e] Merge translation files from master branch.
- [058234e9] Merge translation files from master branch.
- [d3bf19a1] Replace Qt with TQt
- [35bbdf5e] Use centralized cmake version
- [9e7f45da] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3dc97a47] Replace various '#define' strings - part 6
- [9368dcd8] Merge translation files from master branch.
- [cbb2affd] Raise the minimum required version of CMake to 3.5.
- [9388682a] Replace Qt with TQt
applications/tdeio
tdeio-appinfo
- [30fa1192] Merge translation files from master branch.
- [42a123c3] Merge translation files from master branch.
- [452a84e7] Use centralized cmake version
- [6a5b2b96] Raise the minimum required version of CMake to 3.5.
tdeio-apt
- [3da1d5a5] Remove unnecessary files
- [273128c6] Use centralized cmake version
- [cb10c26c] Replace auto_ptr
- [f334aae2] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d76aa3d0] Raise the minimum required version of CMake to 3.5.
tdeio-ftps
- [b775539e] Use centralized cmake version
- [20caed22] Raise the minimum required version of CMake to 3.5.
tdeio-gopher
- [1fa28685] Merge translation files from master branch.
- [75a5067c] Use centralized cmake version
- [629af4d1] Raise the minimum required version of CMake to 3.5.
tdeio-locate
- [1d0ff35e] Merge translation files from master branch.
- [861f6502] Merge translation files from master branch.
- [21dac2d7] Use centralized cmake version
- [63ae801a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2f71daf1] Raise the minimum required version of CMake to 3.5.
tdeio-sword
- [3639113e] Replace Qt with TQt
- [44192f83] Remove unnecessary files
- [010efdf1] Use centralized cmake version
- [b14a6077] Merge translation files from master branch.
- [4f0871c3] Merge translation files from master branch.
- [a4b077fb] Raise the minimum required version of CMake to 3.5.
tdeio-umountwrapper
- [00f9d274] Merge translation files from master branch.
- [57d0e656] Merge translation files from master branch.
- [66aee6c9] Use centralized cmake version
- [e62fccb8] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [6d87cc1f] Replace various '#define' strings - part 6
- [13da79f0] Merge translation files from master branch.
- [c138f55c] Merge translation files from master branch.
- [b2628b22] Raise the minimum required version of CMake to 3.5.
applications/themes
gtk-qt-engine
- [a4f88786] Replace Qt with TQt
- [8aa81ba1] Remove unnecessary files
- [e5e01403] Use centralized cmake version
- [be6cedb4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [afc6ea03] Replaced various '#define' with actual strings - part 5
- [717ae9b4] Replaced various '#define' with actual strings - part 3
- [e2af75f0] Raise the minimum required version of CMake to 3.5.
- [d161ea67] Replace Qt with TQt
gtk3-tqt-engine
- [2546d451] Replace Qt with TQt
- [650689f0] Use centralized cmake version
- [9d21ebe8] Replaced various '#define' with actual strings - part 5
- [180b6368] Raise the minimum required version of CMake to 3.5.
kgtk-qt3
- [216977ef] Merge translation files from master branch.
- [4c775c61] Use centralized cmake version
- [2ddf00f4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [fa044ab0] Merge translation files from master branch.
- [97c7c47d] Replaced various '#define' with actual strings - part 4
- [68e5b179] Raise the minimum required version of CMake to 3.5.
ksplash-engine-moodin
- [b08be127] Merge translation files from master branch.
- [31514a6a] Merge translation files from master branch.
- [a2910de3] Merge translation files from master branch.
- [7031da9b] Use centralized cmake version
- [ded8d1e9] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [62f1c985] Raise the minimum required version of CMake to 3.5.
qt4-tqt-theme-engine
- [7e605f95] Replace various '#define' strings - part 6
tde-style-baghira
- [ac86d0ed] Use centralized cmake version
- [8e634f32] Replace Q_WS_* defines with TQ_WS_* equivalents
- [8f6829a2] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [210aaadd] Raise the minimum required version of CMake to 3.5.
tde-style-domino
- [43eb7e6f] Merge translation files from master branch.
- [e7455f64] Merge translation files from master branch.
- [a3dc1f26] Use centralized cmake version
- [10fe0f76] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [e19e9e50] Replaced various '#define' with actual strings - part 3
- [12aad560] Raise the minimum required version of CMake to 3.5.
tde-style-ia-ora
- [d6f85e8f] Merge translation files from master branch.
- [aa4668ad] Merge translation files from master branch.
- [6e002a7d] Merge translation files from master branch.
- [c46fccab] Remove unnecessary files
- [8c86e0cf] Added GTK+2.0 engine
Ia Ora was created by Mandriva so that Qt and GTK applications could have a uniform
look. It only seems fair to include the GTK style with the TDE style.
Source: https://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib/cauldron/SRPMS/core/release/ia_ora-gnome-1.0.25-12.mga9.src.rpm
Licence: GNU GPL v2 or later - [84ed60a3] Use centralized cmake version
- [3a0faced] Replace Q_WS_* defines with TQ_WS_* equivalents
- [12fa2548] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [bfcab3f3] Raise the minimum required version of CMake to 3.5.
tde-style-lipstik
- [d809df59] Use centralized cmake version
- [bae40f8a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [b0e0c34a] Replace various '#define' strings - part 6
- [7b118fa8] Merge translation files from master branch.
- [69a0e002] Replaced various '#define' with actual strings - part 4
- [3a412a9e] Raise the minimum required version of CMake to 3.5.
- [f30bd931] Replace Qt with TQt
tde-style-qtcurve
- [ffb9f6e0] Merge translation files from master branch.
- [996a5c0f] Merge translation files from master branch.
- [0baab286] Use centralized cmake version
- [738aeee4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [ea3215e2] Replace various '#define' strings - part 6
- [cbb50b27] Replace 'Event' #define strings
- [9238a995] Replaced various '#define' with actual strings - part 4
- [f1732e3b] Replaced various '#define' with actual strings - part 3
- [5d24eff4] Raise the minimum required version of CMake to 3.5.
- [14a3eec2] Replace Qt with TQt
tdmtheme
- [6b47dbe9] Merge translation files from master branch.
- [668ab084] Merge translation files from master branch.
- [1237902a] Use centralized cmake version
- [8820958c] Merge translation files from master branch.
- [dc06e74f] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d5324923] Raise the minimum required version of CMake to 3.5.
twin-style-crystal
- [73df6a12] Merge translation files from master branch.
- [123572de] Merge translation files from master branch.
- [b6582d7b] Remove unnecessary files
- [1c7aafd3] Use centralized cmake version
- [01d5ee0f] Replace Q_WS_* defines with TQ_WS_* equivalents
- [6ba6bda9] Replace Q_SIGNALS and Q_SLOTS
- [8719cde0] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [e0ee1309] Replaced various '#define' with actual strings - part 5
- [e87fce4f] Replace 'Event' #define strings
- [857dc031] Raise the minimum required version of CMake to 3.5.
- [858d33cc] Replace Qt with TQt
twin-style-dekorator
- [b3bb9d38] Merge translation files from master branch.
- [8bd6e31f] Merge translation files from master branch.
- [97b350fa] Remove unnecessary files
- [6c52b263] Use centralized cmake version
- [da44d447] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [6e6b5fd0] Raise the minimum required version of CMake to 3.5.
twin-style-machbunt
- [e66907c1] Merge translation files from master branch.
- [0cb0dd84] Merge translation files from master branch.
- [7ae9a3ea] Merge translation files from master branch.
- [41ff85ab] Use centralized cmake version
- [368ed30c] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [8cf5d248] Raise the minimum required version of CMake to 3.5.
twin-style-suse2
- [2b3d19a5] Merge translation files from master branch.
- [f31ebf67] Remove remaining 'register' instruction.
- [cee4b784] Merge translation files from master branch.
- [08880d7f] Merge translation files from master branch.
- [daf84bd9] Remove unnecessary files
- [7341873a] Use centralized cmake version
- [1b186a95] Merge translation files from master branch.
- [a0ecb910] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [3193200c] Raise the minimum required version of CMake to 3.5.
applications/utilities
abakus
- [b85c2231] Replace Qt with TQt
- [aefe09ab] Remove unnecessary 'tde_set_project_version' from CMakeL10n.txt
- [48488e36] Use centralized cmake version
- [3a03ef43] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [7367cf3e] Replace various '#define' strings - part 6
- [6ff22608] Replaced various '#define' with actual strings - part 3
- [54b3d710] Raise the minimum required version of CMake to 3.5.
- [e41c0ced] Replace Qt with TQt
filelight
- [0034426b] Use centralized cmake version
- [aa677ad4] Replace Q_SIGNALS and Q_SLOTS
- [27c4f9d5] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [2725bd4a] Replace various '#define' strings - part 6
- [287eaafa] Merge translation files from master branch.
- [58b6f564] Raise the minimum required version of CMake to 3.5.
- [ad0cfb27] Merge translation files from master branch.
- [894a7b9c] Replace Qt with TQt
kbarcode
- [b7549919] Merge translation files from master branch.
- [50ec9baf] Replace Qt with TQt
- [f81f08fc] Remove unnecessary files
- [9fe126da] Merge translation files from master branch.
- [710eecd8] Use centralized cmake version
- [c62d6a21] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [97a76f36] Replace various '#define' strings - part 6
- [2191b2df] Replaced various '#define' with actual strings - part 5
- [587dc58e] Raise the minimum required version of CMake to 3.5.
- [e68f82c5] Replace Qt with TQt
kchmviewer
- [8faf4dec] Merge translation files from master branch.
- [5e7d48f3] Replace Qt with TQt
- [aca3a584] Remove unnecessary files
- [482e1bce] Use centralized cmake version
- [0dbd778f] Replace Q_SIGNALS and Q_SLOTS
- [5a0966ca] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d2f01bb5] Replace various '#define' strings - part 6
- [89ba2b7d] Merge translation files from master branch.
- [dfbfbc33] Raise the minimum required version of CMake to 3.5.
kcpuload
- [b2594133] Merge translation files from master branch.
- [d2dab2df] Replace Qt with TQt
- [2b876d23] Use centralized cmake version
- [f2261138] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [cec0eba3] Replace various '#define' strings - part 6
- [ee9f81ae] Raise the minimum required version of CMake to 3.5.
- [357be4cd] Replace Qt with TQt
kdirstat
- [1db22641] Merge translation files from master branch.
- [32acc378] Merge translation files from master branch.
- [d51e606e] Merge translation files from master branch.
- [e17a1c52] Merge translation files from master branch.
- [1160ad70] Replace Qt with TQt
- [2af9984e] Remove unnecessary files
- [314de272] Use centralized cmake version
- [e43fe7b8] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [be5e4244] Replace various '#define' strings - part 6
- [23237d09] Raise the minimum required version of CMake to 3.5.
- [1ba064de] Replace Qt with TQt
keep
- [86ecddae] Merge translation files from master branch.
- [f3a45a12] Merge translation files from master branch.
- [cd22ad3d] Replace Qt with TQt
- [487fdba4] Use centralized cmake version
- [c049126a] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [4f1c8e54] Replace various '#define' strings - part 6
- [2b6bd386] Raise the minimum required version of CMake to 3.5.
- [15c4aae7] Replace Qt with TQt
knutclient
- [c105fc8d] Merge translation files from master branch.
- [4215f1aa] Replace Qt with TQt
- [929cd630] Use centralized cmake version
- [d47f7d28] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [334246ae] Replace various '#define' strings - part 6
- [017c57dd] Raise the minimum required version of CMake to 3.5.
- [b3f56562] Replace Qt with TQt
kommando
- [e2d9bda6] Merge translation files from master branch.
- [3367cc19] Replace Qt with TQt
- [cbfeb05e] Use centralized cmake version
- [59af4855] Merge translation files from master branch.
- [3bf0b6d5] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [9066230a] Raise the minimum required version of CMake to 3.5.
kompose
- [12918f0c] Merge translation files from master branch.
- [138ac28d] Replace Qt with TQt
- [3136db70] Use centralized cmake version
- [9f4c6ff7] Replace Q_WS_* defines with TQ_WS_* equivalents
- [43e0ea16] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [cb455231] Raise the minimum required version of CMake to 3.5.
krename
- [650b6c3f] Replace Qt with TQt
- [8ffd2696] Remove unnecessary files
- [300f52df] Use centralized cmake version
- [222407da] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [44470b8a] Replace various '#define' strings - part 6
- [7132d1d7] Merge translation files from master branch.
- [d8fcd4fa] Merge translation files from master branch.
- [804f4f35] Raise the minimum required version of CMake to 3.5.
- [5d02ccb1] Replace Qt with TQt
ksensors
- [f45af7ba] Merge translation files from master branch.
- [9a62ca5a] Replace Qt with TQt
- [362fe886] Remove unnecessary files
- [6c49ad06] Use centralized cmake version
- [b7fce5c4] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [7453b1ad] Raise the minimum required version of CMake to 3.5.
mathemagics
- [a88dbd97] Replace Qt with TQt
- [8456c4b8] Use centralized cmake version
- [b3a2c4d9] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [fdfbfd7c] Raise the minimum required version of CMake to 3.5.
qalculate-tde
- [1c8410e0] Merge translation files from master branch.
- [dcacb472] Use centralized cmake version
- [9fe1e65b] Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
- [d88c548d] Raise the minimum required version of CMake to 3.5.
packaging
packaging
- [d9d57c44] FreeBSD: Update for final R14.1.2.
Forced C++14 for cases where distribution ports are not ready for C++17.
Add ports for several applications.
Switch several ports to CMake. - [c141e5fb] ArchLinux: Update for final R14.1.2.
- [c3496052] RPM: lots of updates for Trinity 14.1.2
- [4682d07b] FreeBSD imlib: basedir defined in libgen.h
- [c9dcbc21] DEB k3b: Change the library package name in case of incompatible ABI for 64-bit time_t.
- [796994c3] DEB k3b: Remove the libk3b2-* transitional package and related links.
- [bfaf5e0c] DEB k3b: Cleanup outdated files.
- [d30ee410] DEB pytdeextensions: Use more general dependency for tdelibs.
- [5e08ba4f] DEB tde-style-ia-ora: add dependency to libgtk2 to be able to build the GTK2 engine
- [69288adf] DEB kvirc: add dependency on libssl-dev
- [3efc0425] DEB sip4-tqt: removed unused patch files
- [c90b695d] DEB kvirc: update qt-tqt in config files. This relates to TDE/kvirc#22
- [413b0c56] DEB: make sure empty 'series' files are really empty
- [c3bc0190] DEB tdenetwork: Add suport for SFTP servers in zeroconf ioslave.
- [9c63a538] DEB tdemultimedia: update to new kmix icons
- [f5aad8f8] DEB tdebase: update ubuntu 'kubuntu_89_new_logout_ui.diff' patch to make sure default values are synced between TCC and shutdown dialog
- [6ebd6647] DEB tdebase: refresh ubuntu patches
- [1918a0fa] DEB: add tde-style-polyester packaging files
- [b7ebd9a0] DEB tde-i18n: Use more general dependency for tdelibs, second part.
- [7743b086] DEB tde-i18n: Use more general dependency for tdelibs.
- [ad04947f] DEB tdepim: Change the library package name in case of incompatible ABI for 64-bit time_t.
- [b392786b] DEB tdebase: add twinactiveborders.desktop to twin package
- [2fa41c1d] DEB tdelibs: Change the library package name in case of incompatible ABI for 64-bit time_t.
- [7485a4e5] DEB gwenview: switch to cmake build system
- [44a190dd] DEB libcarddav: Change the library package name in case of incompatible ABI for 64-bit time_t.
- [29a4bad8] DEB libcaldav: Change the library package name in case of incompatible ABI for 64-bit time_t.
- [a3b893dd] DEB arts: Change the library package name in case of incompatible ABI for 64-bit time_t.
- [983627bf] DEB tqt3: Add Recommends for t64 package omitted in PR #282.
- [d95afdf8] DEB tqt3: Change the library package name in case of incompatible ABI for 64-bit time_t.
- [15a10dde] DEB tde-guidance: switch to cmake build system
- [df63f7fc] DEB gwenview: application pixmap moved to main repo
- [9431b5cd] DEB rosegarden: Replace the dependence on the transitional package liblircclient-dev by the current liblirc-dev.
- [2c91a152] DEB tderadio: Replace the dependence on the transitional package liblircclient-dev by the current liblirc-dev.
- [9ebeaa57] RPM: don't force use of python3.11 under Ferdora 39
- [9d336ebd] RPM: update tdesshaskpass
- [f83bd2bb] RPM: update soundkonverter (remove TODO file)
- [252fba04] RPM: remove grubconfig and wineconfig from tde-guidance
- [3ad90433] RPM: switch k9copy to cmake build
- [fde218b0] RPM: update tdebase
- [7e100030] RPM: switch libksquirrel to cmake build
- [04309578] DEB pytde: Fix support for multiple Python3 installed in parallel.
- [598ef9e7] DEB pytqt: add support for python 3.12
- [67eb46f0] ArchLinux: Update for rebuild with Poppler 24.01.
- [77a683a7] RPM: fedora39: update build scripts
- [1ea737d7] RPM: osstw: update build scripts
- [e434528a] RPM: pclinuxos: update build scripts
- [cb114d7c] DEB sip4-tqt: Prefer dist-packages folder for a particular version of Python before shared.
Use sysconfig instead of distutil to detect paths. - [9907c849] DEB tdebase: Enable new option WITH_SFTP.
- [3d551b91] DEB tdebase kxkb: add notification event for keyboard layout change. This relates to TDE/tdebase#438
- [a006276e] DEB tdesshaskpass: Fix the support of Ninja build.
- [03143bf8] DEB tqt3: Update README file name.
This relates to issue TDE/tqt3#93 - [6729c27b] DEB: Automatically add ldconfig trigger if the package contains plugins.
As a result, it is no longer necessary to enforce ldconfig in postinst
and postrm scripts and this solves the problem with packages where the
ldconfig was not called after installation, but it was needed.
This resolves issue TDE/tdemultimedia#29 - [6bc6d6e3] DEB: Add support for Ubuntu Noble.
- [4ae59bb2] DEB tdebase: Prevent unwanted restarting TDM service during upgrade.
This made it possible to add #DEBHELPER# back to TDM prerm script.
This resolves issue TDE/tdebase#409 - [4784f17e] DEB smb4k: cmake conversion
- [65dd80fb] DEB libr: update package name to libr1
- [ce06e711] DEB libr: remove dependency on libglade, which is no longer available
- [dff6d937] DEB tdeaddons: Add libdb5.3++-dev as an alternative dependency for libdb++-dev.
- [d4152453] DEB soundkonverter: cmake conversion
- [13ab9cf7] DEB gwenview: Fix the name of suggested i18n package.
- [904d1e09] RPM: add support for Fedora 39
- [ea66d8ef] DEB: drop Stretch and Xenial and invalid link
- [bdc4e185] DEB twin-style-fahrenheit: Change debhelper compatibility level to 10.
Use DEB_COMPRESS_EXCLUDE_ALL instead of deprecated DEB_COMPRESS_EXCLUDE.
(the last part of commit fc691a7208477948ad7519ed67861a0b4c6a4b74) - [2b20e14f] DEB: add twin-style-fahrenheit packaging files
- [90c68a68] DEB tde-cmake: Raise the minimum required version of CMake to 3.5.
- [0809dd93] DEB: Change debhelper compatibility level to 10.
Use DEB_COMPRESS_EXCLUDE_ALL instead of deprecated DEB_COMPRESS_EXCLUDE. - [657aaad5] DEB tdebase: add new color themes