Hello community,

here is the log from the commit of package kblackbox for openSUSE:Factory 
checked in at 2016-01-10 13:04:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kblackbox (Old)
 and      /work/SRC/openSUSE:Factory/.kblackbox.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kblackbox"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kblackbox/kblackbox.changes      2015-11-15 
12:31:20.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kblackbox.new/kblackbox.changes 2016-01-10 
13:04:31.000000000 +0100
@@ -1,0 +2,9 @@
+Sun Dec 13 13:10:05 UTC 2015 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.12.0
+   * KDE Applications 15.12.0 
+   * https://www.kde.org/announcements/announce-applications-15.12.0.php
+   * boo#958887
+
+
+-------------------------------------------------------------------

Old:
----
  kblackbox-15.08.3.tar.xz

New:
----
  kblackbox-15.12.0.tar.xz

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

Other differences:
------------------
++++++ kblackbox.spec ++++++
--- /var/tmp/diff_new_pack.uceFHk/_old  2016-01-10 13:04:33.000000000 +0100
+++ /var/tmp/diff_new_pack.uceFHk/_new  2016-01-10 13:04:33.000000000 +0100
@@ -39,7 +39,7 @@
 License:        GPL-2.0+
 Group:          Amusements/Games/Board/Puzzle
 Url:            http://www.kde.org
-Version:        15.08.3
+Version:        15.12.0
 Release:        0
 Source0:        kblackbox-%{version}.tar.xz
 Obsoletes:      %{name}5 < %{version}

++++++ kblackbox-15.08.3.tar.xz -> kblackbox-15.12.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/CMakeLists.txt 
new/kblackbox-15.12.0/CMakeLists.txt
--- old/kblackbox-15.08.3/CMakeLists.txt        2015-11-04 19:39:25.000000000 
+0100
+++ new/kblackbox-15.12.0/CMakeLists.txt        2015-11-11 10:38:19.000000000 
+0100
@@ -7,14 +7,14 @@
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
 
 find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Svg)
-find_package(KF5 REQUIRED COMPONENTS 
+find_package(KF5 REQUIRED COMPONENTS
     Archive
-    CoreAddons 
-    Config 
-    Config 
-    I18n 
-    GuiAddons 
-    IconThemes 
+    CoreAddons
+    Config
+    DocTools
+    I18n
+    DBusAddons
+    TextWidgets
     XmlGui)
 
 find_package(KF5KDEGames 4.9.0 REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/kbbgraphicsitemball.cpp 
new/kblackbox-15.12.0/kbbgraphicsitemball.cpp
--- old/kblackbox-15.08.3/kbbgraphicsitemball.cpp       2015-11-04 
19:39:25.000000000 +0100
+++ new/kblackbox-15.12.0/kbbgraphicsitemball.cpp       2015-11-11 
10:38:19.000000000 +0100
@@ -52,7 +52,7 @@
        m_ballType = itemType;
        m_themeManager = themeManager;
        
-       setAcceptsHoverEvents(true);
+       setAcceptHoverEvents(true);
        
        for (int i=0; i<8;i++)
                m_interactionInfos[i] = NULL;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/kbbgraphicsitemballrepository.cpp 
new/kblackbox-15.12.0/kbbgraphicsitemballrepository.cpp
--- old/kblackbox-15.08.3/kbbgraphicsitemballrepository.cpp     2015-11-04 
19:39:25.000000000 +0100
+++ new/kblackbox-15.12.0/kbbgraphicsitemballrepository.cpp     2015-11-11 
10:38:19.000000000 +0100
@@ -94,8 +94,7 @@
        m_ballsOutside->clear();
 
        m_ballToPlace = balls;
-       scale(1./m_width, 1./m_height);
-
+       setTransform(QTransform::fromScale(1./m_width, 1./m_height), true);
 
        m_height = (rows/2);
        if (rows % 2 > 0)
@@ -104,7 +103,7 @@
        if (balls % m_height > 0)
                m_width++;
 
-       scale(m_width/1., m_height/1.);
+       setTransform(QTransform::fromScale(m_width/1., m_height/1.), true);
 
        setPos((-(m_width+1)*KBBScalableGraphicWidget::RATIO), 
KBBScalableGraphicWidget::RATIO);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/kbbgraphicsitemblackbox.cpp 
new/kblackbox-15.12.0/kbbgraphicsitemblackbox.cpp
--- old/kblackbox-15.08.3/kbbgraphicsitemblackbox.cpp   2015-11-04 
19:39:25.000000000 +0100
+++ new/kblackbox-15.12.0/kbbgraphicsitemblackbox.cpp   2015-11-11 
10:38:19.000000000 +0100
@@ -74,7 +74,7 @@
 
 void KBBGraphicsItemBlackBox::setSize(const int columns, const int rows)
 {
-       m_background->scale(1./m_columns, 1./m_rows);
+       m_background->setTransform(QTransform::fromScale(1./m_columns, 
1./m_rows), true);
 
        if ((m_columns!=columns) || (m_rows!=rows)) {
                m_columns = columns;
@@ -108,7 +108,7 @@
                m_background->setPos(b, b);
        }
        
-       m_background->scale(m_columns/1., m_rows/1.);
+       m_background->setTransform(QTransform::fromScale(m_columns/1., 
m_rows/1.), true);
 }
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/kbbgraphicsiteminteractioninfo.cpp 
new/kblackbox-15.12.0/kbbgraphicsiteminteractioninfo.cpp
--- old/kblackbox-15.08.3/kbbgraphicsiteminteractioninfo.cpp    2015-11-04 
19:39:25.000000000 +0100
+++ new/kblackbox-15.12.0/kbbgraphicsiteminteractioninfo.cpp    2015-11-11 
10:38:19.000000000 +0100
@@ -44,7 +44,7 @@
 {
        m_themeManager = themeManager;
        setPos(x, y);
-       rotate(rotation);
+       setTransform(QTransform().rotate(rotation), true);
        setType(type);
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/kbbgraphicsitemlaser.cpp 
new/kblackbox-15.12.0/kbbgraphicsitemlaser.cpp
--- old/kblackbox-15.08.3/kbbgraphicsitemlaser.cpp      2015-11-04 
19:39:25.000000000 +0100
+++ new/kblackbox-15.12.0/kbbgraphicsitemlaser.cpp      2015-11-11 
10:38:19.000000000 +0100
@@ -59,7 +59,7 @@
                setPos(m_centerX - radius, m_centerY - radius);
        }
        
-       setAcceptsHoverEvents(true);
+       setAcceptHoverEvents(true);
 }
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/kbbgraphicsitemrayresult.cpp 
new/kblackbox-15.12.0/kbbgraphicsitemrayresult.cpp
--- old/kblackbox-15.08.3/kbbgraphicsitemrayresult.cpp  2015-11-04 
19:39:25.000000000 +0100
+++ new/kblackbox-15.12.0/kbbgraphicsitemrayresult.cpp  2015-11-11 
10:38:19.000000000 +0100
@@ -70,9 +70,9 @@
                        m_notNumber = new 
KBBGraphicsItem(KBBScalableGraphicWidget::resultReflection, m_scene, 
themeManager);
                else
                        m_notNumber = new 
KBBGraphicsItem(KBBScalableGraphicWidget::resultHit, m_scene, themeManager);
-               m_notNumber->translate(radius,radius);
-               m_notNumber->rotate(rotationAngle());
-               m_notNumber->translate(-radius,-radius);
+               
m_notNumber->setTransform(QTransform::fromTranslate(radius,radius), true);
+               m_notNumber->setTransform(QTransform().rotate(rotationAngle()), 
true);
+               
m_notNumber->setTransform(QTransform::fromTranslate(-radius,-radius), true);
                m_notNumber->setPos(m_centerX - radius, m_centerY - radius);
        } else {
                QString text;
@@ -94,7 +94,7 @@
                m_number->setPos(radius - centerRadius/2 - 2*offset, radius - 
centerRadius + offset);
                
m_number->setZValue(themeManager->zValue(KBBScalableGraphicWidget::resultText));
        }
-       setAcceptsHoverEvents(true);
+       setAcceptHoverEvents(true);
 }
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/kblackbox.appdata.xml 
new/kblackbox-15.12.0/kblackbox.appdata.xml
--- old/kblackbox-15.08.3/kblackbox.appdata.xml 2015-11-04 19:39:25.000000000 
+0100
+++ new/kblackbox-15.12.0/kblackbox.appdata.xml 2015-11-11 10:38:19.000000000 
+0100
@@ -30,6 +30,7 @@
   <name xml:lang="sr-ijekavian">К‑црна‑кутија</name>
   <name xml:lang="sr-ijekavianlatin">K‑crna‑kutija</name>
   <name xml:lang="sv">Svarta lådan</name>
+  <name xml:lang="tr">KBlackBox</name>
   <name xml:lang="uk">KBlackbox</name>
   <name xml:lang="x-test">xxKBlackboxxx</name>
   <name xml:lang="zh-CN">KBlackbox</name>
@@ -60,6 +61,7 @@
   <summary xml:lang="sr-ijekavian">Логичка игра црне кутије</summary>
   <summary xml:lang="sr-ijekavianlatin">Logička igra crne kutije</summary>
   <summary xml:lang="sv">Svart låda logiskt spel</summary>
+  <summary xml:lang="tr">Karakutu Mantık Oyunu</summary>
   <summary xml:lang="uk">Гра на логіку (чорний скринька)</summary>
   <summary xml:lang="x-test">xxBlackbox Logic Gamexx</summary>
   <summary xml:lang="zh-CN">黑箱逻辑游戏</summary>
@@ -91,6 +93,7 @@
     <p xml:lang="sr-ijekavian">К‑црна‑кутија је игра скривања и налажења на 
мрежи кутија где је рачунар сакрио неколико лоптица. Положај скривених лоптица 
изводи се на основу испаљивања зракова у кутије.</p>
     <p xml:lang="sr-ijekavianlatin">K‑crna‑kutija je igra skrivanja i 
nalaženja na mreži kutija gde je računar sakrio nekoliko loptica. Položaj 
skrivenih loptica izvodi se na osnovu ispaljivanja zrakova u kutije.</p>
     <p xml:lang="sv">Svara lådan är ett kurragömmaspel som spelas på ett 
rutmönster av lådor där datorn har dolt flera kulor. Positionen för de dolda 
kulorna kan bestämmas genom att skjuta in strålar i lådan.</p>
+    <p xml:lang="tr">KBlackbox bilgisayarın bir çok top sakladığı kutuların 
ızgarası üzerinde oynana bir saklambaç oyunudur. Gizli topların konumu kutuya 
vuran ışınlardan çıkartılabilir.</p>
     <p xml:lang="uk">KBlackbox — гра у знаходження кульок, прихованих 
комп’ютером на полі. Розташування прихованих кульок можна визначити за 
допомогою просвічування поля променями.</p>
     <p xml:lang="x-test">xxKBlackbox is a game of hide and seek played on a 
grid of boxes where the computer has hidden several balls. The position of the 
hidden balls can be deduced by shooting beams into the box.xx</p>
     <p xml:lang="zh-TW">KBlackbox 是一款益智遊戲。您要打出探照燈,依照反射的規則找出黑盒子內所有藏起來的球。</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kblackbox-15.08.3/main.cpp 
new/kblackbox-15.12.0/main.cpp
--- old/kblackbox-15.08.3/main.cpp      2015-11-04 19:39:25.000000000 +0100
+++ new/kblackbox-15.12.0/main.cpp      2015-11-11 10:38:19.000000000 +0100
@@ -51,10 +51,11 @@
     migrate.setUiFiles(QStringList() << QStringLiteral("kblackboxui.rc"));
     migrate.migrate();
     KLocalizedString::setApplicationDomain("kblackbox");
-    KAboutData aboutData( QLatin1String("kblackbox"), i18n("KBlackBox"), 
QLatin1String("0.5.0"), i18n("Find the balls hidden in the black box by 
shooting laser beams!"), KAboutLicense::GPL, i18n("(c) 2007, Nicolas 
Roffet\n(c) 1999-2000, Robert Cimrman"), 
QLatin1String("http://games.kde.org/kblackbox";) );
+    KAboutData aboutData( QLatin1String("kblackbox"), i18n("KBlackBox"), 
QLatin1String("0.5.0"), i18n("Find the balls hidden in the black box by 
shooting laser beams!"), KAboutLicense::GPL, i18n("(c) 2007, Nicolas 
Roffet\n(c) 1999-2000, Robert Cimrman"));
     aboutData.addAuthor(i18n("Nicolas Roffet"),i18n("Developer of version 
0.4."), QLatin1String("nicolas-...@roffet.com"));
     aboutData.addAuthor(i18n("Robert Cimrman"),i18n("Original developer"), 
QLatin1String("cimrm...@students.zcu.cz"));
     aboutData.addCredit(i18n("Johann Ollivier Lapeyre"), i18n("Artist"), 
QLatin1String("johann.ollivierlape...@gmail.com"));
+    aboutData.setHomepage(QLatin1String("http://games.kde.org/kblackbox";));
     QCommandLineParser parser;
     KAboutData::setApplicationData(aboutData);
     parser.addVersionOption();


Reply via email to