Hello community,

here is the log from the commit of package khelpcenter5 for openSUSE:Factory 
checked in at 2016-07-24 19:44:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/khelpcenter5 (Old)
 and      /work/SRC/openSUSE:Factory/.khelpcenter5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "khelpcenter5"

Changes:
--------
--- /work/SRC/openSUSE:Factory/khelpcenter5/khelpcenter5.changes        
2016-06-25 01:57:39.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.khelpcenter5.new/khelpcenter5.changes   
2016-07-24 19:44:42.000000000 +0200
@@ -1,0 +2,8 @@
+Thu Jul  7 23:30:42 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+-------------------------------------------------------------------

Old:
----
  khelpcenter-16.04.2.tar.xz

New:
----
  khelpcenter-16.04.3.tar.xz

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

Other differences:
------------------
++++++ khelpcenter5.spec ++++++
--- /var/tmp/diff_new_pack.OLhNzZ/_old  2016-07-24 19:44:43.000000000 +0200
+++ /var/tmp/diff_new_pack.OLhNzZ/_new  2016-07-24 19:44:43.000000000 +0200
@@ -39,7 +39,7 @@
 Summary:        KDE Documentation Application
 License:        GPL-2.0+
 Group:          Productivity/Other
-Version:        16.04.2
+Version:        16.04.3
 Release:        0
 Source:         khelpcenter-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE khelpcenter-use-susehelp.patch -- use susehelp wrapper 
instead of directly starting khelpcenter

++++++ khelpcenter-16.04.2.tar.xz -> khelpcenter-16.04.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-16.04.2/CMakeLists.txt 
new/khelpcenter-16.04.3/CMakeLists.txt
--- old/khelpcenter-16.04.2/CMakeLists.txt      2016-05-29 14:20:21.000000000 
+0200
+++ new/khelpcenter-16.04.3/CMakeLists.txt      2016-06-26 16:25:38.000000000 
+0200
@@ -1,5 +1,5 @@
 project(KHelpCenter)
-set(PROJECT_VERSION "5.7.0")
+set(PROJECT_VERSION "5.7.1")
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
 set(QT_MIN_VERSION "5.4.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-16.04.2/mainwindow.cpp 
new/khelpcenter-16.04.3/mainwindow.cpp
--- old/khelpcenter-16.04.2/mainwindow.cpp      2016-05-29 14:20:21.000000000 
+0200
+++ new/khelpcenter-16.04.3/mainwindow.cpp      2016-06-26 16:25:38.000000000 
+0200
@@ -54,6 +54,7 @@
 #include <QMimeDatabase>
 #include <QStatusBar>
 #include <QDir>
+#include <QTextDocument>
 
 #include <QDialogButtonBox>
 #include <QPushButton>
@@ -117,7 +118,7 @@
     connect( mDoc, SIGNAL( setWindowCaption( const QString & ) ),
              SLOT( setWindowTitle( const QString & ) ) );
     connect( mDoc, SIGNAL( setStatusBarText( const QString & ) ),
-             SLOT( statusBarMessage( const QString & ) ) );
+             SLOT( statusBarRichTextMessage( const QString & ) ) );
     connect( mDoc, SIGNAL( onURL( const QString & ) ),
              SLOT( statusBarMessage( const QString & ) ) );
     connect( mDoc, SIGNAL( started( KIO::Job * ) ),
@@ -399,6 +400,13 @@
     statusBarMessage(m);
 }
 
+void MainWindow::statusBarRichTextMessage(const QString &m)
+{
+    QTextDocument richTextHolder;
+    richTextHolder.setHtml(m);
+    statusBar()->showMessage(richTextHolder.toPlainText());
+}
+
 void MainWindow::statusBarMessage(const QString &m)
 {
     statusBar()->showMessage(m);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-16.04.2/mainwindow.h 
new/khelpcenter-16.04.3/mainwindow.h
--- old/khelpcenter-16.04.2/mainwindow.h        2016-05-29 14:20:21.000000000 
+0200
+++ new/khelpcenter-16.04.3/mainwindow.h        2016-06-26 16:25:38.000000000 
+0200
@@ -39,6 +39,7 @@
 
   public Q_SLOTS:
     void print();
+    void statusBarRichTextMessage(const QString &m);
     void statusBarMessage(const QString &m);
     void slotShowHome();
     void slotLastSearch();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-16.04.2/navigator.cpp 
new/khelpcenter-16.04.3/navigator.cpp
--- old/khelpcenter-16.04.2/navigator.cpp       2016-05-29 14:20:21.000000000 
+0200
+++ new/khelpcenter-16.04.3/navigator.cpp       2016-06-26 16:25:38.000000000 
+0200
@@ -507,6 +507,8 @@
 
   if ( words.isEmpty() || scope.isEmpty() ) return;
 
+  mTabWidget->setCurrentIndex( mTabWidget->indexOf( mSearchWidget ) );
+
   // disable search Button during searches
   mSearchButton->setEnabled(false);
   QApplication::setOverrideCursor(Qt::WaitCursor);
@@ -538,7 +540,6 @@
 {
   mSearchButton->setEnabled( !mSearchEdit->text().isEmpty() &&
     mSearchWidget->scopeCount() > 0 && !mIndexingProc );
-  mTabWidget->setCurrentIndex( mTabWidget->indexOf( mSearchWidget ) );
 }
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-16.04.2/plugins/Applications/.directory 
new/khelpcenter-16.04.3/plugins/Applications/.directory
--- old/khelpcenter-16.04.2/plugins/Applications/.directory     2016-05-29 
14:20:21.000000000 +0200
+++ new/khelpcenter-16.04.3/plugins/Applications/.directory     2016-06-26 
16:25:38.000000000 +0200
@@ -14,7 +14,7 @@
 Name[cs]=Příručky aplikací
 Name[csb]=Pòdrãczniczi aplikacëjów
 Name[da]=Programmanualer
-Name[de]=Programmhandbücher
+Name[de]=Anwendungshandbücher
 Name[el]=Εγχειρίδια εφαρμογών
 Name[en_GB]=Application Manuals
 Name[eo]=Manlibroj de aplikaĵoj
@@ -92,3 +92,4 @@
 
 X-DOC-DocumentType=application/docbook+xml
 X-DOC-Identifier=kde_application_manuals
+X-DOC-SearchEnabledDefault=true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khelpcenter-16.04.2/plugins/Manpages/.directory 
new/khelpcenter-16.04.3/plugins/Manpages/.directory
--- old/khelpcenter-16.04.2/plugins/Manpages/.directory 2016-05-29 
14:20:21.000000000 +0200
+++ new/khelpcenter-16.04.3/plugins/Manpages/.directory 2016-06-26 
16:25:38.000000000 +0200
@@ -89,3 +89,4 @@
 X-DOC-Weight=500
 X-DOC-DocumentType=text/man
 X-DOC-Identifier=manpages
+X-DOC-SearchEnabledDefault=true


Reply via email to