Hello community,

here is the log from the commit of package khangman for openSUSE:Factory 
checked in at 2016-05-29 03:07:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/khangman (Old)
 and      /work/SRC/openSUSE:Factory/.khangman.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "khangman"

Changes:
--------
--- /work/SRC/openSUSE:Factory/khangman/khangman.changes        2016-03-29 
09:58:30.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.khangman.new/khangman.changes   2016-05-29 
03:07:56.000000000 +0200
@@ -1,0 +2,24 @@
+Sat May  7 10:28:01 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.1
+   * KDE Applications 16.04.1
+   * https://www.kde.org/announcements/announce-applications-16.04.1.php
+
+
+-------------------------------------------------------------------
+Sun Apr 17 06:04:34 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.04.0
+   * KDE Applications 16.04.0
+   * https://www.kde.org/announcements/announce-applications-16.04.0.php
+
+
+-------------------------------------------------------------------
+Mon Apr 11 06:41:07 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 16.03.90
+   * KDE Applications 16.04.0 RC
+   * https://www.kde.org/announcements/announce-applications-16.04-rc.php
+
+
+-------------------------------------------------------------------

Old:
----
  khangman-15.12.3.tar.xz

New:
----
  khangman-16.04.1.tar.xz

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

Other differences:
------------------
++++++ khangman.spec ++++++
--- /var/tmp/diff_new_pack.LE1eCK/_old  2016-05-29 03:07:57.000000000 +0200
+++ /var/tmp/diff_new_pack.LE1eCK/_new  2016-05-29 03:07:57.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           khangman
-Version:        15.12.3
+Version:        16.04.1
 Release:        0
 Summary:        Hangman Game
 License:        GPL-2.0+

++++++ khangman-15.12.3.tar.xz -> khangman-16.04.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khangman-15.12.3/CMakeLists.txt 
new/khangman-16.04.1/CMakeLists.txt
--- old/khangman-15.12.3/CMakeLists.txt 2016-01-07 23:50:25.000000000 +0100
+++ new/khangman-16.04.1/CMakeLists.txt 2016-04-16 22:26:46.000000000 +0200
@@ -14,7 +14,7 @@
 
 include(KDEInstallDirs)
 include(KDECMakeSettings)
-include(KDECompilerSettings)
+include(KDECompilerSettings NO_POLICY_SCOPE)
 include(ECMInstallIcons)
 include(GenerateExportHeader)
 include(ECMAddAppIcon)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khangman-15.12.3/src/CMakeLists.txt 
new/khangman-16.04.1/src/CMakeLists.txt
--- old/khangman-15.12.3/src/CMakeLists.txt     2016-01-07 23:50:25.000000000 
+0100
+++ new/khangman-16.04.1/src/CMakeLists.txt     2016-04-16 22:26:46.000000000 
+0200
@@ -14,6 +14,7 @@
 target_link_libraries(khangman
     Qt5::QuickWidgets
     Qt5::Core
+    KF5::Crash
     KF5::I18n
     KF5::NewStuff
     KF5::Declarative
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khangman-15.12.3/src/main.cpp 
new/khangman-16.04.1/src/main.cpp
--- old/khangman-15.12.3/src/main.cpp   2016-01-07 23:50:25.000000000 +0100
+++ new/khangman-16.04.1/src/main.cpp   2016-04-16 22:26:46.000000000 +0200
@@ -25,6 +25,7 @@
 
 #include <KLocalizedString>
 #include <Kdelibs4ConfigMigrator>
+#include <KCrash>
 
 #include <QApplication>
 #include <QFontDatabase>
@@ -130,6 +131,8 @@
 
     KAboutData::setApplicationData(aboutData);
 
+    KCrash::initialize();
+
     QFont f(QStringLiteral("Domestic Manners"), 12, QFont::Normal, true);
     if (!QFontInfo(f).exactMatch())
     {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khangman-15.12.3/src/qml/GamePage.qml 
new/khangman-16.04.1/src/qml/GamePage.qml
--- old/khangman-15.12.3/src/qml/GamePage.qml   2016-01-07 23:50:25.000000000 
+0100
+++ new/khangman-16.04.1/src/qml/GamePage.qml   2016-04-16 22:26:46.000000000 
+0200
@@ -240,7 +240,7 @@
 
             ToolButton {
                 id: playPauseButton
-                iconSource: gamePage.isPlaying ? "pause.png" : "play.png"
+                iconSource: gamePage.isPlaying ? "Images/pause.png" : 
"Images/play.png"
                 tooltip: gamePage.isPlaying ? i18n("Pause") : i18n("Play")
 
                 onClicked: {
@@ -263,7 +263,7 @@
             ToolButton {
                 id: settingsButton
                 Layout.fillWidth: true
-                iconSource: "settings_icon.png";
+                iconSource: "Images/settings_icon.png";
                 tooltip: i18n("Settings")
 
                 onClicked: {
@@ -282,7 +282,7 @@
             ToolButton {
                 id: aboutKhangmanButton
                 Layout.fillWidth: true
-                iconSource: "dialog-information.png"
+                iconSource: "Images/dialog-information.png"
                 tooltip: i18n("About KHangMan")
 
                 onClicked: {
@@ -293,7 +293,7 @@
             ToolButton {
                 id: aboutKDEButton
                 Layout.fillWidth: true
-                iconSource: "about-kde.png"
+                iconSource: "Images/about-kde.png"
                 tooltip: i18n("About KDE")
 
                 onClicked: {
@@ -304,7 +304,7 @@
             ToolButton {
                 id: showHandbookButton
                 Layout.fillWidth: true
-                iconSource: "handbook.png"
+                iconSource: "Images/handbook.png"
                 tooltip: i18n("View the KHangMan Handbook")
 
                 onClicked: {
@@ -315,7 +315,7 @@
             ToolButton {
                 id: ghnsButton
                 Layout.fillWidth: true
-                iconSource: "get-hot-new-stuff.png"
+                iconSource: "Images/get-hot-new-stuff.png"
                 tooltip: i18n("Download new language files")
 
                 onClicked: {
@@ -325,7 +325,7 @@
 
             ToolButton {
                 id: quitButton
-                iconSource: "quit.png"
+                iconSource: "Images/quit.png"
                 tooltip: i18n("Quit")
                 onClicked: Qt.quit()
             }
@@ -445,7 +445,7 @@
 
     Image {
         id: successImage;
-        source: "action-success.png";
+        source: "Images/action-success.png";
         visible: false;
 
         anchors {
@@ -571,7 +571,7 @@
 
             ToolButton {
                 id: helpHintButton
-                iconSource: "help-hint.png"
+                iconSource: "Images/help-hint.png"
                 tooltip: i18n("Display the hint.")
                 enabled: hintLabel.text != ""
 
@@ -642,7 +642,7 @@
             ToolButton {
                 id: nextWordButton
                 Layout.fillWidth: true
-                iconSource: "go-next.png";
+                iconSource: "Images/go-next.png";
                 tooltip: i18n("Load the next word and start a new game.")
 
                 onClicked: {
Files old/khangman-15.12.3/src/qml/Images/about-kde.png and 
new/khangman-16.04.1/src/qml/Images/about-kde.png differ
Files old/khangman-15.12.3/src/qml/Images/action-fail.png and 
new/khangman-16.04.1/src/qml/Images/action-fail.png differ
Files old/khangman-15.12.3/src/qml/Images/action-success.png and 
new/khangman-16.04.1/src/qml/Images/action-success.png differ
Files old/khangman-15.12.3/src/qml/Images/dialog-information.png and 
new/khangman-16.04.1/src/qml/Images/dialog-information.png differ
Files old/khangman-15.12.3/src/qml/Images/get-hot-new-stuff.png and 
new/khangman-16.04.1/src/qml/Images/get-hot-new-stuff.png differ
Files old/khangman-15.12.3/src/qml/Images/go-next.png and 
new/khangman-16.04.1/src/qml/Images/go-next.png differ
Files old/khangman-15.12.3/src/qml/Images/handbook.png and 
new/khangman-16.04.1/src/qml/Images/handbook.png differ
Files old/khangman-15.12.3/src/qml/Images/help-hint.png and 
new/khangman-16.04.1/src/qml/Images/help-hint.png differ
Files old/khangman-15.12.3/src/qml/Images/pause.png and 
new/khangman-16.04.1/src/qml/Images/pause.png differ
Files old/khangman-15.12.3/src/qml/Images/play.png and 
new/khangman-16.04.1/src/qml/Images/play.png differ
Files old/khangman-15.12.3/src/qml/Images/quit.png and 
new/khangman-16.04.1/src/qml/Images/quit.png differ
Files old/khangman-15.12.3/src/qml/Images/settings_icon.png and 
new/khangman-16.04.1/src/qml/Images/settings_icon.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/khangman-15.12.3/src/qml/MainSettingsDialog.qml 
new/khangman-16.04.1/src/qml/MainSettingsDialog.qml
--- old/khangman-15.12.3/src/qml/MainSettingsDialog.qml 2016-01-07 
23:50:25.000000000 +0100
+++ new/khangman-16.04.1/src/qml/MainSettingsDialog.qml 2016-04-16 
22:26:46.000000000 +0200
@@ -143,7 +143,7 @@
                 }
 
                 ToolButton {
-                    iconSource: "dialog-information.png"
+                    iconSource: "Images/dialog-information.png"
 
                     anchors {
                         right: parent.right
@@ -190,7 +190,7 @@
                     }
                 }
                     ToolButton {
-                        iconSource: "dialog-information.png"
+                        iconSource: "Images/dialog-information.png"
 
                         anchors {
                             right: parent.right;
@@ -227,7 +227,7 @@
                 }
 
                 ToolButton {
-                    iconSource: "dialog-information.png"
+                    iconSource: "Images/dialog-information.png"
 
                     anchors {
                         right: parent.right;
Files old/khangman-15.12.3/src/qml/about-kde.png and 
new/khangman-16.04.1/src/qml/about-kde.png differ
Files old/khangman-15.12.3/src/qml/action-fail.png and 
new/khangman-16.04.1/src/qml/action-fail.png differ
Files old/khangman-15.12.3/src/qml/action-success.png and 
new/khangman-16.04.1/src/qml/action-success.png differ
Files old/khangman-15.12.3/src/qml/dialog-information.png and 
new/khangman-16.04.1/src/qml/dialog-information.png differ
Files old/khangman-15.12.3/src/qml/get-hot-new-stuff.png and 
new/khangman-16.04.1/src/qml/get-hot-new-stuff.png differ
Files old/khangman-15.12.3/src/qml/go-next.png and 
new/khangman-16.04.1/src/qml/go-next.png differ
Files old/khangman-15.12.3/src/qml/handbook.png and 
new/khangman-16.04.1/src/qml/handbook.png differ
Files old/khangman-15.12.3/src/qml/help-hint.png and 
new/khangman-16.04.1/src/qml/help-hint.png differ
Files old/khangman-15.12.3/src/qml/pause.png and 
new/khangman-16.04.1/src/qml/pause.png differ
Files old/khangman-15.12.3/src/qml/play.png and 
new/khangman-16.04.1/src/qml/play.png differ
Files old/khangman-15.12.3/src/qml/quit.png and 
new/khangman-16.04.1/src/qml/quit.png differ
Files old/khangman-15.12.3/src/qml/settings_icon.png and 
new/khangman-16.04.1/src/qml/settings_icon.png differ


Reply via email to