Hello community,

here is the log from the commit of package kpimtextedit for openSUSE:Factory 
checked in at 2017-09-12 19:49:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kpimtextedit (Old)
 and      /work/SRC/openSUSE:Factory/.kpimtextedit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kpimtextedit"

Tue Sep 12 19:49:16 2017 rev:26 rq:522594 version:17.08.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpimtextedit/kpimtextedit.changes        
2017-08-24 17:47:05.405290165 +0200
+++ /work/SRC/openSUSE:Factory/.kpimtextedit.new/kpimtextedit.changes   
2017-09-12 19:49:20.018211506 +0200
@@ -1,0 +2,11 @@
+Thu Sep 07 07:02:23 CEST 2017 - [email protected]
+
+- Update to 17.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.1.php
+- Changes since 17.08.0:
+  * Avoid calling twice completer
+  * Fix Bug 383937 - Pressing Skip on spell checker leads to immediate sending 
of mail (kde#383937)
+
+-------------------------------------------------------------------

Old:
----
  kpimtextedit-17.08.0.tar.xz

New:
----
  kpimtextedit-17.08.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kpimtextedit.spec ++++++
--- /var/tmp/diff_new_pack.byEVhf/_old  2017-09-12 19:49:21.050066426 +0200
+++ /var/tmp/diff_new_pack.byEVhf/_new  2017-09-12 19:49:21.050066426 +0200
@@ -20,7 +20,7 @@
 
 %define kf5_version 5.1.0
 Name:           kpimtextedit
-Version:        17.08.0
+Version:        17.08.1
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)

++++++ kpimtextedit-17.08.0.tar.xz -> kpimtextedit-17.08.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpimtextedit-17.08.0/CMakeLists.txt 
new/kpimtextedit-17.08.1/CMakeLists.txt
--- old/kpimtextedit-17.08.0/CMakeLists.txt     2017-08-11 02:50:43.000000000 
+0200
+++ new/kpimtextedit-17.08.1/CMakeLists.txt     2017-09-05 02:38:47.000000000 
+0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.0)
-set(PIM_VERSION "5.6.0")
+set(PIM_VERSION "5.6.1")
 
 project(KPimTextEdit VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpimtextedit-17.08.0/po/zh_CN/libkpimtextedit.po 
new/kpimtextedit-17.08.1/po/zh_CN/libkpimtextedit.po
--- old/kpimtextedit-17.08.0/po/zh_CN/libkpimtextedit.po        2017-08-11 
02:50:43.000000000 +0200
+++ new/kpimtextedit-17.08.1/po/zh_CN/libkpimtextedit.po        2017-09-05 
02:38:47.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-06-19 03:04+0200\n"
-"PO-Revision-Date: 2017-08-05 09:34-0400\n"
+"PO-Revision-Date: 2017-08-31 05:16-0400\n"
 "Last-Translator: guoyunhebrave <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kpimtextedit-17.08.0/src/texteditor/richtexteditor/richtexteditor.cpp 
new/kpimtextedit-17.08.1/src/texteditor/richtexteditor/richtexteditor.cpp
--- old/kpimtextedit-17.08.0/src/texteditor/richtexteditor/richtexteditor.cpp   
2017-08-04 20:45:46.000000000 +0200
+++ new/kpimtextedit-17.08.1/src/texteditor/richtexteditor/richtexteditor.cpp   
2017-08-28 07:42:36.000000000 +0200
@@ -447,7 +447,9 @@
         QPushButton *skipButton = new QPushButton(i18n("Skip"));
         buttonBox->addButton(skipButton, QDialogButtonBox::ActionRole);
         connect(skipButton, &QPushButton::clicked, spellDialog, 
&Sonnet::Dialog::close);
-        connect(skipButton, &QPushButton::clicked, this, 
&RichTextEditor::spellCheckingFinished);
+        if (force) {
+            connect(skipButton, &QPushButton::clicked, this, 
&RichTextEditor::spellCheckingFinished);
+        }
     } else {
         qCWarning(KPIMTEXTEDIT_LOG) << " Impossible to find qdialogbuttonbox";
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpimtextedit-17.08.0/src/texteditorcompleter.cpp 
new/kpimtextedit-17.08.1/src/texteditorcompleter.cpp
--- old/kpimtextedit-17.08.0/src/texteditorcompleter.cpp        2017-08-04 
20:45:46.000000000 +0200
+++ new/kpimtextedit-17.08.1/src/texteditorcompleter.cpp        2017-08-28 
07:42:36.000000000 +0200
@@ -36,6 +36,7 @@
         , textEdit(editor)
         , q(qq)
     {
+        createCompleter();
     }
 
     TextEditorCompleterPrivate(QPlainTextEdit *editor, TextEditorCompleter *qq)
@@ -44,6 +45,7 @@
         , textEdit(nullptr)
         , q(qq)
     {
+        createCompleter();
     }
 
     void setCompletion(const QString &completion);
@@ -168,7 +170,6 @@
 
 void TextEditorCompleter::setCompleterStringList(const QStringList &listWord)
 {
-    d->createCompleter();
     d->completer->setModel(new QStringListModel(QStringList() << listWord << 
QStringLiteral("TESTING"), d->completer));
 }
 


Reply via email to