Changelog For R14.1.6

From Trinity Desktop Project Wiki
Revision as of 00:08, 27 April 2026 by SlavekB (talk | contribs) (Update 20260426)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

common

admin

  • [d2df4826] Add detection for current python 3.14 and upcoming python 3.15.
  • [922f810c] Remove use of KDE_IS_VERSION
  • [04538927] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler. Also remove support for NonStop-UX due to similarities.
  • [d284a7c9] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [8b6ecd1b] Do not enforce strict c++17 if default is >= c++17
  • [9d7b3780] Raised required C++ standard to c++17

libtdevnc

  • [a798376e] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [cd480218] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [dd523e82] Drop support for Watcom compiler, which is not c++17 compliant

dependencies

tde-cmake

  • [f4625f87] Update to final version R14.1.6
  • [7aa5c052] Document tde_add_library()
  • [d68f4312] Add build-check target
    Adds a build-check which builds test executables but doesn't run them.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tde-cmake/issues/129
  • [9eda0282] tde_install_icons: Fix variable name repeating as glob expression.
  • [944dd39f] Use default CMAKE_INSTALL_LIBDIR from GNUInstallDirs for LIB_INSTALL_DIR.
  • [941f650c] Add macro to process and install header files
  • [1b52ff1f] Add back a stump for tde_setup_architecture_flags()
    As tde_setup_architecture_flags() was renamed in f49705f. The older
    branches won't work without rebase. To minimize the disruption, add a
    temporary stump for it.
  • [f6cd8a79] Fix up logic to set minimum C++ standard.
    This version does not enforce a downgrade if the default standard in use on a system is higher.
    This relates to PR #134 and discussion in TDE/tqt#244
  • [2ae75dab] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [84612d73] Raise required C++ standard to c++17
  • [8ae2b6f3] Use a better way to enforced the minimum C++ standard required and extend the check also to modules that do not make use of TQt (for example libr or akode)
  • [64c8cc7b] tde-cmake is now a standalone module, there is no more need to check for it
  • [30054f8c] Add handling of xpm files to tde_install_icons macro
  • [c3ebd68d] Update version to R14.1.6~[DEVELOPMENT]

tqt

  • [3a07835b] Fix an assert violation when displaying Lao
    When displaying Lao text tqt was complaining about assert violation:
    ASSERT: "item >= &textEngine.items[0]" in kernel/tqrichtext.cpp (3883)
    This is because for Lao script was assigned a Thai callback.
    The Qt4 eventually as well removed use of Thai AttributeFunction for
    Lao.[1]
    [1]: https://github.com/Fat-Zer/qt4-historical/blob/7ce566a7b2496c436fd69effc566292cf577daa1/src/gui/text/qscriptengine.cpp#L5231
  • [79041c4a] tqassistant.desktop: remove extension from Icon=
    Gentoo's QA system complains about that:
    tqassistant.desktop: error: (will be fatal in the future): value
    "tqassistant.png" for key "Icon" in group "Desktop Entry" is an icon
    name with an extension, but there should be no extension as described
    in the Icon Theme Specification if the value is not an absolute path
  • [ad6f8123] q => tq rebranding: rename qt_* symbols in src/kernel (part 2/2)
    All the symbols are internal and shouldn't affect API/ABI.
    The rename was done with next script:
    grep -horE '\<qt_\w+' src/kernel/* | sort -u | \
    grep -v '^\(qt_pch\|qt_radio_nnn_\)$' | \
    sed 's!.*!s/\<&\>/t&/g'! > /tmp/qt-rename.sed
    find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
    With some minor manual adjustments.
  • [2a1706c5] Remove dangling symlink: include/qwindow.h
    The symlink was left dangling after remove of the qwindow.{h,cpp} in
    37164f987.
  • [207f0ef3] q => tq rebranding: rename qt_* symbols in src/kernel (part 1/2)
    All the symbols are internal and shouldn't affect API/ABI.
    The rename was done with next script:
    grep -horE '\<qt_\w*' src/kernel/tq[a-e]* | sort -u | \
    sed 's!.*!s/\<&\>/t&/g'! > /tmp/qt-rename.sed
    find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
  • [30ab749d] q => tq rebranding: rename internal qt symbols from private headers
    All the symbols are internal and shouldn't affect API/ABI. Some symbols
    are skipped due to being mentioned also in public headers.
    grep -horE '\<qt_\w*' src/*/*_p.h | sort -u | \
    grep -vE 'qt_(format_text|ucm_(query_)?verification_data)' | \
    sed 's!.*!s/\<&\>/t&/g'! > /tmp/qt-rename.sed
    find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
  • [ec608680] q => tq rebranding: rename internal symbols used only on mac
    All the symbols are used only on mac and are internal so they won't
    affect API/ABI on X11.
    The rename was done with next script:
    grep -horE '\<qt_mac\w*' src/*/*.h | sort -u | \
    sed 's!.*!s/\<&\>/t&/g'! > /tmp/qt-rename.sed
    grep -horE '\<qt_\w*' src/kernel/tqwidget.h | sort -u | \
    sed 's!.*!s/\<&\>/t&/g'! >> /tmp/qt-rename.sed
    find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
  • [437bbf70] q => tq rebranding: rename qt_gl* symbols
    Rename mentions of qt_gl* symbols. All the symbols are purely internal
    and shouldn't affect neither API nor ABI.
    The rename was done with next script:
    grep -horE '\<qt_\w*' src/opengl/ | sort -u | \
    sed 's!.*!s/\<&\>/t&/g'! > /tmp/qt-rename.sed
    find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
  • [3a2d8a23] tqapplication_x11: fix -Wnonnull warnings
    This replaces make-shift abort point which were resulting in SIGSEGV
    with tqFatal() calls.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tqt/issues/275
  • [27fe60f4] q => tq rebranding: rename internal qt_ symbols from tqapplication*
    Rename all functions and variables found in src/kernel/tqapplication*
    files which were still started with qt_ to tqt_.
    The rename was done with next script:
    grep -horE '\<qt_\w*' src/kernel/tqapplication* | sort -u | \
    sed 's!.*!s/\<&\>/t&/g'! > /tmp/qt-rename.sed
    find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
    with some minor manual tweaks afterwards.
    Besides that {qt_qt_ => tqt_}scrolldone was renamed.
    All those are purely internal symbols and shouldn't affect neither API
    nor ABI. Those that are declared in tqapplication.h and tqwidget.h
    are private variables and supposed to be used only on MacOS.
  • [331c9560] Remove unused files: qwindow.{h,cpp}
  • [91abb642] TQDesktopWidget: move check for screenCount to isVirtualDesktop()
    As for now there is a problem: in case an application is running on a
    xinerama-capable screen and a new monitor gets attached to it later.
    TQDesktopWidget::isVirtualDesktop() keeps returning false even if we now
    have a desktop composed of two monitors. This patch fixes it.
  • [3b0bf5af] TQDesktopWidget: Fix SIGSEGV in case class is accessed before init()
    If screenCount/rects get accessed before init() it may result in
    SIGSEGV. Namely in TQDesktopWidget::resizeEvent() after recent changes.
  • [1c01e152] TQDesktopWidget::screenNumber: check default screen first
  • [6e5e7d27] TQDesktopWidget: backport changes from Qt4
    The class was little changed during lifetime of Qt4, so it was possible
    to relatively easy backport them. This changeset is based on Qt4.8.7.
    The changes include:
    * This fixes several issues on "old-school multihead" X11 setups (with
    several screens per display i.e. when DISPLAY has form ":x.y" also
    known as "TDE_MULTIHEAD" or "Zaphod mode"). In particular:
    * fix graphical drag&drop problems across displays.
    * fix menus being displayed outside of the screen.
    * add screenCountChanged() signal
    * emit resized() signal
    See-also: https://github.com/qt/qt/blob/v4.8.7/src/gui/kernel/qdesktopwidget_x11.cpp
  • [5b6ab2ac] Rename several symbols {qt=>tqt}
    Symbols renamed:
    * {qt=>tqt}_desktopwidget_update_workarea
    * {qt=>tqt}_desktopwidget_workarea_dirty
    * {qt=>tqt}_net_supports()
    * {qt=>tqt}_net_*
    * {qt=>tqt}_x11_create_desktop_on_screen
    All those are internal symbols; the changes don't affect API/ABI. No
    additional changes required.
  • [457bcc97] tqdesktopwidget: cleanup indents
  • [c98270c0] Fix infinite looping in TQTextEngine::shape()
    With certain characters a loop inside TQTextEngine::shape() could
    repeat forever because some script engines were requesting more memory
    because of a mistake.
    In particular this were observed with at least letters "ई" (U+0908,
    DEVANAGARI LETTER II) and "ༀ" (U+0F00, TIBETAN SYLLABLE OM).
    The problem was already solved in Qt somewhere between last Qt3 release
    and first Qt4. But due to no public VCS is available it's impossible to
    pinpoint an exact commit. This patch is heavily based on the Qt-4.3.5
    code.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tqt/issues/270
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdeutils/issues/93
  • [dfd0740a] Fix a -Wlogical-not-parentheses warning
    The function returns the number of lowest zero bits of a 32-bit value
    and shifts the value by that number. By the time it reaches last
    condition x can be zero if and only if the passed value was zero and
    hence we can immediately return 32.
    Initially the condition were likely supposed to be `if (!(x & 1))` but
    in this particular case it's the same as `!x` and subjectively it makes
    more sense to just check if the number is zero. See discussion in
    the #264.
    See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tqt/pulls/264
  • [6446d218] Added description to the subject in the manual page.
    Lintian tag: bad-whatis-entry
  • [2b9dfcfb] Use utf8 encoding for special characters in documentation.
    Lintian tag: national-encoding
  • [b266c29a] Cleaning up desktop files
    The desktop files listed a mimetype, but it doesn't seem to be tied
    to any specific file types. Also, the filename is not passed in the
    Exec arguments.
    Lintian tag: desktop-mime-but-no-exec-code
  • [0d8f7d1b] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler
  • [6e9fce01] Don't look up '0-serialized' pointers in TQGDict. This replaces PR #263
    It makes no logical sense to serialize a pointer value and in fact 0 is written. So the call to look_ptr is never executed when deserializing a pointer.
  • [658822a8] Fix typo in previous commit
  • [a62edea8] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [5b4e4b02] fix all loops with empty body
  • [ba7982b9] concatenating char and a string
  • [798ac2b0] Drop support for Watcom compiler, which is not c++17 compliant.
    Also remove some left over files that should have been deleted when
    support for SCO was removed.
  • [6727c1b1] Remove usage of TQ_FULL_TEMPLATE_INSTANTIATION and TQ_DUMMY_COMPARISON_OPERATOR.
    The #defines were used for some very old compilers which had issues with template instantiation.
    We are now using c++17 compilers, so this is unnecessary.
  • [60ce9c84] Remove usage of TQ_INLINE_TEMPLATES define. inline' is redundant in function template definitions, except for specific template specialization
  • [9d53120e] configure: use POSIX-compliant syntax for sed
    The sed invocation previously introduced in 854c5d5c9 was using `\s` for
    space matching which is GNU extensions. This commit replaces it with
    POSIX-compliant character class `space:`.
  • [b7e92110] Remove Q_CANNOT_DELETE_CONSTANT define. We are using c++17 compilers,
    this should no longer be needed.
  • [e28df018] Remove Q_NO_EXPLICIT_KEYWORD and Q_EXPLICIT macros.
    We are using c++17 compilers, so 'explicit' is supported.
  • [5dd3e924] Remove Q_NO_BOOL_TYPE define.
    We are using c++17 compilers, so bool is always available.
  • [7bf7f80f] Remove BSD g++ 3.4 spec since such old version does not provide a c++17 compiler
  • [1aa5da9f] Remove Q_BROKEN_TEMPLATE_SPECIALIZATION define.
    We are using c++17 compilers, so template specialization are supported.
  • [436a3418] Replace TRUE/FALSE with boolean values true/false - part 11 (for R14.1.x only)
  • [07b2200f] Fix FTBFS caused by typo in previous commit
  • [ff89dd5c] Replace TRUE/FALSE with boolean values true/false - part 10
  • [062b8a47] Add detection of supported c++ standards and require c++17.
  • [791b5390] Replace TRUE/FALSE with boolean values true/false - part 9
  • [3a477fb7] Replace TRUE/FALSE with boolean values true/false - part 8
  • [e4085a83] Replace TRUE/FALSE with boolean values true/false - part 7
  • [0ee946e4] Replace TRUE/FALSE with boolean values true/false - part 6
  • [ceb93b10] Replace TRUE/FALSE with boolean values true/false - part 5
  • [b87533f9] Replace TRUE/FALSE with boolean values true/false - part 4
    Manually cherry-picked from commit 4d495175

tqtinterface

  • [b5476dea] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

akode

  • [f6708c47] Fix FTBFS with ffmeg 8.0.
  • [04967cdf] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

arts

  • [70b1fe56] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler
  • [ccafef18] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [5d55a60c] user climits and CHAR_BIT instead on NBBY
  • [80704b00] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

avahi-tqt

  • [87a63f73] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

dbus-1-tqt

  • [29995e9d] Use the default TDESetupPaths instead of custom settings.
    This will ensure installation according to default multi-arch
    location used by the distribution. See TDE/tde-cmake#140
    For INCLUDE_INSTALL_DIR, it is kept intact with the default
    value, with the installation being targeted to a subfolder.
  • [296b5109] Implicitly process messages that arrived while awaiting for reply
    This changes the behaviour of TQT_DBusConnection::sendWithReply():
    before the patch in case some message arrives while awaiting for a
    reply in dbus_connection_send_with_reply_and_block(), they were enqueued
    and won't be processed until some other message kicks it on or a user
    explicitly called scheduleDispatch() or dispatch().
    This commit adds an implicit call to scheduleDispatch() to avoid
    unexpected delays in processing incoming messages.
  • [b0dd096d] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [b40e3f40] Fix up TQT_DBusDataMap template definitions
    Since C++20 the simple-template-id is no longer allowed for constructors
    or destructors[1]. This were resulting in lots of mildly annoying
    warnings (-Wtemplate-id-cdtor) from compiler. The patch fixes-up the
    issue.
    [1]: https://eel.is/c++draft/diff.cpp17.class#2

dbus-tqt

  • [87ca38d7] Use the default TDESetupPaths instead of custom settings.
    This will ensure installation according to default multi-arch
    location used by the distribution. See TDE/tde-cmake#140
  • [e7700ffc] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

libart-lgpl

  • [435ef3f9] CMAKE_INSTALL_LIBDIR setting has been moved to tde-cmake.
  • [e78f1606] Install libraries according to multi-arch rules.
  • [ec6d0e82] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

libcaldav

  • [7a1aa500] CMAKE_INSTALL_LIBDIR setting has been moved to tde-cmake.
  • [a3ea1cd4] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

libcarddav

  • [e2076131] CMAKE_INSTALL_LIBDIR setting has been moved to tde-cmake.
  • [07e6f228] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

libr

  • [4c334d76] Update for API change in binutils 2.46.
    According to the commit message in binutils, it was a simple renaming
    of `*_set_reloc` to `*_finalize_section_relocs` without changing the
    functionality.
  • [27a0853f] Move configuration checks to ConfigureChecks.cmake.
    Add tde_setup_compiler_flags call and usual tests.
    Add WITH_GCC_VISIBILITY option.

sip4-tqt

  • [62604939] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler
  • [b94c394b] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [5c293082] Remove support for old freeBSD, SCO and Watcom compiler specs

tqscintilla

  • [27c2d940] CMAKE_INSTALL_LIBDIR setting has been moved to tde-cmake.
  • [a1ea5dcd] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

pytqt

  • [f70dfd16] Use utf8 encoding for national characters in test databases.
  • [df83012c] Finish off replacement of TRUE/FALSE with boolean values true/false. This relates to PR #37

polkit-tqt

  • [0196dcfa] CMAKE_INSTALL_LIBDIR setting has been moved to tde-cmake.
  • [3310c2f9] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tqca

  • [10fbd8fb] CMAKE_INSTALL_LIBDIR setting has been moved to tde-cmake.
  • [ed054fe7] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

core

tdelibs

  • [97fd9fa6] Update to final version R14.1.6
  • [1417e6b1] tdeui/kcharselect: key navigation improvements
    * Reverse PgUp/PgDown keys so they better reflect direction of the
    recently added slider movements
    * Allow arrow keys to move to the next/prev page
  • [a3a7a264] tdeui/kcharselect: handle mouse wheel event to change the table
  • [dad8eb55] KCharSelect widget: add scrollbar
  • [a65f0549] tdeui/kcharselect: use TQStyleSheet::escape()
    KCharSelectTableToolTip: use TQStyleSheet::escape() instead of escaping
    the character manually.
  • [d0a61356] tdeui/kcharselect: better event handling
    KCharSelectTable: Use content/viewport*Event handlers provided by
    TQScrollView instead of directly overriding basic TQWidget's event
    handlers. This way we won't be off by a few pixels of frame/margin.
    Also a funcional change: if mouse will be pressed/released outside of
    the table the event will be ignored (i.e passed to parent) and no
    signals will be sent. e.g in kcharselect program no symbol will be added
    to the output field.
  • [b7bd2cac] tdeui/kcharselect: [refactoring] reuse common code from *goto() functions
  • [f5cb99a6] tdeui/kcharselect: do not pregenerate ToolTips
    Generate tooltip text dynamically when they are shown instead of
    generating all 256 at the change of a page.
    This will increase page change speed by ~10-20%.
    Technically this commit breaks ABI by adding a missing destructor. Which
    can lead to memory leak if KCharSelectTable was created on the stack.
    Though it seems the class doesn't see a lot of direct use outside of
    tdelibs.
  • [783328b8] kcharselect: avoid redrawing if a property unchanged
    This is a complementary change required for TDE/tdelibs#396
    See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/pulls/396#issuecomment-85266
  • [507d3757] Remove use of TDE_VERSION
  • [afc48319] Merge translation files from master branch.
  • [d49ffdd4] Rename KDE_IS_VERSION to TDE_IS_VERSION
  • [32f7d9b8] vsnprintf/snprintf are part of the c++ standard, so there is no need to keep around custom implementations for them
  • [964d4bfc] Merge translation files from master branch.
  • [7b877f1e] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [9ec08d87] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [9e6e4934] tde-config.cpp: rename TRUE to true, since it was now causing FTBFS after tqt renaming was completed and TRUE was no longer defined
  • [25cd6de4] fixes a few vectors in the main tde logo
  • [32dd6305] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [88574279] Updates the tde classic logo on the tdeprint landscape & portrait page icons
  • [baf4af6d] tdeio_iso: add support for xz archives.
    Code taken from krusader's tdeio_iso.
  • [a0f72fdc] Make 'TDEConfigINIBackEnd::parseSingleConfigFile' reentrant.
    If a second call to 'TDEConfigINIBackEnd::parseSingleConfigFile' was called from
    another thread while the first wasn't finished, it would have resulted
    in a SEGV fault. Config files are usually small and mmap-ing files
    does not provide meaningful benefits while instead introducing the
    possibility of a SIGBUS fault, although extremely unlukely in real
    life.
    This resolves issue #379
  • [5cd98c1c] Update version to R14.1.6~[DEVELOPMENT]

tdebase

  • [a3b6f080] Fix compatibility of recent patch with r14.1.x branch.
  • [3582b7ff] Merge translation files from master branch.
  • [3b90c783] Merge translation files from master branch.
  • [412a7494] Update translation template.
  • [f56a5440] Add final version of release notes for R14.1.6
  • [4b9931ab] Web Shortcuts: add support for groups
    The web shortcuts can now be displayed in groups based on their
    category (Web, Images, Development, etc.). The user can modify
    the category of an item by picking one of the built-in categories
    or creating custom groups by providing a different category name.
    When the category groups are hidden, the user can still see
    the categories appear in a third column in the list view.
    This commit also updates the search engines enabled by default to
    some sensible defaults and makes the minimum size of the dialog
    smaller.
  • [fa9a62bb] Updated search engines
    Removed many obsolete search engines, updated query URLs where applicable and added popular and useful search engines.
    Newly added search engines:
    - DuckDuckGo, StartPage, Qwant, Brave: search engines with emphasis on privacy
    - Bing, Baidu, Yahoo, Yandex: popular search engines
    - Wiby.me: indie web search engine
    - Arch Wiki, Gentoo Wiki: trusted good sources for all kinds of Linux documentation
    - LinuxQuestions.org
    - TDE Wiki and TGW
    - Wikimedia Commons and major language versions of Wikipedia and Wiktionary
    - ArXiv, JSTOR, Google Scholar: academic paper repositories/aggregators
    - Github, Codeberg and Sourcehut software repositories
    - OpenStreetMap, Google Maps: maps
    - Arch, AUR, Gentoo, Devuan, Slackware package search engines
    - pkgs.org package metasearch engine
    - Pling, Trinity-Look, KDE Store
    - Curlie: DMOZ successor
    - Pixabay, Pexels: popular free asset websites
    - TQt and Qt (versions 4 to 6) documentation search
    - TDE API documentation search
    - CPP Reference search
    - Python (versions 2 and 3) documentation search
    - Mozilla's MDN
    - Urban Dictionary
    - Academic English and Russian dictionaries collection
    - The Movie Database: IMDb alternative
    - Kagi and Kagi assistant: subscription-based web search
  • [139a07d1] kdesktop: fix crash in KBackgroundManager
    The crash in KBackgroundManager::slotCrossFadeTimeout() sporadically
    appeared on monitor switching on/off. Because a pointer to mOldScreen
    was used after being freed.
    Since TQPixmaps are implicitly shared it's ok to make a copy of it there
    isn't an additional severe cost for it.
  • [15a5c1ac] kdesktop: stop pending KDirListner jobs on view clear
    If the KDirListner, keeps working in can result in items being added to
    the list after the list gets cleared.
    In practise this can result in items being listed several times after
    rapid successful updates.
  • [9c3deb7d] kdesktop: fix a crash on rapid successful updates
    In case there are several consequent updates of desktop (cause by e.g.
    resolution changes), there could be a crash inside
    slotFreeSpaceOverlayStart() cause by the fact that ItemViewItems stored
    in m_paOutstandingFreeSpaceOverlays are getting deleted from the
    KDIconView which invalidates the pointers. To avoid that, proactively
    clean up m_paOutstandingFreeSpaceOverlays on items getting removed.
    Realistically this can appear inside a virtual machine the resize of the
    VM window results in several successive changes to resolution.
  • [ad675e7d] kcontrol/background: update preview on resolution change
  • [4d74e60e] kcontrol/background: better support for old-school multihead setups
    This fixes a couple of issues on "old-school multihead" X11 setups (with
    several screens per display i.e. when DISPLAY has form ":x.y" also known
    as "TDE_MULTIHEAD" or "Zaphod mode"):
    * fixed an issue where on primary screen wallpaper is getting rendered
    for both secondary and primary on certain kdesktop configurations.
    * fixed an issue on wallpaper config dialog where previews for two
    monitors were displayed overlapped.
  • [a56694a5] [minor] Some whitespace fixups
  • [2a5cb33e] Remove use of TDE_VERSION
  • [6ea8b431] kxkb: fix loading options without group into GUI
    A follow up to e379ec4b6. Settings for options without group were not
    getting loaded into the UI, so the options were always appeared to be
    unset even they were correctly serialized to the config.
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/450
  • [e02c045f] kxkb: add options without group to the custom group
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/450
  • [87c466de] Konqueror: backport fix for KDE Bug #100373
    Hide statusbar for toggleviews (like the sidebar) when loading from profile, just like konqguiclients.cpp:201 does at runtime.
    Author: dfaure
    Date: Wed Nov 11 01:00:22 2009 UTC
    KDE SVN revision #1047332
  • [5d9db190] starttde: use ${BIN_DIR} when running kcheckrunning
    Due to kcheckrunning is being run before proper PATH for TDE is set we
    should run it with a full path.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/661
  • [62d9cc64] Merge translation files from master branch.
  • [989811a3] Merge translation files from master branch.
  • [cc06b99a] Merge translation files from master branch.
  • [28470358] Remove use of KDE_IS_VERSION
  • [677e1748] Merge translation files from master branch.
  • [b9c3ed09] Merge translation files from master branch.
  • [3ed9cf92] Merge translation files from master branch.
  • [2872b572] tdm: a more robust Xsession script
    - source *xprofile and /etc/X11/xinit/xinitrc.d/* files
    - provide a fallback for running session if Xsession does not present
    - import Xresources via xrdb
    For reference see also:
    - older Xsession version used in gentoo:
    https://mirror.git.trinitydesktop.org/gitea/TDE/tde-packaging-gentoo/src/branch/master/trinity-base/tdm/files/tdm-14.0.8-xsession.script
    - Xsession version from sddm (ultimately derived from kdm3 one as well):
    https://github.com/sddm/sddm/blob/662a409aabec39bdbff2a13fa008e6a7a873dca1/data/scripts/Xsession
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/668
  • [4c8238cd] khelpcenter: Remove installation of non-existent images.
    I looked at the source code all the way back to the original KDE 2.2
    and there were always just rules for installing icons, but the files
    were never present.
  • [337664c5] Merge translation files from master branch.
  • [6639b8d1] Merge translation files from master branch.
  • [fa1172ac] Merge translation files from master branch.
  • [6127a93b] Merge translation files from master branch.
  • [3f1bf5f9] twin: remove "Apply translucency only to decoration" option
    The option has been broken for more than a decade (since replacement of
    kompmgr with compton-tde) and it is nontrivial to fix it.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/706
  • [78abe181] Merge translation files from master branch.
  • [976966d0] twin: streamline compton-tde starting code
    This fixes the issue raised in comments to PR #704[1].
    [1]: https://mirror.git.trinitydesktop.org/gitea/gitea/TDE/tdebase/pulls/704#issuecomment-81007
  • [aeb73c20] Merge translation files from master branch.
  • [484a38f1] Merge translation files from master branch.
  • [bca94a24] twin: better rules when to set custom_opacity flag
    This patch implements next peaces of logic:
    - If opacity is not completely opaque by default, changing it to opaque
    won't result it resetting the flag anymore.
    - Also in such a case the X11 property will be set for completely opaque
    windows as well. That way we can restore it in case of WM restart.
    - On WM initialization we check if the X11 opacity property has value we
    would expectto be left behind by previous WM instance and if it does
    we won't set the custom_opacity flag.
  • [1fe82c78] twin: treat keepAbove() windows exactly as active
    Before this the keepAbove() windows were always completely when inactive
    regardless whether active windows have some degree of translucency or
    not. But as prompt in the config says they should be just treated as
    active.
  • [ca5cf060] twin: refactor Client::updateOpacity() and associated stuff
    * deduplicate big chunk of code in updateOpacity()
    * move logic to get desired opacity according to rules into a dedicated
    function (defaultOpacity()).
    * Replace floating point arithmetics with pure integer one in function
    associated to converting to/from percents.
  • [f4d46350] twin: fix translucency for inactive windows
    Because of this old workaround translucency for inactive windows were
    not applied correctly: they were almost always using translucency
    settings for active windows.
    I don't see any regressions caused by removing it and I can't reproduce
    the original bug[1].
    [1]: http://bugs.trinitydesktop.org/show_bug.cgi?id=2220
  • [814f89fd] twin: set opacity to be fully opaque by default
    Also set window's opacity after it's getting managed by twin.
    This resolves issue with windows that don't require input get
    transparent after move/resize.
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/698
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/699
  • [7e075a5a] Merge translation files from master branch.
  • [b7f6b6a4] Merge translation files from master branch.
  • [7681a181] Fix potential FTBFS during parallel build and late processing of kickerSettings.kcfg.
  • [f434849b] Merge translation files from master branch.
  • [f77c9e54] Remove leftover files for Tru64 in ksysguard
  • [36ff3861] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler
  • [6d979a68] Merge translation files from master branch.
  • [3530013a] Merge translation files from master branch.
  • [4b8ce461] Add file system type to tdefile media meta info plugin.
    This resolves issue #683
  • [5d4bc4c9] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [0ea8adf8] Use POSIX complaint regex for gathering license information
  • [3e39dd80] Merge translation files from master branch.
  • [c0ad804a] Fix compatibility of recent patch with r14.1.x branch.
  • [aa8a499a] twin: small refactoring; move global variables to the class
  • [0eddcf11] twin/compton: remove no longer used old pid-file functions
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/673
  • [32f6d3c1] twin/compton: simplify signal handlers
    Make signal handlers just set a flag and move all actual logic into the
    main loop. A general reminder: it's a UB to have stuff like malloc() in
    signal handlers.
    This partially reverts some changes made by fbd3a27d6e. Now to reset
    compton config the whole session will be recreated from scratch.
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/673
  • [deeb774d] twin/compton: use SIGUSR1 to reload settings
    Before that to reload settings compton-tde was using SIGUSR2; and
    SIGUSR1 wasn't actully used, but was designated for something wierd.
    This commit removes old SIGUSR1 handler and uses SIGUSR1 to reload the
    settings instead of SIGUSR2.
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/673
  • [3c33552f] twin/compton: remove the file passed via --write-pid-path on exit
  • [b31ece46] twin: incorporate DISPLAY into compton pidfile name
    This fixes compton launch on systems with several X11 Screens. And also
    in case of multiple sessions for the same user.
    Also:
    - move the file to tde's proper tmp dir.
    - deduplicate some code
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdebase/issues/673
  • [c657dec6] twin/compton-tde: remove some dead code
    `WORK_AROUND_FGLRX` is not defined anywhere in the build system. And the
    code under the #ifdefs was broken for decades as `restartOnSigterm` is
    not declared, defined or used anywhere.
  • [955cbddd] twin: minor whitespaces fixup
  • [2b46938c] Use True/False values for X11 API calls
    During discussion it was decided that it would be better to use more
    traditional constants for True/False in X11 calls after all.
    This effectively fixes-up the changes made by e8fcdbfe9.
  • [272800df] Merge translation files from master branch.
  • [88bd5e7e] Add "Go to Desktop" action
    The Desktop is a significant enough place to be included in the "Go" quick-access menu.
    Apart from being present in the menu, it can be added to any Konqueror toolbar for quick access, just like any other action.
  • [2960969d] Replace TRUE/FALSE with boolean values true/false [2]
    X API calls for some reason were missed in previous commits.
    Note: Traditionally X Api uses "True" and "False" definitions, but for
    consistency with the rest of code base it would be better to use modern
    counterparts.
  • [a6b02f1d] Add support for LoongArch 64 bits little-endian.
  • [2554c343] changes the kicker icons i missed in /kicker/data/icons to the redesigned ones and adds 64x versions
  • [ed9a0f10] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [a6ba01a4] redesigns the kicker icons
  • [517a8f59] changes kicker icons in kcontrol
  • [6c514d6b] Revert Konqueror graphics to its original form
    There were changes made to original Konqueror graphics in #632. These were
    questionable in that: a) they were an instance of fixing something that wasn't
    broken; and b) editing was highly unskillful and came from a contributor that
    also used AI to generate new wallpaper in TDE.
    Some of these editing issues were later corrected in #649, but the texture still
    exhibits transparency issues.
    This commit reverts the texture to its original state, which had no issues that
    needed fixing.
    See tdeartwork#58
  • [a9cf3812] Revert changes to klipper icon from commit d2221f23. This relates to previous PR #654 and put the 'k' back, since the 't' did not look appropriate for 'klipper'
  • [4fe2bca8] Rename 'preloadkde' to 'preloadtde' in tdm configuration.
  • [98e3d9eb] Rename KDE_BINDIR to TDE_BINDIR
  • [23b75093] twin: fix tiling of maximized windows. This resolves issue #675
  • [b7a80139] Remove specific reference to the number of KDE version. This resolves issue #674
  • [70fa851e] Merge translation files from master branch.
  • [771bd77f] Add draft version of release notes for R14.1.6

tdepim

  • [7a101103] Remove use of TDE_VERSION
  • [7d8b9304] kmail: fix signature verification in cyphered messages
    If messages were simultaneously encrypted and signed with GPG, kmail
    were incorrectly claiming that "The validity of the signature cannot be
    verified" when it were already verified. This patch fixes that by
    requesting the key after the DecryptVerify job.
    Also the commit has some minor refactoring like reordering arguments of
    writeOpaqueOrMultipartSignedData().
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdepim/issues/187
  • [0859b844] kmail: refactor Verify*Memento classes
    Move common functionality to a dedicated superclass; no practical
    changes were maid.
  • [18a3e26b] certmanager: fix a minor mistake in condition
  • [57a0ed5b] Remove use of KDE_IS_VERSION
  • [4bda2f59] Fix build of tests
    The tests were falling to build due to lack of path to tqt-mt.so.
  • [cd3d1f27] Merge translation files from master branch.
  • [9426b49d] Merge translation files from master branch.
  • [13267f12] Merge translation files from master branch.
  • [327f4034] Fix potential FTBFS during parallel build and late processing of kabprefs_base.kcfg.
  • [60c34a95] Merge translation files from master branch.
  • [99c23ada] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [f394128d] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [be04a93e] Drop support for Watcom compiler, which is not c++17 compliant
  • [5d744a27] Replace TRUE/FALSE with boolean values true/false.
    Finishing the remaining renames from #158.
  • [f1f8e378] 'inline' is redundant in function template definitions, except for specific template specialization
  • [74258116] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdemultimedia

  • [628bbfb0] krec: add ARTS_LIBRARY_DIRS to link_directories
    This fixes issue #108
  • [9d70a6d1] Merge translation files from master branch.
  • [68591b20] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [ecaf71ae] Merge translation files from master branch.
  • [44c55ca3] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [ac46a23e] Replace TRUE/FALSE with boolean values true/false.
    Finishing the remaining renames from #97.
  • [a8bf9f5f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [f58a4fb5] Merge translation files from master branch.
  • [75ad1a0c] Merge translation files from master branch.
  • [ed4cff12] Merge translation files from master branch.

tdenetwork

  • [07bb506b] Remove use of TDE_VERSION
  • [b23451d3] Remove use of KDE_IS_VERSION
  • [ebd0dc02] Merge translation files from master branch.
  • [7381061d] Fix potential FTBFS during parallel build and late processing of addressbookselectorwidget_base.kcfg.
  • [b00823e8] Fix potential FTBFS during parallel build and late processing of kopetepasswordwidgetbase.kcfg.
  • [700d3516] Merge translation files from master branch.
  • [be65e379] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [43769f70] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdegraphics

  • [48387d30] tdefile-plugins: add support for poppler >= 26.04.0
  • [1cd3a7d4] Remove use of TDE_VERSION
  • [7e75def4] Remove use of KDE_IS_VERSION
  • [a659913f] tdefile-plugins: add support for poppler >= 26.01.0
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdegraphics/issues/149
  • [725c837d] tdefile-plugins: add support for poppler >= 25.12.0
    Bug: https://mirror.git.trinitydesktop.org/gitea/TDE/tdegraphics/issues/149
  • [559d150d] Complete replacement of TRUE/FALSE with boolean values true/false. This relates to PR #120
  • [4fd29831] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [646778a1] Changes KDE logos on resize.png, scale.png, and smooth_scale.png to Trinity ones
  • [653bbace] Fix compatibility of previous patch with r14.1.x branch.
  • [cae54411] kpdf: fix crash when requested to shutdown from the session manager or dcop. This resolves issue #139
  • [6c8e2287] kpdf: fix crash when starting in fullscreen mode. Also remember
    visibility settings for the menubar and toolbar across multiple runs and
    whether we exit the application in normal mode or fullscreen mode.
    This resolves issue #144 and replaces PR #145.
  • [b93fe37a] Fix compatibility of previous patch with r14.1.x branch.
  • [0ac7a878] ksnapshot: declare text/uri-list format when drag&dropping
    This enables drag&dropping screenshots directly into a browser window.
    As a side effect when drag&dropping into most file managers (into
    konquerror in particular) this will also cause them to copy a png file
    instead of asking a user in what format they would like to save the
    image.
    Besides that commit includes:
    - Rework of handling of temporary files, in particular:
    - Temporary files now try to use a friendlier names with timestamps
    e.g. `snapshot-20251108-211852.png`. And fallback to use
    `mkstemp()`-style suffix if the name already in use.
    - When "Open with" is issued several times the temporary file will be
    created only once.
    - If the file was already saved by the user ksnapshot won't create an
    additional temporary one for drag&drop or "Open with", but rather
    use the saved one.
    - "Open with" temporary files are no longer removed after the process
    terminates, but are kept around until exit from ksnapshot. Removing
    the files right after process termination caused failures to open
    the file when they were passed to another (already running) instance
    of a program instead of a new one (e.g. in gimp).
    - Some refactoring for code deduplocation.
    - Some helper classes.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdegraphics/issues/135
  • [9b2be405] ksnapshot: minor whitespace fixups
  • [5ae9b4e6] Add support for Poppler >= 25.10.
    Fix confusing formatting in DocumentData::addTocChildren.

tdetoys

  • [273d5588] Merge translation files from master branch.
  • [034789fa] Replace TRUE/FALSE with boolean values true/false.
  • [606079d9] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeutils

  • [aee047ef] Remove use of TDE_VERSION
  • [d80a2def] Merge translation files from master branch.
  • [2bc992ce] Remove use of KDE_IS_VERSION
  • [21eecbb7] ark: autodetect date order
    unzip-6 can be configured at build time to return date in several
    different fromats. There is no easy way to query unzip itself which one
    it uses, but in the wild only to formats were seen: MM-DD-YYYY (default
    for *nix) and YYYY-MM-DD (some linux distros; e.g. debian). So we will
    be guestimating before those two.
    Generic Arch class is not flexible enough, so it was necessary to
    override whole processLine() and parse everything with RegExes.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tdeutils/issues/115
    See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tdeutils/pulls/102
  • [832df556] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [7b4cebbb] Replace TRUE/FALSE with boolean values true/false
  • [9872a603] Modern size cannot fit into int
  • [191436fb] FreeBSD df can handle -T flag
  • [de123076] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [f3391347] Rename KDE_BINDIR to TDE_BINDIR

tdeedu

  • [4f676cb6] Remove use of TDE_VERSION
  • [bf2e0380] Remove use of KDE_IS_VERSION
  • [2cdb4285] Remove use of TQ_DUMMY_COMPARISON_OPERATOR.
    The #define was used for some very old compilers which had issues with template instantiation. We are now using c++17 compilers, so this is unnecessary.
  • [b75b8e19] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdegames

  • [83c7743a] Remove use of TDE_VERSION
  • [b8acb454] Merge translation files from master branch.
  • [bb8e90a7] Merge translation files from master branch.
  • [ffba1296] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [c5b3da93] ksirtet: do not show world-wide high scores widget. This relates to issue #55
  • [241701b3] kmines: do not show world-wide high scores widget.
    This resolves issue #55
  • [d76bcc0d] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeaccessibility

  • [cd922cba] Remove use of TDE_VERSION
  • [1f321932] Remove use of KDE_IS_VERSION
  • [79130c96] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [890dccde] kmousetool: remove unused header file
    Inclusion of `X11/extensions/xtestext1.h` was causing problems when
    building with clang (see [1]) due to it's use of register keyword. Since
    the header is not actually used just remove it.
    [1]: https://mirror.git.trinitydesktop.org/gitea/TDE/tdeaccessibility/pulls/39
  • [0a4b46b4] Include third-party headers as SYSTEM
    This avoids reporting warning for headers we have no control over. Also
    it avoids "errors" in the headers if some compilers (like clang) use
    some `-Werror=*` behaviour by default.
  • [198a224e] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [2cc43e31] Merge translation files from master branch.

tdeaddons

  • [bac2d1a2] Remove use of TDE_VERSION
  • [fd239198] Remove use of KDE_IS_VERSION
  • [9607fae8] Use TQt macros for OS detection
    Also make a minor adjustment to includes.
  • [b9b8ab12] kicker-applets: Add NetBSD support for KTimemon
  • [765520bd] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [25318495] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [72b7c429] Merge translation files from master branch.

tdeadmin

  • [e062b543] KUser: Add check if crypt function is found.
    All header and function checks are only meaningful if KUser is built.
    No other application uses the results of these tests.
  • [b85e38b6] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [5251f73d] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [16c9369b] Replace TRUE/FALSE with boolean values true/false
  • [13880dcb] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeartwork

  • [9a1c9be5] Merge translation files from master branch.
  • [87a69b58] Update translation template.
  • [8c53dfab] Remove 'Flying Konqi' wallpaper.
    Users have complained about the low quality of the wallpaper, which was
    possibly generated using AI. There has been no answer to various requests
    to the author to improve the quality of the wallpaper, so it has been
    decided to remove the wallpaper completely rather than keeping the low
    quality version.
  • [6361d5a2] Remove use of TDE_VERSION
  • [617d9b64] Merge translation files from master branch.
  • [de6d6049] Merge translation files from master branch.
  • [91d66b97] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [0716c0bc] Minor changes to various icon themes
  • [6096be7f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [b1d3d148] Revert changes to klipper icon from commit 2b6e35dc.
    This relates to previous PR TDE/tdebase#654 and put the 'k' back, since the 't' did not look appropriate for 'klipper'

tdebindings

  • [e59db338] Remove use of TDE_VERSION
  • [3d35001f] Remove use of KDE_IS_VERSION
  • [e8fefa67] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [05461ad5] Replace TRUE/FALSE with boolean values true/false.
    This completes the renaming from #61 specific to the r14.1.x branch.

tdesdk

  • [978a86aa] Remove use of TDE_VERSION
  • [57fd7d33] Merge translation files from master branch.
  • [01b39b9d] Remove use of KDE_IS_VERSION
  • [826523e3] Merge translation files from master branch.
  • [1e39f0e5] umbrello cppparser: mark TQ_INLINE_TEMPLATES as historical keyword
  • [a5f1d53e] Remove use of TQ_DUMMY_COMPARISON_OPERATOR.
    The #define was used for some very old compilers which had issues with template instantiation.
    We are now using c++17 compilers, so this is unnecessary.
  • [6d5abd52] Remove Q_EXPLICIT, see TDE/tqt#248
  • [41b1c684] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdevelop

  • [8f6827c7] Remove use of TDE_VERSION
  • [b0b2752e] Merge translation files from master branch.
  • [78627718] Merge translation files from master branch.
  • [2a2018e8] Merge translation files from master branch.
  • [d36e25e1] Merge translation files from master branch.
  • [e7c02731] Remove use of KDE_IS_VERSION
  • [ed5e55f3] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [286d01b7] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [d9f7972d] cppparser: mark TQ_INLINE_TEMPLATES as historical keyword
  • [ec99420a] Remove use of TQ_FULL_TEMPLATE_INSTANTIATION and TQ_DUMMY_COMPARISON_OPERATOR.
    The #defines were used for some very old compilers which had issues with template instantiation.
    We are now using c++17 compilers, so this is unnecessary.
  • [1e535ba9] Remove Q_EXPLICIT, see TDE/tqt#248
  • [c75e5d95] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdewebdev

  • [501fad38] Remove use of TDE_VERSION
  • [500233fd] Remove use of KDE_IS_VERSION
  • [afa56f24] Fix potential FTBFS during parallel build and late processing of klsconfig.kcfg.
  • [c16f09f4] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [0ab4da10] Remove use of TQ_FULL_TEMPLATE_INSTANTIATION. The #define was used for
    some very old compilers which has issues with template instantiation.
    We are now using c++17 compilers, so this is unnecessary.
  • [cae1927f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-i18n

  • [b5ee7067] Merge translation files from master branch.
  • [a02994ae] Merge translation files from master branch.
  • [6a04c095] Merge translation files from master branch.
  • [f675cbb1] Merge translation files from master branch.
  • [1db43f25] Update translation template.
  • [963e22dd] Merge translation files from master branch.
  • [3c55f58d] Update translation template.
  • [411c1b3e] Merge translation files from master branch.
  • [10037fdc] Update translation template.
  • [936aa056] Merge translation files from master branch.
  • [8de67656] Update translation template.
  • [c0e1c51f] Merge translation files from master branch.
  • [125b46c9] Update translation template.
  • [4947071e] Merge translation files from master branch.
  • [b4eb9db0] Merge translation files from master branch.
  • [6aa29e6c] Merge translation files from master branch.
  • [048a8ddc] Merge translation files from master branch.
  • [1ee9aa24] Update translation template.
  • [5bcb2e05] Merge translation files from master branch.
  • [ab4d99f3] Update translation template.
  • [e66be427] Merge translation files from master branch.
  • [ff1b3fb1] Update translation template.
  • [b025459f] Merge translation files from master branch.
  • [fb9c36f7] Update translation template.
  • [0c1d644d] Merge translation files from master branch.
  • [e5719d2c] Merge translation files from master branch.
  • [3f23d459] Merge translation files from master branch.
  • [71e0bb4b] Merge translation files from master branch.
  • [b2783126] Merge translation files from master branch.
  • [21f4a017] Merge translation files from master branch.
  • [4d76e3bd] Update translation template.
  • [35884c6e] Merge translation files from master branch.
  • [796251f4] Merge translation files from master branch.
  • [c9ae312e] Merge translation files from master branch.
  • [10359a47] Update translation template.
  • [e6255bdd] Merge translation files from master branch.
  • [93a66bfa] Merge translation files from master branch.
  • [b1e152b7] Merge translation files from master branch.
  • [ed1e4df3] Update translation template.
  • [521981d2] Merge translation files from master branch.
  • [b8cf486d] Merge translation files from master branch.
  • [dad547ce] Merge translation files from master branch.
  • [4d69d619] Merge translation files from master branch.
  • [4fdf6b45] Update translation template.
  • [db4c1411] Merge translation files from master branch.
  • [4c12227b] Merge translation files from master branch.
  • [8f5d3b99] Merge translation files from master branch.
  • [bcc8798e] Merge translation files from master branch.
  • [f8a609a3] Add an entry and flag for Interlingua.
    The flag is based on https://en.wikipedia.org/wiki/File:Flag_of_Interlingua.svg
  • [2e13a397] Merge translation files from master branch.
  • [052d18ba] Merge translation files from master branch.
  • [169dadcd] Merge translation files from master branch.
  • [b977904a] Merge translation files from master branch.
  • [07b94372] Merge translation files from master branch.
  • [c5985167] Merge translation files from master branch.
  • [495a780c] Update translation template.
  • [bc5bb401] Merge translation files from master branch.
  • [7a441641] Merge translation files from master branch.
  • [2c513233] Update translation template.
  • [25de6a5e] Merge translation files from master branch.
  • [867165fc] Update translation template.
  • [86bf4d7f] Merge translation files from master branch.
  • [078b291e] Merge translation files from master branch.
  • [0eefbaa7] Merge translation files from master branch.
  • [883d06af] Update translation template.
  • [1ccd8a72] Merge translation files from master branch.
  • [896dc871] Merge translation files from master branch.
  • [afe6bbaf] Merge translation files from master branch.
  • [29c682f4] Merge translation files from master branch.
  • [c1bcf7e1] Merge translation files from master branch.
  • [fba5f078] Fix Turkish iso8859-9 to utf8 encoding from previous commit.
  • [046b248c] Use utf8 encoding for national characters in documentation.
    Lintian tag: national-encoding
  • [6e0c1c77] Merge translation files from master branch.
  • [a4138611] Merge translation files from master branch.
  • [0dbec62c] Merge translation files from master branch.
  • [d3f5a15c] Update translation template.
  • [c640dffd] Merge translation files from master branch.
  • [d0aa7146] Merge translation files from master branch.
  • [49605eae] Update translation template.
  • [ffd86405] Merge translation files from master branch.
  • [f619d003] Merge translation files from master branch.
  • [70616848] Merge translation files from master branch.
  • [f69eeb76] Merge translation files from master branch.
  • [855884f0] Update translation template.
  • [eb7ec4d1] Merge translation files from master branch.
  • [46580bc6] Update translation template.
  • [60bd1fb3] Merge translation files from master branch.
  • [fad1f2bb] Update translation template.
  • [a4cea097] Merge translation files from master branch.
  • [532740d0] Merge translation files from master branch.
  • [f8c3eec6] Merge translation files from master branch.
  • [941cfabd] Merge translation files from master branch.
  • [1e4dd4c4] Merge translation files from master branch.
  • [4a06510b] Update translation template.
  • [687a342c] Merge translation files from master branch.
  • [34affec7] Merge translation files from master branch.
  • [1102074c] Update translation template.
  • [0b0205b8] Merge translation files from master branch.
  • [9110aa74] Update translation template.
  • [5cca812e] Merge translation files from master branch.
  • [d8e1e3e6] Update translation template.
  • [4c20945b] Merge translation files from master branch.
  • [ef9333bd] Update translation template.
  • [9825f143] Merge translation files from master branch.
  • [b83894b9] Merge translation files from master branch.
  • [0a6d500f] Merge translation files from master branch.
  • [c4c8591a] Merge translation files from master branch.
  • [598766c9] Update translation template.
  • [eb03a974] Merge translation files from master branch.
  • [a225c140] Update translation template.
  • [e513d406] tdebase: remove specific reference to the number of KDE version. This relates to issue TDE/tdebase#674
  • [ef370429] Merge translation files from master branch.
  • [a43a1ff9] Merge translation files from master branch.

libraries

libkdcraw

  • [3332f036] Merge translation files from master branch.
  • [d698eb58] Merge translation files from master branch.
  • [21a03c5f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [45f6f710] Fix FTBFS caused by wrong function prototype. This resolves issue #24
  • [390acf31] Merge translation files from master branch.

libkexiv2

  • [2f2feb67] Remove use of KDE_IS_VERSION
  • [eec99b8b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

libkipi

  • [a0acb185] Merge translation files from master branch.
  • [81971b2f] Update translation template.
  • [86557eab] Remove use of TDE_VERSION
  • [19930b2c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kipi-plugins

  • [c9a00d6c] Merge translation files from master branch.
  • [78ba4a5f] Merge translation files from master branch.
  • [745f63db] Update translation template.
  • [c13ace27] Remove use of TDE_VERSION
  • [24ab501f] Merge translation files from master branch.
  • [566179b4] Merge translation files from master branch.
  • [ac2897c6] Merge translation files from master branch.
  • [e582810e] Merge translation files from master branch.
  • [85aec86b] Merge translation files from master branch.
  • [f62e1f40] Merge translation files from master branch.
  • [bdeb5546] Merge translation files from master branch.
  • [ad482ef4] Update translation template.
  • [20eab832] Remove use of KDE_IS_VERSION
  • [7a3ec801] Merge translation files from master branch.
  • [d7da91af] Merge translation files from master branch.
  • [a0a977db] Merge translation files from master branch.
  • [863528fd] Merge translation files from master branch.
  • [2c246ad1] Merge translation files from master branch.
  • [c6c1ee9e] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler
  • [10571d4d] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [ad27de25] Merge translation files from master branch.
  • [9044b71a] Merge translation files from master branch.

libksquirrel

  • [dd6b928a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

libtdeldap

  • [80f6e25c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

libtqt-perl

  • [9cdfd277] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler
  • [362d9453] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [33167611] Replace TRUE/FALSE with boolean values true/false.
    Finishing the remaining renames from #31.
  • [8da06930] Remove use of TQ_FULL_TEMPLATE_INSTANTIATION and TQ_DUMMY_COMPARISON_OPERATOR. The #defines were used for some very old compilers which had issues with template instantiation. We are now using c++17 compilers, so this is unnecessary.

pytde

applications/development

kdbg

  • [41dd13e2] Merge translation files from master branch.
  • [6e7a6279] Merge translation files from master branch.
  • [47bf47c6] Merge translation files from master branch.
  • [8f128e2f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kdiff3

  • [fff20056] Merge translation files from master branch.
  • [c2840cbc] Merge translation files from master branch.
  • [2fc8f41a] Merge translation files from master branch.
  • [9cdb79f9] Merge translation files from master branch.
  • [e583ccb4] Remove use of TDE_VERSION
  • [6552b7d6] Merge translation files from master branch.
  • [4ab31970] Merge translation files from master branch.
  • [b93f3a97] Merge translation files from master branch.
  • [26e15218] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [59618e15] Merge translation files from master branch.

kpicosim

  • [1ac01f2d] Merge translation files from master branch.
  • [57176459] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kscope

  • [697d31a2] Merge translation files from master branch.
  • [d5e8a16d] Merge translation files from master branch.
  • [143ea9af] Remove use of KDE_IS_VERSION
  • [0c395b61] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

ktechlab

  • [4cf8db4b] Merge translation files from master branch.
  • [5ac25dda] Merge translation files from master branch.
  • [3612c698] Merge translation files from master branch.
  • [b12606a2] Update translation template.
  • [a5f3f470] Remove use of TDE_VERSION
  • [c478ee21] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kxmleditor

  • [dfa9df2a] Merge translation files from master branch.
  • [cf996d23] Merge translation files from master branch.
  • [260f989a] Merge translation files from master branch.
  • [14777ff8] Merge translation files from master branch.
  • [7707e64a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

piklab

  • [ead7ab89] Merge translation files from master branch.
  • [9960101c] Update translation template.
  • [b459ef57] Remove use of TDE_VERSION
  • [0b8c6ed1] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdesvn

  • [65d06a2d] Merge translation files from master branch.
  • [841649e7] Merge translation files from master branch.
  • [3a48800a] Merge translation files from master branch.
  • [a91592b3] Merge translation files from master branch.
  • [da09515d] Update translation template.
  • [79fb42b8] Remove use of TDE_VERSION
  • [3cb172f7] Merge translation files from master branch.
  • [08fc02a5] Update translation template.
  • [df3dadd3] Remove use of KDE_IS_VERSION
  • [72097abc] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdexsldbg

universal-indent-gui-tqt

  • [9da91d84] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/games

knights

  • [be0e03ed] Merge translation files from master branch.
  • [cafa49cd] Merge translation files from master branch.
  • [7e5abdda] Merge translation files from master branch.
  • [3d6e9e6f] Merge translation files from master branch.
  • [40f79bd6] Merge translation files from master branch.
  • [dbf85d94] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeknighttour

  • [28436685] Merge translation files from master branch.
  • [05f2de32] Merge translation files from master branch.
  • [f4a09f03] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdepacman

  • [6d124440] Merge translation files from master branch.
  • [d17df935] Merge translation files from master branch.
  • [6e2ee4e0] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/graphics

digikam

  • [5943e701] Merge translation files from master branch.
  • [901fe82f] Merge translation files from master branch.
  • [aa6d2452] Merge translation files from master branch.
  • [a379bee9] Merge translation files from master branch.
  • [c9e4c4ee] Merge translation files from master branch.
  • [23d1abcb] Merge translation files from master branch.
  • [14c957bf] Merge translation files from master branch.
  • [6cd40cbe] Merge translation files from master branch.
  • [ef930140] Update translation template.
  • [26775184] Remove use of KDE_IS_VERSION
  • [5a51f86a] Merge translation files from master branch.
  • [8858fb73] Merge translation files from master branch.
  • [0de70c52] Merge translation files from master branch.
  • [d77e1640] Merge translation files from master branch.
  • [71638fa5] Merge translation files from master branch.
  • [b6446632] Merge translation files from master branch.
  • [a7e87036] Merge translation files from master branch.
  • [b43dc1df] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [bea8d1b0] Merge translation files from master branch.
  • [0044a6cc] Merge translation files from master branch.
  • [83749b62] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [153e3ff4] Merge translation files from master branch.
  • [df5f028f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [79a4dd80] Merge translation files from master branch.

gwenview

  • [ce6cf914] Merge translation files from master branch.
  • [54ef7721] Merge translation files from master branch.
  • [74322761] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [5784f694] Merge translation files from master branch.

gwenview-i18n

  • [cbbd3140] Merge translation files from master branch.
  • [8a6e221d] Merge translation files from master branch.
  • [1e60dff4] Merge translation files from master branch.
  • [6b5e1cf8] Merge translation files from master branch.
  • [b9b1d6e8] Merge translation files from master branch.
  • [dbacdb69] Merge translation files from master branch.

ksquirrel

  • [4cd4bd43] Merge translation files from master branch.
  • [702098a1] Merge translation files from master branch.
  • [cd7458d4] Merge translation files from master branch.
  • [6ce2a608] Merge translation files from master branch.
  • [2714eb53] Merge translation files from master branch.
  • [17e77f24] Merge translation files from master branch.
  • [9211219a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

potracegui

  • [6561bf8a] Merge translation files from master branch.
  • [10b56353] Merge translation files from master branch.
  • [6a7d5320] Merge translation files from master branch.
  • [d43502fd] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/internet

kasablanca

  • [44655f2d] Merge translation files from master branch.
  • [47ebf995] Update translation template.
  • [51fbe344] Remove use of TDE_VERSION
  • [a5136fcd] Merge translation files from master branch.
  • [f4f5b2a9] Merge translation files from master branch.
  • [1c1f7e37] Merge translation files from master branch.
  • [ca5b3126] Merge translation files from master branch.
  • [3ee951f8] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kbiff

  • [846dd485] Merge translation files from master branch.
  • [c51b77b9] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [8c4f434d] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kftpgrabber

  • [77e878e4] Merge translation files from master branch.
  • [641eca10] Merge translation files from master branch.
  • [28e40771] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

knmap

  • [0a484743] Merge translation files from master branch.
  • [b5da9054] Merge translation files from master branch.
  • [017606ee] Merge translation files from master branch.
  • [c78b2a7d] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

konversation

  • [33557816] Merge translation files from master branch.
  • [a127cd41] Merge translation files from master branch.
  • [105312fd] Merge translation files from master branch.
  • [2c97a945] Merge translation files from master branch.
  • [d66d6b67] Merge translation files from master branch.
  • [57b34495] Update translation template.
  • [8adb8dd7] Remove use of KDE_IS_VERSION
  • [bfd12a6e] Merge translation files from master branch.
  • [5750e246] Merge translation files from master branch.
  • [7caf25b5] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [840eac78] Merge translation files from master branch.

kopete-otr

  • [cd0a8d0e] Merge translation files from master branch.
  • [0b1e922b] Merge translation files from master branch.
  • [6f9decc3] Merge translation files from master branch.
  • [253d0966] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kshowmail

  • [60fa081f] Merge translation files from master branch.
  • [f57e9039] Merge translation files from master branch.
  • [5a8b1033] Merge translation files from master branch.
  • [c15ba68a] Merge translation files from master branch.
  • [b1b8f324] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [3a6e0ef1] Merge translation files from master branch.
  • [7d383f28] Merge translation files from master branch.
  • [8dab987c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kstreamripper

  • [bdcaad32] Merge translation files from master branch.
  • [1127691b] Merge translation files from master branch.
  • [39fb73e8] Merge translation files from master branch.
  • [275132d4] Update translation template.
  • [47b2b239] Remove use of KDE_IS_VERSION
  • [5905416a] Merge translation files from master branch.
  • [d8519448] Merge translation files from master branch.
  • [f3fdf8c9] Merge translation files from master branch.
  • [dbb27676] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

ktorrent

  • [2b19233d] Merge translation files from master branch.
  • [1811ecf9] Merge translation files from master branch.
  • [dea0d8f1] Merge translation files from master branch.
  • [fefa0805] Merge translation files from master branch.
  • [3995bdd6] Update translation template.
  • [98474a27] Remove use of TDE_VERSION
  • [ba5ebb11] Merge translation files from master branch.
  • [14954b18] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kvirc

  • [0a464870] Fix FTBFS for CMake builds due to missing pthreads linking.
  • [269e03ea] Merge translation files from master branch.
  • [93d4a20b] Update translation template.
  • [cd74c8dc] Convert to cmake build system
  • [42e5f29d] Fix up broken translation that caused FTBFS with cmake
  • [8866c1c5] Merge translation files from master branch.
  • [21a059f7] Merge translation files from master branch.
  • [5f83ff49] Merge translation files from master branch.
  • [3737a897] Merge translation files from master branch.
  • [29b4a0d3] Merge translation files from master branch.
  • [7578ed03] Merge translation files from master branch.
  • [39a3e6f3] Update translation template.
  • [bff07890] Use direct dependency on libgsm instead of loading it at runtime if available
  • [809b7783] Remove use of TDE_VERSION
  • [bef42f00] Merge translation files from master branch.
  • [8fa64b7a] Merge translation files from master branch.
  • [793cb6a7] Merge translation files from master branch.
  • [c98b6b3e] Merge translation files from master branch.
  • [a85ffc66] Merge translation files from master branch.
  • [0101da94] Update translation template.
  • [dc40ab2b] Fix conversion of TQString to const char* (modules)
  • [3870c5a9] Some generic fixes required for future cmake conversion
  • [3e9f4360] Merge translation files from master branch.
  • [0a3b05d1] Merge translation files from master branch.
  • [e34806b3] Use Perl to find the files to analyze for the help documentation.
    All the .h and .cpp files needs to be processed for this. Some files are generated at build time and the coming cmake conversion can't use "file(GLOB)" to collect the lists of files since that command is execute at configure time, so before some files are generated.
  • [6cb19945] Merge translation files from master branch.
  • [21247f49] Remove files generated at build time from the sources
  • [213acc92] Include moc files directly from the related source files (modules)
  • [735f650d] Merge translation files from master branch.
  • [fa63639c] Update translation template.
  • [1e3b5da5] Fix conversion of TQString to const char*
  • [951c6ec3] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler. Also remove support for NonStop-UX due to similarities.
  • [c48a0670] Fix wrong parameter in KviTQString::sprintf call
  • [1b9ae362] Use correct license file name
  • [bc036f44] Split kvirc executable into a shared library (libkvirc) and a stub executable (kvirc).
    Autotool builds kvirc with '-export-dynamic', which exports all global symbols from the main executable to the dynamic symbol table. This allows 'modules' to access those symbols and build successfully.
    CMake build kvirc without '-export-dynamic' and with hidden symbol visibitily by default, resulting in FTBFS when the build process reaches the 'modules' part. This is caused by the modules referring to symbols define in code under the 'src/kvirc' folder
    Splitting 'kvirc' into an additional 'libkvirc' shared library plus a simple executable stub that creates the application and run it, allows modules to be linked against the library part and build successfully also with cmake.
  • [618646ad] Add visibility attributes to library functions
  • [56e00d83] Include moc files directly from the related source files
  • [c5b52e6f] Fix debug format strings
  • [aaf45cd2] Improvements suggested on PR #58
  • [5d4e298c] Merge translation files from master branch.
  • [270f8321] Update translation template.
  • [c240f5cf] Remove unused config defines
  • [e70fab76] Remove BUILD_FLAGS
  • [c86407a1] Remove VERSION_BRANCH and SS_DIRTAG
  • [e440b460] Fix invalid comparison warnings
  • [4372e8a0] Fix 'this if clause does not guard...' warnings
  • [35519f46] Fix 'ISO C++11 forbids converting a string constant to char*' warnings
  • [8b37d8ed] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [306c3db9] Remove code related to obsoleted thread libraries
  • [8190f109] Merge translation files from master branch.
  • [2988190d] Merge translation files from master branch.
  • [66ed1b1a] Remove kvirc-config
  • [ccfcc073] Install script examples files in the application data folder
  • [1d98349b] Move admin/gendoc.pl to data/gendoc/gendoc.pl.
    Once the cmake conversion is completed and the support for autotools is
    dropped, the admin folder will no longer exist but "gendoc.pl" is still
    required to generate the help documentation.
  • [66e85ce8] Remove object prelink logic
  • [d6f8126d] Remove unused files from admin subfolder
  • [4c0771a2] Remove internal copy of libtool, which is not used
  • [7620c9ef] Removed unused files. These are neither used not installed
  • [d135fc9d] Fix installation location of 128x128 icons
  • [881b11c6] Move data/man folder to doc/man
  • [6e01199d] Move scripts folder to src/scripts
  • [317d00a6] Removed source code tree from the hacker guide file. The real code is the best source of info for the structure
  • [a52e8d4c] Move data/helppics folder to pics/helppics
  • [b1c28057] Move data/pics folder to top level
  • [3ac9a1f2] Move data/icons folder to top level
  • [59b32c78] Do not enforce strict c++17 if default is >= c++17
  • [05476463] Raised required C++ standard to c++17
  • [2156776a] Add TDE_CXX_COMPILE_STDCXX macro to check and enforce C++ standard.
    The macro is a simplified form of AX_CXX_COMPILE_STDCXX from autoconf.
    To verify the C++ standard supported by the compiler, only the value
    of the __cplusplus constant defined by the compiler is checked,
    instead of testing examples of using individual C++ features.
  • [8fcbc58d] Fix compatibility of recent patch with r14.1.x branch.
  • [60ca2d22] Merge translation files from master branch.
  • [eeb340a5] Update translation template.
  • [5f1a9bb8] Remove temp file mistakenly added 2 commits earlier
  • [3e56235b] Look for translation .mo files in the new location
  • [e482426d] Move .mo files to standard TDE location
  • [c171523a] Fix TQString formatting in 'KviTQString::sprintf'.
    This was causing translation catalouges not to be found and eventually the program to always display in English.
    The problem was introduced by an automated Q --> TQ renaming done sometime in the past. 'KviTQString::sprintf' uses '%Q' as a marker for a TQString* argument, so using '%TQ' was resulting in garbage bytes being fed and the catalouges not being found.
    This resolves issue #44
  • [2923d53a] Merge translation files from master branch.
  • [25eb03c5] Update translation template.
  • [241a6236] Move config.h.in to main folder, similar to other TDE applications
  • [78397cd6] Remove src/kvi_configstatus.h, which is generated at build time
  • [94579539] Remove KVI_VERSION_BRANCH since the version number is no longer used in the application path
  • [13156e31] Remove warning about 'template-id not allowed for constructor in C++20'
  • [e25fb598] Remove build date code. The info does not add anything useful and make reproducible builds not possible
  • [840d450a] Do not add creator and date to generated help files. Those info do not add anything useful and make reproducible builds not possible
  • [e3462d9b] Move application files to the more standard location /opt/trinity/share/apps/kvirc.
  • [7670c9e2] Move kvirc.desktop from 'applnk' to 'applications/tde' folder and update
    its internal structure.
  • [9695287f] Remove kvirc version number from module files installation location.
    In TDE there is a single version of kvirc, so there is no need to have
    separate locations for multiple versions.
  • [beee507b] Remove kvirc version number from header files installation location. New location is 'opt/trinity/include/kvirc'
  • [56f5e15c] Merge translation files from master branch.
  • [c112dbdb] Removed original translations 'po' folder
  • [9a6af574] Clean up unnecessary code in translations's makefiles
  • [93435925] Move translations to new folder and new structure.
  • [383ec033] Merge translation files from master branch.

kvpnc

  • [6309808e] Merge translation files from master branch.
  • [88d2598a] Merge translation files from master branch.
  • [7d469018] Merge translation files from master branch.
  • [2e5cc63a] Merge translation files from master branch.
  • [0837d130] Merge translation files from master branch.
  • [9513962a] Merge translation files from master branch.
  • [62c320b1] Merge translation files from master branch.
  • [b555b77b] Merge translation files from master branch.
  • [0fb4fc62] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

smb4k

  • [ae43b016] Merge translation files from master branch.
  • [f089a5d8] Merge translation files from master branch.
  • [c477de45] Merge translation files from master branch.
  • [7374a4c5] Update translation template.
  • [4b8a46b8] Remove use of TDE_VERSION
  • [7daeb2ec] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [c592aced] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tork

  • [3cd1a18e] Merge translation files from master branch.
  • [10b609f6] Merge translation files from master branch.
  • [d9defb35] Merge translation files from master branch.
  • [ce62ea1f] Merge translation files from master branch.
  • [5395e220] Merge translation files from master branch.
  • [507aee62] Merge translation files from master branch.
  • [b1bd0ee7] Merge translation files from master branch.
  • [8c3d52ef] Merge translation files from master branch.
  • [53a5127c] Update translation template.
  • [9f82f1df] Remove use of TDE_VERSION
  • [4aaec4f6] Replace TRUE/FALSE with boolean values true/false
  • [a661e44f] Merge translation files from master branch.
  • [41bac9c1] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/misc

bibletime

  • [54ec44eb] Merge translation files from master branch.
  • [7e887252] Merge translation files from master branch.
  • [bd835d3c] Merge translation files from master branch.
  • [3aa12fc5] Merge translation files from master branch.
  • [f997b387] Merge translation files from master branch.
  • [ff9d99c6] Update translation template.
  • [639cfebf] Remove use of TDE_VERSION
  • [03538cf2] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

compizconfig-backend-tdeconfig

  • [b1decc69] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

desktop-effects-tde

  • [9ca7725c] Merge translation files from master branch.
  • [537543cc] Merge translation files from master branch.
  • [bb2f0978] Merge translation files from master branch.
  • [a188a8d7] Merge translation files from master branch.

kcmldap

  • [ffd212f3] Merge translation files from master branch.
  • [c34954d0] Merge translation files from master branch.
  • [1cf43bb5] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kcmldapcontroller

  • [1e95557d] Merge translation files from master branch.
  • [f1eeb42a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kcmldapmanager

  • [fa7bcfd3] Merge translation files from master branch.
  • [e771d401] Merge translation files from master branch.
  • [be0c62f2] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kerberostray

  • [ec5f078f] Merge translation files from master branch.
  • [9b7d979a] Merge translation files from master branch.
  • [1faa300c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

krecipes

  • [09adcb3a] Merge translation files from master branch.
  • [312de51f] Merge translation files from master branch.
  • [768e438d] Merge translation files from master branch.
  • [e1396b77] Merge translation files from master branch.
  • [69527e9c] Update translation template.
  • [2d7d66fd] Remove use of TDE_VERSION
  • [0da0b5b4] Remove use of KDE_IS_VERSION
  • [17811c2b] Merge translation files from master branch.
  • [c58ed77c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/multimedia

amarok

  • [caefdf77] Merge translation files from master branch.
  • [5f1e71ed] Merge translation files from master branch.
  • [d46f7fa2] Merge translation files from master branch.
  • [38ec8682] Merge translation files from master branch.
  • [f1f3f5b1] Merge translation files from master branch.
  • [ef6e1141] Update translation template.
  • [5d6e8d4e] Remove use of TDE_VERSION
  • [55a5de65] Merge translation files from master branch.
  • [e15b0f54] Update translation template.
  • [f7325540] Remove use of KDE_IS_VERSION
  • [8dc39e95] Merge translation files from master branch.
  • [9bcb0ae5] Purge remnants of libmp4 support
    The support for libmp4 was already removed in 460320e5. This commit
    purges remnants left behind. Most notably the checks in
    ConfigureChecks.cmake and dependencies in INSTALL.
  • [8e4183e5] Merge translation files from master branch.
  • [aebbec4d] Merge translation files from master branch.
  • [49d035ba] Merge translation files from master branch.
  • [4a6e5eb2] Merge translation files from master branch.
  • [b1e044f9] Merge translation files from master branch.
  • [4c875791] Merge translation files from master branch.
  • [37a21910] Merge translation files from master branch.
  • [e7343a27] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [4019bf80] Merge translation files from master branch.
  • [da4cac29] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [10ac3a7e] Merge translation files from master branch.
  • [64857198] Merge translation files from master branch.
  • [98d00ba8] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [fc599a27] Merge translation files from master branch.
  • [57840835] Merge translation files from master branch.
  • [84ffbe2d] Merge translation files from master branch.
  • [ab704bd6] Merge translation files from master branch.

codeine

  • [86a0f310] Merge translation files from master branch.
  • [025ef807] Merge translation files from master branch.
  • [27e96522] Merge translation files from master branch.
  • [8e1a6379] Merge translation files from master branch.
  • [7c02e960] Merge translation files from master branch.
  • [9db461b3] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [d61c4175] Merge translation files from master branch.

k3b

  • [1e8676de] Merge translation files from master branch.
  • [965ef7cd] Remove use of KDE_IS_VERSION
  • [7a9c6b0f] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [2bdfa8fb] Merge translation files from master branch.
  • [f6d18a4d] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [65279ba5] Merge translation files from master branch.
  • [b4296938] Merge translation files from master branch.

k3b-i18n

  • [45cd37ad] Merge translation files from master branch.
  • [b51f2b09] Merge translation files from master branch.
  • [d5fed385] Merge translation files from master branch.
  • [d2887d5d] Merge translation files from master branch.
  • [25a1943f] Merge translation files from master branch.
  • [5e1c6ef6] Update translation template.
  • [72f7bee1] Merge translation files from master branch.
  • [23cbfd63] Merge translation files from master branch.
  • [c8a2e03b] Merge translation files from master branch.
  • [541efa94] Merge translation files from master branch.
  • [12b84c85] Merge translation files from master branch.
  • [9fff81e9] Merge translation files from master branch.
  • [fb9ef4a5] Merge translation files from master branch.
  • [9aab3a6e] Merge translation files from master branch.
  • [ab0ae98e] Merge translation files from master branch.

k9copy

  • [c224e08d] Merge translation files from master branch.
  • [8c2595a2] Merge translation files from master branch.
  • [cd7aeac5] Merge translation files from master branch.
  • [b4286f1d] Update translation template.
  • [154daa68] Remove use of TDE_VERSION
  • [e1ba5a89] Merge translation files from master branch.
  • [d0fa7c19] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [31bd9407] Merge translation files from master branch.

kaffeine

  • [e2bd8d19] Merge translation files from master branch.
  • [4b8361fd] Merge translation files from master branch.
  • [6b292e17] Update translation template.
  • [6b0cf400] Remove use of TDE_VERSION
  • [e107f6e3] Merge translation files from master branch.
  • [baca94fb] Update translation template.
  • [847abaf4] Remove use of KDE_IS_VERSION
  • [cf227ea3] Merge translation files from master branch.
  • [337360f4] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [06f9177f] Merge translation files from master branch.
  • [44b5b769] Merge translation files from master branch.

kmplayer

  • [91053a0e] Merge translation files from master branch.
  • [c6d27e52] Merge translation files from master branch.
  • [ad65aa02] Update translation template.
  • [e9c5a6ce] Remove use of KDE_IS_VERSION
  • [920317f1] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [f65a58e4] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [632df952] Add support for LoongArch 64 bits little-endian.
  • [af555eb6] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kplayer

  • [992ed265] Merge translation files from master branch.
  • [bbdd66b4] Merge translation files from master branch.
  • [dbd7a919] Merge translation files from master branch.
  • [071bff23] Merge translation files from master branch.
  • [16dc4847] Merge translation files from master branch.
  • [287fbde4] Merge translation files from master branch.
  • [f321b63d] Merge translation files from master branch.
  • [4255f9c9] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

mplayerthumbs

  • [896c62c0] Merge translation files from master branch.
  • [a2f8009b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

rosegarden

  • [3bd41b65] Merge translation files from master branch.
  • [c5c6dc2f] Merge translation files from master branch.
  • [01ee3bc0] Merge translation files from master branch.
  • [d829b9c9] Merge translation files from master branch.
  • [a8b1d682] Merge translation files from master branch.
  • [d0e3845e] Remove use of TDE_VERSION
  • [3ba1be16] Merge translation files from master branch.
  • [d119528f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

soundkonverter

  • [73c3cc4c] Merge translation files from master branch.
  • [977c6318] Merge translation files from master branch.
  • [6e03d822] Merge translation files from master branch.
  • [a39ae541] Merge translation files from master branch.
  • [691ae1c1] Update translation template.
  • [2cc16f1d] Calculate UI colors to mark items in lists
    Before that to mark currently processing/queued files predefined colors
    were used. This were creating problems especially in darker with
    schemas where white next was basically unreadable. Instead of using a
    predefined color it now shifts the default color towards red/yellow.
    Note: this solution ignores edge case of purely yellow/red backgrounds.
    Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/soundkonverter/issues/34
  • [b96c1f9e] Merge translation files from master branch.
  • [4f698c59] Update translation template.
  • [c6401011] Update the bug report address in about data
  • [4710cd3e] Merge translation files from master branch.
  • [e380e2f6] Update translation template.
  • [bdafcc62] Minor refactoring in paranoia.{h,cpp}
    * Move private includes to implemantation
    * fixup idents
  • [09e3d503] Fix build with tqt in a nonstandard location
    Otherwise the build were failing with:
    ld: cannot find -ltqt-mt: No such file or directory
    -ltqt-mt origins from DCOP-shared.
  • [af4e0c52] Merge translation files from master branch.
  • [49780d4c] Merge translation files from master branch.
  • [78c6e00e] Merge translation files from master branch.
  • [fd44efc9] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tderadio

  • [0caad5f2] Merge translation files from master branch.
  • [fb14747a] Merge translation files from master branch.
  • [caaeeece] Merge translation files from master branch.
  • [44d2d692] Update translation template.
  • [e48e6b71] Remove use of TDE_VERSION
  • [73c908c9] Merge translation files from master branch.
  • [e19f0714] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/office

basket

  • [270bd948] Merge translation files from master branch.
  • [b3e12074] Merge translation files from master branch.
  • [ec08cff6] Merge translation files from master branch.
  • [04d401b2] Update translation template.
  • [be83e0f2] Remove use of TDE_VERSION
  • [e5ed35f1] Merge translation files from master branch.
  • [a739d301] Update translation template.
  • [fde3c9c4] Remove use of KDE_IS_VERSION
  • [77f1c5c5] Merge translation files from master branch.
  • [cf649271] Merge translation files from master branch.
  • [d798bf0f] Merge translation files from master branch.
  • [7d862069] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [944608d3] Merge translation files from master branch.

kbibtex

  • [35649ef9] Merge translation files from master branch.
  • [5fe7a5f3] Merge translation files from master branch.
  • [235d1907] Merge translation files from master branch.
  • [99b067da] Merge translation files from master branch.
  • [4de18cff] Update translation template.
  • [05ff2eae] Remove use of TDE_VERSION
  • [56a55011] Merge translation files from master branch.
  • [079d0c29] Update translation template.
  • [a6cbfe69] Remove use of KDE_IS_VERSION
  • [9d5198ff] Merge translation files from master branch.
  • [36708319] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kbookreader

  • [2a1090b1] Merge translation files from master branch.
  • [0bde9a42] Merge translation files from master branch.
  • [91304390] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

keximdb

  • [9dae86c9] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kile

  • [39200078] Merge translation files from master branch.
  • [a5369a69] Merge translation files from master branch.
  • [5c29f974] Merge translation files from master branch.
  • [0a32f7d7] Merge translation files from master branch.
  • [e725f438] Merge translation files from master branch.
  • [5d581265] Merge translation files from master branch.
  • [4fcf7d5e] Update translation template.
  • [cc165730] Remove use of TDE_VERSION
  • [c0871091] Merge translation files from master branch.
  • [64fc3e25] Merge translation files from master branch.
  • [6ae76689] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kmymoney

  • [b0c63a51] Merge translation files from master branch.
  • [271cf52d] Merge translation files from master branch.
  • [513c5bd6] Merge translation files from master branch.
  • [9ac922c7] Update translation template.
  • [1e724aa2] Remove use of TDE_VERSION
  • [ae2d2434] Merge translation files from master branch.
  • [1cec4910] Update translation template.
  • [dd005bc3] Remove use of KDE_IS_VERSION
  • [c40f1034] Merge translation files from master branch.
  • [2fe844af] Merge translation files from master branch.
  • [01019bff] Merge translation files from master branch.
  • [62a25b14] Merge translation files from master branch.
  • [52aa61e9] Ensure build order of generated sources for designer plugin.
    This will prevent FTBFS when building in parallel.
  • [34467765] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [12ccffc7] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [415291e4] Merge translation files from master branch.

knowit

  • [c8f3dc08] Merge translation files from master branch.
  • [1788e12b] Merge translation files from master branch.
  • [da928155] Update translation template.
  • [d106808d] Remove use of TDE_VERSION
  • [6164775d] Merge translation files from master branch.
  • [31dc6d4d] Merge translation files from master branch.
  • [9158b17b] Update translation template.
  • [19073219] Remove use of KDE_IS_VERSION
  • [e7d2ae74] Merge translation files from master branch.
  • [3d8ca47c] Merge translation files from master branch.
  • [20d4f9b4] Fix "Current with children" export option
    Before that "Export to HTML -> Exported notes -> Current with children"
    were exporting current note with its children and all following notes.
  • [5a071aba] Merge translation files from master branch.
  • [37cecc47] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

koffice

  • [a58aa6da] Remove use of TDE_VERSION
  • [35dbebe6] Remove use of KDE_IS_VERSION
  • [ba51f1da] Remove old compatibility files no longer required with modern TDE
  • [b61243ea] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [db280502] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [cdc02d49] Replace TRUE/FALSE with boolean values true/false.
    Finishing the remaining renames from #93.
  • [d64b5dd9] changes kde icons to trinty ones

koffice-i18n

  • [ad5cba23] Merge translation files from master branch.
  • [a54c53c0] Merge translation files from master branch.
  • [6789e3a0] Merge translation files from master branch.
  • [e7ea6b2c] Update translation template.
  • [5019ca60] Merge translation files from master branch.
  • [adc0e11f] Merge translation files from master branch.
  • [22835390] Merge translation files from master branch.
  • [7332c548] Update translation template.
  • [0661332b] Merge translation files from master branch.
  • [9c4b1b85] Merge translation files from master branch.
  • [d9ef3aea] Merge translation files from master branch.
  • [ab2915a4] Merge translation files from master branch.
  • [c30bd60d] Merge translation files from master branch.
  • [8069354c] Merge translation files from master branch.
  • [4fdc9c3b] Merge translation files from master branch.
  • [755ff4e9] Merge translation files from master branch.
  • [c2d73211] Merge translation files from master branch.
  • [f60792f4] Merge translation files from master branch.
  • [2c1e26b2] Merge translation files from master branch.
  • [46788088] Update translation template.

kpilot

  • [af9bcf5c] Merge translation files from master branch.
  • [e718c2de] Merge translation files from master branch.
  • [6afbceaf] Update translation template.
  • [65392de7] Remove use of TDE_VERSION
  • [7154e076] Merge translation files from master branch.
  • [6b7509a8] Update translation template.
  • [3ee759a4] Remove use of KDE_IS_VERSION
  • [49cb4c36] Merge translation files from master branch.
  • [d2416862] Merge translation files from master branch.
  • [e07d3064] Merge translation files from master branch.
  • [6e885743] Replace TRUE/FALSE with boolean values true/false.
    Part specific to the stable branch.
  • [3dfa98f5] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-ebook-reader

  • [befdb8d5] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tellico

  • [1f504f74] Merge translation files from master branch.
  • [e88549ae] Merge translation files from master branch.
  • [e9f1da85] Merge translation files from master branch.
  • [3b989f7f] Merge translation files from master branch.
  • [08e52a10] Merge translation files from master branch.
  • [b1b379d5] Update translation template.
  • [f7513397] Remove use of KDE_IS_VERSION
  • [c6bda851] Merge translation files from master branch.
  • [b9061746] Merge translation files from master branch.
  • [50a49416] Drop support for Watcom compiler, which is not c++17 compliant
  • [1612a9b3] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/settings

kdpkg

  • [b71ee2bd] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kima

  • [cec33243] Merge translation files from master branch.
  • [fe088761] Merge translation files from master branch.
  • [27d219dc] Merge translation files from master branch.
  • [01bf50b1] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kiosktool

  • [db437263] Merge translation files from master branch.
  • [c1791c54] Update translation template.
  • [4e587ae8] Remove use of TDE_VERSION
  • [9e6acfb2] Merge translation files from master branch.
  • [849967ee] Merge translation files from master branch.
  • [de12f0c1] Update translation template.
  • [adc1a6e4] Remove use of KDE_IS_VERSION
  • [1dac2342] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kkbswitch

  • [75de41c6] Merge translation files from master branch.
  • [8b2126d2] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

klcddimmer

  • [73d0c560] Merge translation files from master branch.
  • [a12096b7] Merge translation files from master branch.
  • [8fda6c49] Merge translation files from master branch.
  • [63090aad] Merge translation files from master branch.
  • [64ba065e] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kmyfirewall

  • [05357b70] Merge translation files from master branch.
  • [99ebef19] Merge translation files from master branch.
  • [d925908e] Merge translation files from master branch.
  • [330e0f35] Merge translation files from master branch.
  • [7a6a56d5] Merge translation files from master branch.
  • [f4374094] Merge translation files from master branch.
  • [fb2cb6ce] Merge translation files from master branch.
  • [9735c9d7] Merge translation files from master branch.
  • [8453be0e] Merge translation files from master branch.
  • [0edb8174] Merge translation files from master branch.
  • [dca04d24] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-guidance

  • [65aef819] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-systemsettings

  • [c300fa47] Merge translation files from master branch.
  • [86488216] Merge translation files from master branch.
  • [cb21c067] Merge translation files from master branch.
  • [c93515bc] Merge translation files from master branch.
  • [16a73a24] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdealternatives

  • [f0d3056b] Merge translation files from master branch.
  • [a4cdeca3] Merge translation files from master branch.
  • [ec667fd5] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdenetworkmanager

  • [e1ff6d8c] Merge translation files from master branch.
  • [0da645ad] Merge translation files from master branch.
  • [20b64596] Merge translation files from master branch.
  • [b9a9dce1] Merge translation files from master branch.
  • [15ff6a69] Merge translation files from master branch.
  • [0f4e7ce1] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdesudo

  • [23506e05] Merge translation files from master branch.
  • [35bd09d8] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

wlassistant

  • [b0f2aae2] Merge translation files from master branch.
  • [af5f60ff] Merge translation files from master branch.
  • [a7a9a7d8] Merge translation files from master branch.
  • [6e80a602] Remove use of KDE_IS_VERSION
  • [c479a9cb] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/system

dolphin

  • [c7f762ce] Merge translation files from master branch.
  • [d7fbcea7] Merge translation files from master branch.
  • [b3164fd5] Merge translation files from master branch.
  • [07ad76d0] Merge translation files from master branch.
  • [f19a038b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [8bfafb43] Merge translation files from master branch.
  • [ac13c18e] Merge translation files from master branch.
  • [2fc20b0a] Merge translation files from master branch.
  • [152d79c4] Merge translation files from master branch.

katapult

  • [07b1a630] Merge translation files from master branch.
  • [c0396874] Merge translation files from master branch.
  • [f624d9b1] Update translation template.
  • [3872085c] Remove use of KDE_IS_VERSION
  • [edbeb9d3] Merge translation files from master branch.
  • [66952c1f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kbfx

  • [f661d65b] Merge translation files from master branch.
  • [a0b1e7b3] Merge translation files from master branch.
  • [f3555fde] Merge translation files from master branch.
  • [79d6f8cc] Merge translation files from master branch.
  • [c051610e] Merge translation files from master branch.
  • [e79123d2] Merge translation files from master branch.
  • [feda08c7] Merge translation files from master branch.
  • [40ddd8d8] Merge translation files from master branch.
  • [3b1e2e87] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kcmautostart

  • [2780ff42] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kdbusnotification

  • [1f7f6ba3] Merge translation files from master branch.
  • [f34720e5] Merge translation files from master branch.
  • [a8d41a2b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

klamav

  • [8f0831be] Merge translation files from master branch.
  • [b9da3cf9] Merge translation files from master branch.
  • [4ab64137] Merge translation files from master branch.
  • [4dae5fd7] Merge translation files from master branch.
  • [30fb2c24] Merge translation files from master branch.
  • [5e230770] Merge translation files from master branch.
  • [6e024a08] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [e5898f88] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

knemo

  • [3ea05b35] Merge translation files from master branch.
  • [dd7adaf3] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

knetload

  • [8734f404] Merge translation files from master branch.
  • [c38f7156] Merge translation files from master branch.
  • [b32a5bfd] Merge translation files from master branch.
  • [dc7f8723] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

knetstats

  • [87d8fa66] Merge translation files from master branch.
  • [1c5043a2] Merge translation files from master branch.
  • [0f5de8d7] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kooldock

  • [97e91d2b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [c333f7f5] changes kde logos in the kooldock icon into trinty ones

krusader

  • [518ef8bd] Remove use of TDE_VERSION
  • [feadd637] Remove use of KDE_IS_VERSION
  • [20d1ea84] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler. Also remove support for NonStop-UX due to similarities.
  • [097bc036] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [c29ac1ae] Remove tdeio_tar since it is already provided by tdebase.
    Krusader's tdeio_tar contains a couple of extra functions compared to
    tdebase's tdeio_tar, but they do not work at all.
  • [6f420523] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [1fdb7956] Remove tdeio_iso since it is already provided by tdelibs
  • [53acf5bb] Allow ACL detection without pkgconfig file.
    Allow building with POSIX ACL without a separate ACL library.
    This solves firstly building on older distributions where there is no
    pkgconfig file, but there is an acl library supporting extended ACL,
    and secondly it solves building on systems where POSIX ACLs are part
    of the standard library and a separate acl library is not present.
  • [5867a352] Switch to cmake build system
  • [1fba582e] Add missing moc file inclusion
  • [d43fc369] Don't use old TQt compatibility code and remove RELEASE_NAME support

kshutdown

  • [f576e0da] Merge translation files from master branch.
  • [4a0f7111] Merge translation files from master branch.
  • [fa042349] Merge translation files from master branch.
  • [541aa948] Merge translation files from master branch.
  • [9c7b8ae5] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

ksystemlog

  • [463ecd25] Merge translation files from master branch.
  • [bb651e0a] Merge translation files from master branch.
  • [c4434b72] Update translation template.
  • [a2e7c98c] Remove use of TDE_VERSION
  • [f2cb7d62] Merge translation files from master branch.
  • [8bfc251d] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kvkbd

  • [bd50d5ca] Merge translation files from master branch.
  • [e7a10fa9] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

polkit-agent-tde

  • [2ec8eb2f] Merge translation files from master branch.
  • [9eb4d7cd] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

smartcardauth

  • [06c4c1d8] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tastymenu

  • [07b5b9d2] Merge translation files from master branch.
  • [82fc3a34] Merge translation files from master branch.
  • [64366a19] Update translation template.
  • [702d3c35] Remove use of TDE_VERSION
  • [78a98ddc] Merge translation files from master branch.
  • [b261a397] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdebluez

  • [1fe51495] Merge translation files from master branch.
  • [3e869a76] Merge translation files from master branch.
  • [661e0cf5] Merge translation files from master branch.
  • [f3d5c7bf] Merge translation files from master branch.
  • [53c7de16] Merge translation files from master branch.
  • [d594dd7b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdedocker

  • [141aeaf1] Merge translation files from master branch.
  • [20858df4] Merge translation files from master branch.
  • [0279fbc1] Merge translation files from master branch.
  • [e41b9069] Merge translation files from master branch.
  • [e5847027] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdepowersave

  • [263fdf10] Merge translation files from master branch.
  • [0b5a2d9d] Merge translation files from master branch.
  • [e3777878] Merge translation files from master branch.
  • [bec9a955] Merge translation files from master branch.
  • [e970298b] Merge translation files from master branch.
  • [c78d990b] Merge translation files from master branch.
  • [c6f2bb71] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [765c9283] updates cr22-action-button.png to recent version

tdesshaskpass

  • [bb0e28a7] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

xdg-desktop-portal-tde

  • [21f2d97a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

yakuake

  • [67926cb8] Merge translation files from master branch.
  • [c0c7eda3] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [fa0a57c9] Merge translation files from master branch.

applications/tdeio

tdeio-appinfo

  • [c994a58c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeio-apt

  • [9e351c8e] Merge translation files from master branch.
  • [f4f3c200] Merge translation files from master branch.
  • [33c7e146] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeio-ftps

  • [0ecfca99] Merge translation files from master branch.
  • [31f51215] Merge translation files from master branch.
  • [b6f6d50c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeio-gopher

  • [cb6d798c] Merge translation files from master branch.
  • [afda2632] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [5c592bb1] Merge translation files from master branch.

tdeio-locate

  • [3b86ac5f] Merge translation files from master branch.
  • [2c0e54d5] Update translation template.
  • [6abcc132] Add word wrap to a label
    Explicitly enable word wrapping for the label in the config dialog.
    Otherwise the line stretched the dialog too wide especially in some
    translations.
  • [8861bea6] Merge translation files from master branch.
  • [a1e60cf3] Merge translation files from master branch.
  • [ad86aa92] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeio-sword

  • [0b51c4cb] Merge translation files from master branch.
  • [4cdd9b93] Merge translation files from master branch.
  • [21b712df] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdeio-umountwrapper

  • [ae8e6c18] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/themes

gtk-qt-engine

  • [19a59de8] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

gtk3-tqt-engine

  • [6680143d] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kgtk-qt3

  • [b8704aa6] Merge translation files from master branch.
  • [776dcd38] Update translation template.
  • [1684c112] Remove use of KDE_IS_VERSION
  • [c41f023a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

ksplash-engine-moodin

  • [9280100a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-style-baghira

  • [ea1737d4] Merge translation files from master branch.
  • [4d10cc74] Merge translation files from master branch.
  • [82cc437d] Update translation template.
  • [17573f75] Remove use of TDE_VERSION
  • [38a1e9c5] Merge translation files from master branch.
  • [0b144588] Merge translation files from master branch.
  • [428ce0d8] Merge translation files from master branch.
  • [d4e9ef2f] Merge translation files from master branch.
  • [5f3a57e3] Merge translation files from master branch.
  • [44b12232] Merge translation files from master branch.
  • [84ec73be] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-style-domino

  • [e3e9087c] Merge translation files from master branch.
  • [f1d9a9d7] Remove use of TDE_VERSION
  • [bbd41a84] Merge translation files from master branch.
  • [95969db3] Merge translation files from master branch.
  • [ab541e6b] Merge translation files from master branch.
  • [c3c639c9] Merge translation files from master branch.
  • [4d60bcfe] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-style-ia-ora

  • [a96ecf8f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-style-lipstik

  • [c9dffbdf] Merge translation files from master branch.
  • [bdd78441] Merge translation files from master branch.
  • [3960b0c5] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-style-polyester

  • [a92c8cd1] Merge translation files from master branch.
  • [6caaa6ab] Update translation template.
  • [b8a98fca] Remove use of TDE_VERSION
  • [12e70834] Merge translation files from master branch.
  • [a6e251b4] Remove use of KDE_IS_VERSION
  • [f22ff0d3] Merge translation files from master branch.
  • [81e48913] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tde-style-qtcurve

  • [0f143191] Remove use of TDE_VERSION
  • [be8d56a9] Merge translation files from master branch.
  • [e0882666] Merge translation files from master branch.
  • [3301322b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

tdmtheme

  • [14ba328f] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [7aba47c9] Rename KDE_BINDIR to TDE_BINDIR

twin-style-crystal

  • [ca9ba3fb] Merge translation files from master branch.
  • [123adc23] Merge translation files from master branch.
  • [70e5c9a1] Merge translation files from master branch.
  • [84a6f958] Update translation template.
  • [8b727af4] Remove use of KDE_IS_VERSION
  • [37f37b8a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

twin-style-dekorator

  • [9178e834] Merge translation files from master branch.
  • [da6a0ae4] Merge translation files from master branch.
  • [170cc5f0] Remove use of KDE_IS_VERSION
  • [2f5a393e] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

twin-style-fahrenheit

  • [e30e0e96] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

twin-style-machbunt

  • [844d24ab] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

twin-style-mallory

  • [4751fd07] Merge translation files from master branch.
  • [112165a7] Merge translation files from master branch.
  • [5cb117a4] Merge translation files from master branch.
  • [fa846f5a] Merge translation files from master branch.
  • [f3c93def] Merge translation files from master branch.
  • [30187362] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

twin-style-suse2

  • [36bae8dc] Merge translation files from master branch.
  • [f1aff990] Merge translation files from master branch.
  • [ea44785b] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

applications/utilities

abakus

  • [30c667d2] Merge translation files from master branch.
  • [a7b2c335] Update translation template.
  • [82bda828] Remove use of KDE_IS_VERSION
  • [175d6ce3] Merge translation files from master branch.
  • [86158a1f] Merge translation files from master branch.
  • [53e188a4] Merge translation files from master branch.
  • [eefd6488] Merge translation files from master branch.
  • [26c047bf] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

filelight

  • [e5c7a74b] Merge translation files from master branch.
  • [e06cc3f9] Merge translation files from master branch.
  • [9dc16a9b] Merge translation files from master branch.
  • [86919eb6] Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
  • [7e66117e] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'
  • [25241f43] Merge translation files from master branch.

kbarcode

  • [7b929422] Merge translation files from master branch.
  • [094715e5] Merge translation files from master branch.
  • [9cedf0b9] Merge translation files from master branch.
  • [9c961d71] Remove use of KDE_IS_VERSION
  • [78d9aa72] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kchmviewer

  • [8691b999] Merge translation files from master branch.
  • [d3218972] Merge translation files from master branch.
  • [fbffe9fe] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.
  • [a245be1a] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kcpuload

  • [abcb5de5] Merge translation files from master branch.
  • [1a4d3f0c] Merge translation files from master branch.
  • [c7e66a02] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kdirstat

  • [26d709a7] Merge translation files from master branch.
  • [25dcbe45] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

keep

  • [d1e26b5e] Merge translation files from master branch.
  • [f1f45d73] Merge translation files from master branch.
  • [9f36fa0c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

knutclient

  • [f66d496b] Merge translation files from master branch.
  • [914caab0] Merge translation files from master branch.
  • [fe465105] Update translation template.
  • [ee8e6038] Remove use of TDE_VERSION
  • [a6e73fc7] Merge translation files from master branch.
  • [897cdbb1] Merge translation files from master branch.
  • [232a239e] Merge translation files from master branch.
  • [0f954273] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kommando

  • [df9af39a] Merge translation files from master branch.
  • [9ac8aaf5] Merge translation files from master branch.
  • [2c808e48] Merge translation files from master branch.
  • [c2993ab2] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

kompose

  • [be2a0894] Merge translation files from master branch.
  • [be3fc93e] Merge translation files from master branch.
  • [20a589bc] Merge translation files from master branch.
  • [bde51fa3] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

krename

  • [2a2bcb29] Merge translation files from master branch.
  • [c09d86bf] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

ksensors

  • [c209a544] Merge translation files from master branch.
  • [d683485e] Merge translation files from master branch.
  • [7e137100] Merge translation files from master branch.
  • [9b47f273] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

mathemagics

  • [66a9e209] Merge translation files from master branch.
  • [bcb9badf] Merge translation files from master branch.
  • [e5db995c] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

qalculate-tde

  • [8296842b] Merge translation files from master branch.
  • [082844ea] Update translation template.
  • [25c63c12] Remove use of TDE_VERSION
  • [c4b669bc] Merge translation files from master branch.
  • [2b337991] Rename 'tde_setup_architecture_flags' to a more appropriate 'tde_setup_compiler_flags'

packaging

packaging

  • [70766fac] ArchLinux: Update for final R14.1.6.
    + Added Interlingua build for tde-i18n.
    + Added packages for libgadu.
    + Removed backported patches.
    + Fixed TQt plugin path detection in tdebase.
    + Removed unnecessary patch for xsession in tdebase.
    + Systemd unit for TDM used from tdebase.
    + Switch krusader to CMake.
  • [96394cea] FreeBSD: Update for final R14.1.6.
    + Added Interlingua build for tde-i18n.
    + Added workaround for auto-ptr in bibletime.
    + Added workaround for 'private' keyword in cdparanoia for tdemultimedia and soundkonverter.
    + Added workaround for 'register' keyword in lcms for digikam.
    + Re-enabled building with cdparanonia in tdemultimedia.
    + Re-enabled building of soundkonverter.
    + Switch krusader to CMake.
  • [3851e635] DEB redmond-default-settings-ii: Use tde-cdbs instead of the original cdbs class.
  • [20ec69fe] DEB redmond-default-settings: Use tde-cdbs instead of the original cdbs class.
  • [adae851e] DEB kubuntu-default-settings: Use tde-cdbs instead of the original cdbs class.
  • [adc575a3] DEB desktop-base: Use tde-cdbs instead of the original cdbs class.
  • [58eb91b1] RPM: bump TDE version to 14.1.6
  • [f41d34f6] RPM: updates for upcoming 14.1.6 release
  • [7e3f5890] DEB kvirc: switch to cmake build system
  • [64ed3f64] Revert "DEB tdelibs: Add dependencies necessary for newer version of OpenEXR."
    Debian bug #1130588 has been resolved and therefore we no longer
    need to use the workaround.
    This reverts commit d85d2901a48bf68ca63ac6167203cdec126693cd.
  • [8a23f6ea] DEB koffice-i18n: Fix FTBFS for build only "all" - independent of architectures.
  • [ab950a83] DEB tdelibs: Add dependencies necessary for newer version of OpenEXR.
    This is a workaround for Debian bug #1130588
    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1130588
  • [e93f5e64] DEB pytde: Changes to silence lintian reports.
  • [d7cc9084] DEB pytde: Fix FTBFS for build only "all" - independent of architectures.
  • [9e07259d] DEB pytqt: Remove unnecessary forcing of owner change during installation.
    Change from #483 was inadvertently reverted in #557.
    This applies the change again.
  • [6f0c7847] DEB kvirc: add dependency on libgsm1-dev
  • [e1d5419f] DEB tqca: Changes to silence lintian reports.
    + Added SO version to binary package name.
    + Removed Replaces and Breaks referring to themselves.
  • [82185cb9] DEB tqscintilla: Changes to silence lintian reports.
    + Removed Replaces and Breaks referring to themselves.
  • [63cd3663] DEB: Use short month names in changelog (June).
  • [97ac6c15] DEB: Use short month names in changelog (July).
  • [f53e637b] DEB: Fix hours exceeding a day in changelog.
    Strict check when installing changelog can now result in FTBFS
    if the date does not match the required date format.
  • [841d4439] DEB: Use short month names in changelog.
    Strict check when installing changelog can now result in FTBFS
    if the date does not match the required date format.
  • [004a538f] DEB polkit-agent-tde: Changes to silence lintian reports.
  • [57d12c88] DEB polkit-tqt: Fix incomplete merge in 'control' file from previous commit.
  • [dc192287] DEB polkit-tqt: Changes to silence lintian reports.
    + Added SO version to binary package name.
  • [4b897257] DEB pytqt: Changes to silence lintian reports
    + Added run time dependencies.
    + Removed Replaces and Breaks referring to themselves.
  • [dbf1cede] DEB dbus-1-tqt: Use versioned Provides as this allows for smoother upgrades.
  • [e3af6a36] DEB avahi-tqt: Use versioned Provides as this allows for smoother upgrades.
  • [4ecaab80] DEB libcarddav: Use versioned Provides as this allows for smoother upgrades.
  • [4c0f7368] DEB libcaldav: Use versioned Provides as this allows for smoother upgrades.
  • [8595bcfb] DEB tde-cmake: Use versioned Provides as this allows for smoother upgrades.
  • [b9d9bf7f] DEB dbus-1-tqt: Install libraries according to multi-arch rules.
    + Changes to silence lintian reports.
    + Added SO version to binary package name.
    + Install libraries according to multi-arch rules.
    + Removed Replaces and Breaks referring to themselves.
    + The epoch change is for historical reasons from the KDE3 era.
  • [26487476] DEB dbus-tqt: Install libraries according to multi-arch rules.
    + Changes to silence lintian reports.
    + Added build time dependencies.
    + Added reason for epoch change to changelog.
    + Removed Replaces and Breaks referring to themselves.
  • [6d5e2804] DEB avahi-tqt: Delete the symbols file because it is not appropriate.
    According to Using Symbols File wiki:
    If you find (on some arches) symbols that are exported which are not
    supposed to be public, you must not use symbols versioning at all.
    For C++ libraries it is often better not to ship symbols files.
    See chapters in: https://wiki.debian.org/UsingSymbolsFiles
  • [8869de50] DEB avahi-tqt (dilos): Install libraries according to multi-arch rules.
    + Install libraries according to multi-arch rules.
    + Rename the package to match the library name and SO version.
    + Changes to silence lintian reports.
    Since R14.1.6 – TDE/tde-cmake#140, the default location for /usr is
    according to default multi-arch location used by the distribution.
  • [c5e72424] DEB avahi-tqt: Install libraries according to multi-arch rules.
    + Update symbols file.
    + Install libraries according to multi-arch rules.
    + Rename the package to match the library name and SO version.
    + Changes to silence lintian reports.
    Since R14.1.6 – TDE/tde-cmake#140, the default location for /usr is
    according to default multi-arch location used by the distribution.
  • [8a763a94] DEB libr: Install libraries according to multi-arch rules.
    Since R14.1.6 – TDE/tde-cmake#140, the default location for /usr is
    according to default multi-arch location used by the distribution.
  • [b1283dd1] DEB akode: Changes to silence lintian reports.
    + Added build time dependencies.
    + Added reason for epoch change to changelog.
    + Move akodeplay binary to a separate package.
    + Install libraries according to multi-arch rules.
    + Added overrides for version number and compression.
  • [28a742bd] DEB libtqt-perl: Switch to tde-cdbs and changes to silence lintian reports.
    + Switch to tde-cdbs, but with building in the source tree.
    + Added libcrypt-dev do Build-Depends.
    + Added overrides for version number and compression.
    + Removed Replaces and Breaks referring to themselves.
    + Change the permissions of libraries to 644 before dh_strip.
  • [62ef5c52] DEB pytde: Remove unnecessary forcing of owner change during installation.
  • [31a00bfc] DEB pytqt: Remove unnecessary forcing of owner change during installation.
  • [558e843e] DEB sudo-trinity: Change the version in the changelog to ~pre0 so that the current package version is not lower.
  • [70aea09c] DEB sudo-trinity: Switch to debhelper and changes to silence lintian reports.
    + Added copyright file.
    + Install directories with normal permissions.
    + Added overrides for version number and compression.
    + Removed Replaces and Breaks referring to themselves.
    + The epoch change is for historical reasons from the KDE3 era.
  • [b86e1ee0] DEB tdelibs: Use maintscript to remove old ld.so config file.
  • [01445e42] DEB libcarddav: Use Provides: libcarddav for smooth upgrade to libcarddav0.
    See https://wiki.debian.org/RenamingPackages
  • [7611fb6f] DEB libcaldav: Use Provides: libcaldav for smooth upgrade to libcaldav0.
    See https://wiki.debian.org/RenamingPackages
  • [fa49b820] DEB tdelibs: Changes to silence lintian reports.
    + Added build and run time dependencies.
    + Removed no longer valid *BSD architectures.
    + Added overrides for version number and compression.
    + Added permission change on setuid binaries from 4711 to 4755.
  • [a212a72b] DEB tdeadmin: Add libcrypt-dev to Build-Depends.
    The package libcrypt-dev was usually installed automatically as
    a dependency of libc6-dev. However, in newer versions it is no
    longer installed and its absence can lead to FTBFS.
  • [68734980] DEB tdelibs: Update ls.so.conf according to multi-arch location.
    Instead of hard-coded lib64, which we never used, it makes sense to install
    the file in an architecture-dependent package and set the paths according
    to the multi-arch location of the specific architecture.
  • [8b3a0a67] DEB tdenetwork: Require fakeroot support for setting file permissions and ownership
    This involves enforcing the dip group and permissions for the kppp and kppplogview
    binaries, and the kppp-options configuration file.
  • [302c5c11] DEB libcarddav: Fix empty and misnamed package for time64 variant.
    This completes the changes related to renaming the libarddav package to
    libcardav0 in #537. For time64 variant the package got incorrect name
    libcarddav00t64 and was empty.
  • [705bdbf3] DEB tde-cdbs: Fix FTBFS with date command from Rust Coreutils.
    The date command from Rust Coreutils is not fully compatible
    with the date command from GNU Coreutils and strictly requires
    the date output format to be after options.
  • [fa6bc565] DEB tde-i18n: Changes to silence lintian reports.
    + Added targets in debian/rules that we don't need but are required.
    + Added dynamic creation of lintian overrides for individual languages.
    + In copyright, links to KDE translations have been replaced with TDE Weblate.
  • [e0e2a60d] DEB tqt: Changes to silence lintian reports.
    + Formalization of postinst scripts.
    + Removed no longer valid *BSD architectures.
    + Removed Replaces and Breaks referring to themselves.
    + Removed menu files because desktop files are in their place.
    + The epoch change is for historical reasons from the KDE3 era.
    + Added emptying of dependency_libs field in LA files.
    + Added lintian overrides installation.
    Note: When tested on armhf, lintian reported `library-not-linked-against-libc`
    on some packages, which is not registered on the lintian tags list, and when
    used on amd64, lintian reports `alien-tag library-not-linked-against-libc`.
  • [70bc0a14] DEB libcaldav: Changes to silence lintian reports.
    + Added build and run time dependencies.
    + Added SO version to binary package name.
    + Added reason for epoch change to changelog.
    + Extended package description.
  • [f64a2083] DEB libcaldav: Changes to silence lintian reports.
    + Added build and run time dependencies.
    + Added SO version to binary package name.
    + Added reason for epoch change to changelog.
    + Extended package description.
  • [fdd7223c] DEB kpilot: Changes to silence lintian reports.
    + Added build time dependencies.
    + Added reason for epoch change to changelog.
    + Remove Replaces and Breaks referring to themselves.
    + Remove the dbg package in favor of the now standard dbgsym.
  • [c38e0336] DEB sip4-tqt: Changes to silence lintian reports.
    + Added run time dependencies.
    + Strip all packages - including sip-tqt-dev.
    + Remove unnecessary configuration items from control file.
    + Remove unnecessary forcing of owner change during installation.
    + Added reason for epoch change to changelog.
    + Fix utf8 encoding in the man page.
  • [0a3efea2] DEB: Replace obsolete dependency pkg-config with current pkgconf.
  • [577f6c5d] DEB libart-lgpl: Changes to silence lintian reports.
    + Added build time dependencies (omitted for Ubuntu).
  • [2ceebd54] DEB libart-lgpl: Changes to silence lintian reports.
    + Added build time dependencies.
    + Added reason for epoch change to changelog.
    + Install libraries according to multi-arch rules.
    + Added overrides for version number and compression.
  • [a80b5d30] DEB libr: Changes to silence lintian reports.
    + Added build time and runtime dependencies.
    + Added overrides for version number and compression.
  • [f14674e7] DEB kvirc: use new tde-autotools.mk file for building
  • [2a22a0c0] DEB tde-cdbs: Changes to silence lintian reports.
    + Added link to full license to copyright.
    + Added reason for epoch change to changelog.
    + Added overrides for version number and compression.
  • [cd69d3d8] DEB tde-cdbs: Add a copy of the necessary standard classes from Debian.
    Debian is gradually deprecating CDBS in favor of Debhelper.
    Before we are ready to drop the use of CDBS, we need to retain some
    of the standard classes that were removed in the newer version of CDBS.
  • [8f5a7b92] DEB/RPM kvirc: do not rename license file
  • [f9d1c27b] [RPM] krename has undefined build option #524
  • [fc0c0271] [RPM] twin-style-machbunt has undefined build option #523
  • [5f064559] [RPM] twin-style-dekorator has an undefined option #522
  • [a20ac375] [RPM] gtk3-tqt-engine has an undefined option #521
  • [8d1c62f9] [RPM] tde-guidance has undefined build option #520
  • [578037c8] [RPM] gwenview has an undefined build option #519
  • [0c448b2e] [RPM] k3b-i18n has an undefined build option #518
  • [b74135f3] [RPM] tdesvn has different pkgconfig install path #517
  • [f1168f44] [RPM] smb4k has undefined build option #516
  • [33635a91] [RPM] polkit-agent-tde sets Prefix, installs to system paths #515
  • [79779ddf] [RPM] ksystemlog has a build option with no %define #514
  • [1020c623] [RPM] kscope has a build option with no %define #513
  • [3b0416d5] [RPM] kdbusnotification build option does not have a %define #512
  • [cf962d4b] [RPM] digikam sets option for confdir, but has no define #505
  • [99259a0e] [RPM] trinity-filesystem is set incorrectly as a "noarch" package #504
  • [f3ce39ee] [RPM] libkdcraw has Prefix defined, but uses TDE path defines #501
  • [701b5397] [RPM] akode spec defines an unused prefix #500
  • [c69f5118] DEB kvirc: remove packaging of kvirc-config
  • [7b920641] DEB kvirc: change location of scriptexample files
  • [269bdcf9] DEB k3b: update patch to avoid hunk offset warning
  • [6f85744b] DEB tdeutils: update patch to avoid hunk offset warning
  • [58cbb7c2] DEB pytdeextension: update patch to avoid hunk offset warning
  • [d7e3aa34] DEB kvirc: move translation .mo files to standard TDE location
  • [f88b549c] DEB tdebindings: Enable build with Java on loong64.
  • [a38cbbeb] DEB tdenetwork: Do not depend on valgrind for loong64 architecture.
  • [976a864a] DEB tdegames: Add Conflicts for libtdegames-data to ensure smooth update.
  • [8f42e2c7] DEB tdegames: Split libtdegames package into two - library and common data.
    Set multiarch rules for all packages.
  • [19fd4371] DEB kvirc: move application files to a more appropriate location
  • [5de35158] DEB kvirc: move location of kvirc.desktop
  • [30f2ec6c] DEB kvirc: move location of module files
  • [cf33ae1c] RPM: fix kxmleditor package
  • [0b72125c] RPM: fix invalid syntax in tdelibs.spec and tdebase.spec
  • [ab4be3a0] DEB pytdeextensions: Allow building a source package without dh-python.
  • [f5ce4d73] DEB ubuntu: drop Bionic and add Resolute support
  • [8dd9c963] FreeBSD tdebase: Backport d2b2363d93:
    twin: fix tiling of maximized windows. This resolves issue #675
  • [23ac6ab5] ArchLinux tdebase: Backport d2b2363d93:
    twin: fix tiling of maximized windows. This resolves issue #675
  • [39dff266] DEB tdebase: install search providers in a generic way
  • [3f680982] FreeBSD tdelibs: Backport commit 884aff9885.
    Make 'TDEConfigINIBackEnd::parseSingleConfigFile' reentrant.
    This resolves issue #379
  • [44809622] ArchLinux tdegraphics: Rebuild with Poppler 25.11.
  • [e8eb9579] ArchLinux tdelibs: Backport commit 884aff9885.
    Make 'TDEConfigINIBackEnd::parseSingleConfigFile' reentrant.
    This resolves issue #379
  • [88fa48d4] DEB krusader: switch to cmake building system