Hello community,

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

Package is "klettres"

Changes:
--------
--- /work/SRC/openSUSE:Factory/klettres/klettres.changes        2016-03-29 
09:58:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.klettres.new/klettres.changes   2016-05-29 
03:10:19.000000000 +0200
@@ -1,0 +2,24 @@
+Sat May  7 10:31:35 UTC 2016 - [email protected]
+
+- 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:07:00 UTC 2016 - [email protected]
+
+- 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:43:14 UTC 2016 - [email protected]
+
+- 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:
----
  klettres-15.12.3.tar.xz

New:
----
  klettres-16.04.1.tar.xz

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

Other differences:
------------------
++++++ klettres.spec ++++++
--- /var/tmp/diff_new_pack.Y8WZxi/_old  2016-05-29 03:10:20.000000000 +0200
+++ /var/tmp/diff_new_pack.Y8WZxi/_new  2016-05-29 03:10:20.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           klettres
-Version:        15.12.3
+Version:        16.04.1
 Release:        0
 Summary:        Alphabet Learning Game
 License:        GPL-2.0+

++++++ klettres-15.12.3.tar.xz -> klettres-16.04.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/klettres-15.12.3/CMakeLists.txt 
new/klettres-16.04.1/CMakeLists.txt
--- old/klettres-15.12.3/CMakeLists.txt 2015-12-29 13:35:37.000000000 +0100
+++ new/klettres-16.04.1/CMakeLists.txt 2016-04-20 14:34:42.000000000 +0200
@@ -30,6 +30,7 @@
 
 find_package(KF5 REQUIRED COMPONENTS
   Completion
+  Crash
   DocTools
   Emoticons
   ItemModels
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/klettres-15.12.3/src/CMakeLists.txt 
new/klettres-16.04.1/src/CMakeLists.txt
--- old/klettres-15.12.3/src/CMakeLists.txt     2015-12-29 13:35:37.000000000 
+0100
+++ new/klettres-16.04.1/src/CMakeLists.txt     2016-04-20 14:34:42.000000000 
+0200
@@ -1,8 +1,6 @@
 
 ########### next target ###############
 
-add_definitions(-DTRANSLATION_DOMAIN=\"kletters\")
-
 set(klettres_SRCS
    klettres.cpp
    main.cpp
@@ -27,6 +25,7 @@
 
 target_link_libraries(klettres
   KF5::Completion
+  KF5::Crash
   KF5::Emoticons
   KF5::NewStuff
   KF5::I18n
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/klettres-15.12.3/src/klettresview.cpp 
new/klettres-16.04.1/src/klettresview.cpp
--- old/klettres-15.12.3/src/klettresview.cpp   2015-12-29 13:35:37.000000000 
+0100
+++ new/klettres-16.04.1/src/klettresview.cpp   2016-04-20 14:34:42.000000000 
+0200
@@ -116,6 +116,7 @@
 void KLettresView::paintEvent( QPaintEvent * e )
 {
     QPainter p(this);
+    p.setRenderHint(QPainter::SmoothPixmapTransform);
     paintBackground(p, e->rect());
     paintLetter(p, e->rect());
     m_letterEdit->setFont(Prefs::font());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/klettres-15.12.3/src/main.cpp 
new/klettres-16.04.1/src/main.cpp
--- old/klettres-15.12.3/src/main.cpp   2015-12-29 13:35:37.000000000 +0100
+++ new/klettres-16.04.1/src/main.cpp   2016-04-20 14:34:42.000000000 +0200
@@ -26,6 +26,7 @@
 
 #include <KLocalizedString>
 #include <Kdelibs4ConfigMigrator>
+#include <KCrash>
 #include <kaboutdata.h>
 #include "klettres.h"
 #include "version.h"
@@ -41,6 +42,8 @@
 int main(int argc, char **argv)
 {
     QApplication app(argc, argv);
+    app.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
+
     KLocalizedString::setApplicationDomain("klettres");
 
     QStringList configFiles;
@@ -84,6 +87,8 @@
     app.setOrganizationDomain(QStringLiteral("kde.org"));
     app.setApplicationDisplayName(i18n("Klettres"));
 
+    KCrash::initialize();
+
     // see if we are starting with session management
     if (app.isSessionRestored()) {
         RESTORE(KLettres)
@@ -99,7 +104,6 @@
                 widget->show();
             }
         }
-        
     }
 
     return app.exec();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/klettres-15.12.3/src/org.kde.klettres.desktop 
new/klettres-16.04.1/src/org.kde.klettres.desktop
--- old/klettres-15.12.3/src/org.kde.klettres.desktop   2015-12-29 
13:35:37.000000000 +0100
+++ new/klettres-16.04.1/src/org.kde.klettres.desktop   2016-04-20 
14:34:42.000000000 +0200
@@ -131,6 +131,7 @@
 Name[zh_CN]=KLettres
 Name[zh_TW]=語言_KLetters
 GenericName=Learn The Alphabet
+GenericName[ast]=Deprender l'alfabetu
 GenericName[bg]=Изучаване на азбуката
 GenericName[bs]=Naučite abecedu
 GenericName[ca]=Apreneu l'alfabet


Reply via email to