Difference between revisions of "Changelog For R14.0.4"

From Trinity Desktop Project Wiki
Jump to navigation Jump to search
imported>SlavekB
(Update 20160424)
imported>SlavekB
(Update 20160529)
Line 19: Line 19:
 
= main =
 
= main =
 
== tdelibs ==
 
== tdelibs ==
  +
* Fix utf8 support in tdeabc vCard parser<br/>This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2625 #2625]
  +
* cmake: Add tdeabc tests
 
* Fixed display of single control modules in tdecmshell.<br/>This was a regression introduced in commit 5117798 three years ago.<br/>After reverting the related part, I have tested at length and not found any problem,<br/>so it seems safe enough to push the old code back.
 
* Fixed display of single control modules in tdecmshell.<br/>This was a regression introduced in commit 5117798 three years ago.<br/>After reverting the related part, I have tested at length and not found any problem,<br/>so it seems safe enough to push the old code back.
 
* Fix FTBFS due to non-existent include
 
* Fix FTBFS due to non-existent include
Line 34: Line 36:
   
 
== tdepim ==
 
== tdepim ==
  +
* Fix utf8 handling in kaddressbook thumbnailcreator<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2625 #2625]
  +
* Fix utf8 handling in tdeabc resource cache<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2625 #2625]
  +
* Fix utf8 handling in CardDAV<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2625 #2625]
 
* Fixed FTBFS in Debian/Ubuntu due to missing liblockdev1-dev package. Device locking is now done through 'flock()'
 
* Fixed FTBFS in Debian/Ubuntu due to missing liblockdev1-dev package. Device locking is now done through 'flock()'
   
Line 40: Line 45:
   
 
== tdeutils ==
 
== tdeutils ==
  +
* Removed crappy FileListView::updateItem() method and replace it with addOrUpdateItem()<br/>Enhanced in several ways parsing of rar-5+ output (fixes a crash and several potential issues)<br/>Spacing fixes<br/>Minor modification: replace assert with if()
 
* Ark: info for folders in rar archives are now displayed as well.<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2541 #2541]<br/>Patch updated and slightly reworked to fit TQt framework
 
* Ark: info for folders in rar archives are now displayed as well.<br/>This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2541 #2541]<br/>Patch updated and slightly reworked to fit TQt framework
 
* Ark: added support for rar/unrar 5.x utilities. Both 4.x and 5.x are supported.<br/>Special thanks to Fabio Rossi for raising the issue and providing an initial patch.
 
* Ark: added support for rar/unrar 5.x utilities. Both 4.x and 5.x are supported.<br/>Special thanks to Fabio Rossi for raising the issue and providing an initial patch.
   
 
== tdegames ==
 
== tdegames ==
  +
* Fix ksokoban crashes on compressed level files<br/>libz support seems to be broken
  +
* Fix typo in prior commit
  +
* cmake: Add libtdegames import<br/>This fix splited build of tdegames
 
* cmake: Fix FTBFS due to new DSO linkage style
 
* cmake: Fix FTBFS due to new DSO linkage style
 
* cmake: Add apidox targets
 
* cmake: Add apidox targets
Line 54: Line 63:
   
 
= applications =
 
= applications =
  +
== digikam ==
  +
* Fix libgphoto2 state on the final configure statement
  +
* Fix gphoto2 library detection<br/>Use pkg-config file, if possible
  +
 
== k3b ==
 
== k3b ==
 
* cmake: Force to use C compiler for asm_scale.S<br/>This fix FTBFS with cmake < 2.8.5
 
* cmake: Force to use C compiler for asm_scale.S<br/>This fix FTBFS with cmake < 2.8.5
Line 68: Line 81:
 
* Use GST_CHECK_VERSION instead of extra definition
 
* Use GST_CHECK_VERSION instead of extra definition
 
* Add GStreamer 1.0 support
 
* Add GStreamer 1.0 support
  +
  +
== kbfx ==
  +
* Fix FTBFS on parallel build
   
 
== kcmldap ==
 
== kcmldap ==
Line 75: Line 91:
 
== kmplayer ==
 
== kmplayer ==
 
* Add GStreamer 1.0 support
 
* Add GStreamer 1.0 support
  +
  +
== piklab ==
  +
* Fix build out-of-source
   
 
== tdepowersave ==
 
== tdepowersave ==
  +
* Fixed autosuspend functionality broken by commit fab0d15. This relates to bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2632 #2632]
 
* Fixed ESC handling in inactivity dialog. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2632 #2632]<br/>(partially cherry-picked from fab0d1579f8be4859958217e7b632acfbf191de2)
 
* Fixed ESC handling in inactivity dialog. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2632 #2632]<br/>(partially cherry-picked from fab0d1579f8be4859958217e7b632acfbf191de2)
 
* Fixed up timer for autosuspend and autodimm when a screensaver is also in use. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2603 #2603]
 
* Fixed up timer for autosuspend and autodimm when a screensaver is also in use. This resolves bug [https://bugs.trinitydesktop.org/show_bug.cgi?id=2603 #2603]

Revision as of 00:34, 30 May 2016

common

cmake

  • Fix FTBFS when tdelibs was built without tdelfeditor
  • Find tdelfeditor executable on the system paths
    instead of on the current installation path
  • Removed use of tdelfeditor on base 'so' file of versioned library
    because this file is a symlink to versioned library
  • Move last command processing 'ui' file from TDEMacros to tde_uic
    Used cmake method of processing output from the command

dependencies

qt3

  • Properly implement MySQL reconnect support
  • Properly handle MySQL reconnection option

tqt3

  • Automated update from Qt3

tqtinterface

  • Fix usage uic-tqt without an '.ui' file in arguments
    This resolves issues with mode 'embed'

main

tdelibs

  • Fix utf8 support in tdeabc vCard parser
    This resolves bug #2625
  • cmake: Add tdeabc tests
  • Fixed display of single control modules in tdecmshell.
    This was a regression introduced in commit 5117798 three years ago.
    After reverting the related part, I have tested at length and not found any problem,
    so it seems safe enough to push the old code back.
  • Fix FTBFS due to non-existent include
  • Fix occasional Konqueror crashes on kjs/regexp
    This relates to old KDE3 commit
    https://quickgit.kde.org/?p=kdelibs.git&a=commit&h=fee91015
  • tdeabc: fixed birthday assignment in VCardTool. This relates to bug #2613
  • Remove warnings about missing embedded ELF icons
    Add file name for which the issue occurs into debug message
  • Fixed product name in bug report form. This relates to bug #2617
  • Fixed ISO8601 parsing in VCardTool. This relates to bug #2613
  • Removed use of tdelfeditor on base 'so' file of versioned library
    because this file is a symlink to versioned library

tdebase

  • Fixed typo in starttde script. This resolves bug #2641
  • Fixed desktop locking code. This relates to bug #2603 and fixes the locking-after-suspend issue when the screensaver is also enabled.
  • Added "default" mount option to TDE hardware manager. This resolves bug #2593

tdepim

  • Fix utf8 handling in kaddressbook thumbnailcreator
    This relates to bug #2625
  • Fix utf8 handling in tdeabc resource cache
    This relates to bug #2625
  • Fix utf8 handling in CardDAV
    This relates to bug #2625
  • Fixed FTBFS in Debian/Ubuntu due to missing liblockdev1-dev package. Device locking is now done through 'flock()'

tdemultimedia

  • Add GStreamer 1.0 support

tdeutils

  • Removed crappy FileListView::updateItem() method and replace it with addOrUpdateItem()
    Enhanced in several ways parsing of rar-5+ output (fixes a crash and several potential issues)
    Spacing fixes
    Minor modification: replace assert with if()
  • Ark: info for folders in rar archives are now displayed as well.
    This relates to bug #2541
    Patch updated and slightly reworked to fit TQt framework
  • Ark: added support for rar/unrar 5.x utilities. Both 4.x and 5.x are supported.
    Special thanks to Fabio Rossi for raising the issue and providing an initial patch.

tdegames

  • Fix ksokoban crashes on compressed level files
    libz support seems to be broken
  • Fix typo in prior commit
  • cmake: Add libtdegames import
    This fix splited build of tdegames
  • cmake: Fix FTBFS due to new DSO linkage style
  • cmake: Add apidox targets
  • cmake: Create kbackgammon/engines/dummy.cpp outside source tree
  • cmake: Fix shared libraries version
  • Initial cmake conversion

tdeaccessibility

  • Cleanup TDELocale warnings in kbstate applet

applications

digikam

  • Fix libgphoto2 state on the final configure statement
  • Fix gphoto2 library detection
    Use pkg-config file, if possible

k3b

  • cmake: Force to use C compiler for asm_scale.S
    This fix FTBFS with cmake < 2.8.5
  • cmake: Fix detection of functions lrint and lrintf in libm
    Set HAVE_LRINT and HAVE_LRINTF if functions not exists
  • cmake: Fix HAVE_LRINT and HAVE_LRINTF definitions
    Must be defined always - with a value 0 or 1
  • cmake: Musicbrainz support set by default to off
  • cmake: install library headers
  • Initial cmake conversion

k3b-i18n

  • Initial cmake convertion

kaffeine

  • Use GST_CHECK_VERSION instead of extra definition
  • Add GStreamer 1.0 support

kbfx

  • Fix FTBFS on parallel build

kcmldap

  • Revert "Fix krb5 library detection. This resolves FTBFS with heimdal-krb5."
    Not required for r14.0.x branch.
    This reverts commit 6d3b42e175ab9acf02973f2f35d7ef3d3e9d41e0.
  • Fix krb5 library detection. This resolves FTBFS with heimdal-krb5.
    Based on similar patch for libraries/libtdeldap from Slavek Banko.

kmplayer

  • Add GStreamer 1.0 support

piklab

  • Fix build out-of-source

tdepowersave

  • Fixed autosuspend functionality broken by commit fab0d15. This relates to bug #2632
  • Fixed ESC handling in inactivity dialog. This resolves bug #2632
    (partially cherry-picked from fab0d1579f8be4859958217e7b632acfbf191de2)
  • Fixed up timer for autosuspend and autodimm when a screensaver is also in use. This resolves bug #2603
  • Increased maximum time limit for timers to 50000 min (almost 35 days). This relates to bug #2599
    NOTE: if the max limit is removed, the TQSpinBox reverts to the default value of 99.
    Also fixed minimum limit for some timers and percentage fields.
  • Increased maximum time limit for timers to 1500 min (25 hours). This relates to bug #2599

main

thirdparty

  • Update LibreOffice packaging patches:
    + 4.3.3 - Debian 7.x - Wheezy-backports
  • Update LibreOffice packaging patches:
    + 4.3.3 - Debian 8.x - Jessie
    Fixed FTBFS on ppc64el
  • Update LibreOffice packaging patches:
    + 4.2.8 - Ubuntu 14.04 - Trusty
    + 4.3.3 - Debian 8.x - Jessie