Hello community, here is the log from the commit of package kpimtextedit for openSUSE:Factory checked in at 2016-10-18 10:21:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kpimtextedit (Old) and /work/SRC/openSUSE:Factory/.kpimtextedit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kpimtextedit" Changes: -------- --- /work/SRC/openSUSE:Factory/kpimtextedit/kpimtextedit.changes 2016-09-14 23:14:37.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kpimtextedit.new/kpimtextedit.changes 2016-10-18 10:21:34.000000000 +0200 @@ -1,0 +2,6 @@ +Tue Oct 11 21:01:16 UTC 2016 - [email protected] + +- KDE Applications 16.08.2 +https://www.kde.org/announcements/announce-applications-16.08.2.php + +------------------------------------------------------------------- Old: ---- kpimtextedit-16.08.1.tar.xz New: ---- kpimtextedit-16.08.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kpimtextedit.spec ++++++ --- /var/tmp/diff_new_pack.YYsJzu/_old 2016-10-18 10:21:35.000000000 +0200 +++ /var/tmp/diff_new_pack.YYsJzu/_new 2016-10-18 10:21:35.000000000 +0200 @@ -17,7 +17,7 @@ Name: kpimtextedit -Version: 16.08.1 +Version: 16.08.2 Release: 0 %define kf5_version 5.1.0 Summary: KDE PIM Libraries: Text edit functionality ++++++ kpimtextedit-16.08.1.tar.xz -> kpimtextedit-16.08.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpimtextedit-16.08.1/CMakeLists.txt new/kpimtextedit-16.08.2/CMakeLists.txt --- old/kpimtextedit-16.08.1/CMakeLists.txt 2016-08-20 09:37:05.000000000 +0200 +++ new/kpimtextedit-16.08.2/CMakeLists.txt 2016-09-28 13:36:33.000000000 +0200 @@ -18,7 +18,7 @@ include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(ECMAddTests) -set(PIM_VERSION "5.3.1") +set(PIM_VERSION "5.3.2") set(KPIMTEXTEDIT_LIB_VERSION ${PIM_VERSION}) ecm_setup_version(${KPIMTEXTEDIT_LIB_VERSION} VARIABLE_PREFIX KPIMTEXTEDIT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpimtextedit-16.08.1/src/composer-ng/richtextcomposercontroler.cpp new/kpimtextedit-16.08.2/src/composer-ng/richtextcomposercontroler.cpp --- old/kpimtextedit-16.08.1/src/composer-ng/richtextcomposercontroler.cpp 2016-08-20 09:37:05.000000000 +0200 +++ new/kpimtextedit-16.08.2/src/composer-ng/richtextcomposercontroler.cpp 2016-09-28 13:36:33.000000000 +0200 @@ -91,7 +91,14 @@ if (cursor->atEnd()) { break; } - cursor->setPosition(cursor->position() + 1, QTextCursor::KeepAnchor); + const int oldPosition = cursor->position(); + cursor->movePosition(QTextCursor::NextCharacter, QTextCursor::KeepAnchor); + //Wordaround Qt Bug. when we have a table. + //FIXME selection url + if (oldPosition == cursor->position()) { + break; + } + } if (cursor->charFormat().anchorHref() != aHref) { cursor->setPosition(cursor->position() - 1, QTextCursor::KeepAnchor); @@ -99,7 +106,6 @@ } else if (cursor->hasSelection()) { // Nothing to to. Using the currently selected text as the link text. } else { - // Select current word cursor->movePosition(QTextCursor::StartOfWord); cursor->movePosition(QTextCursor::EndOfWord, QTextCursor::KeepAnchor);
