Hello community, here is the log from the commit of package kiriki for openSUSE:Factory checked in at 2016-05-29 03:10:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kiriki (Old) and /work/SRC/openSUSE:Factory/.kiriki.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kiriki" Changes: -------- --- /work/SRC/openSUSE:Factory/kiriki/kiriki.changes 2016-03-29 09:58:37.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kiriki.new/kiriki.changes 2016-05-29 03:10:36.000000000 +0200 @@ -1,0 +2,24 @@ +Sat May 7 10:30:09 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:06:05 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:42:31 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: ---- kiriki-15.12.3.tar.xz New: ---- kiriki-16.04.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kiriki.spec ++++++ --- /var/tmp/diff_new_pack.RpDDZW/_old 2016-05-29 03:10:37.000000000 +0200 +++ /var/tmp/diff_new_pack.RpDDZW/_new 2016-05-29 03:10:37.000000000 +0200 @@ -50,7 +50,7 @@ License: GPL-2.0+ Group: Amusements/Games/Board/Other Url: http://www.kde.org -Version: 15.12.3 +Version: 16.04.1 Release: 0 Source0: kiriki-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ kiriki-15.12.3.tar.xz -> kiriki-16.04.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/CMakeLists.txt new/kiriki-16.04.1/CMakeLists.txt --- old/kiriki-15.12.3/CMakeLists.txt 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/CMakeLists.txt 2016-04-12 14:31:40.000000000 +0200 @@ -2,6 +2,7 @@ cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR) set (QT_MIN_VERSION "5.3.0") +set (KF5_MIN_VERSION "5.15.0") find_package(ECM 1.7.0 REQUIRED CONFIG) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) @@ -10,6 +11,7 @@ find_package(KF5 REQUIRED COMPONENTS CoreAddons Config + Crash DBusAddons DocTools I18n diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/src/CMakeLists.txt new/kiriki-16.04.1/src/CMakeLists.txt --- old/kiriki-15.12.3/src/CMakeLists.txt 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/src/CMakeLists.txt 2016-04-12 14:31:40.000000000 +0200 @@ -20,7 +20,15 @@ ecm_add_app_icon(kiriki_SRCS ICONS ${ICONS_SRCS}) add_executable(kiriki ${kiriki_SRCS}) -target_link_libraries(kiriki KF5KDEGames KF5::XmlGui KF5::I18n KF5::IconThemes KF5::DBusAddons Qt5::PrintSupport) +target_link_libraries(kiriki + KF5KDEGames + KF5::XmlGui + KF5::I18n + KF5::IconThemes + KF5::DBusAddons + KF5::Crash + Qt5::PrintSupport + ) install(TARGETS kiriki ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/src/computer.cpp new/kiriki-16.04.1/src/computer.cpp --- old/kiriki-15.12.3/src/computer.cpp 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/src/computer.cpp 2016-04-12 14:31:40.000000000 +0200 @@ -697,7 +697,7 @@ bestv = bc_table[i].value; } - for (i=0; i<5; i++) + for (i=0; i<5; ++i) DiceValues[i].sel = bc_table[best].rerolls[i]; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/src/itemdelegate.h new/kiriki-16.04.1/src/itemdelegate.h --- old/kiriki-15.12.3/src/itemdelegate.h 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/src/itemdelegate.h 2016-04-12 14:31:40.000000000 +0200 @@ -16,7 +16,7 @@ { Q_OBJECT public: - itemDelegate(int height, QObject *parent = 0); + explicit itemDelegate(int height, QObject *parent = 0); QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const; void setHeight(int height); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/src/kiriki.cpp new/kiriki-16.04.1/src/kiriki.cpp --- old/kiriki-15.12.3/src/kiriki.cpp 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/src/kiriki.cpp 2016-04-12 14:31:40.000000000 +0200 @@ -16,6 +16,7 @@ #include <QItemDelegate> #include <QItemSelectionModel> #include <QPainter> +#include <QPointer> #include <QPrintDialog> #include <QPrinter> #include <QStyledItemDelegate> @@ -276,7 +277,7 @@ m_hintAction -> setEnabled(false); if (p.isHuman()) { - KScoreDialog sc(KScoreDialog::Name | KScoreDialog::Score | KScoreDialog::Date, this); + QPointer<KScoreDialog> sc = new KScoreDialog(KScoreDialog::Name | KScoreDialog::Score | KScoreDialog::Date, this); if (m_hintGiven) m_hintGiven = false; else { @@ -286,11 +287,12 @@ const QString datestring = date.toString(Qt::DefaultLocaleShortDate); scoreInfo[KScoreDialog::Date] = datestring; - if (sc.addScore(scoreInfo)) + if (sc->addScore(scoreInfo)) { - sc.exec(); + sc->exec(); } } + delete sc; } if (m_demoAction -> isChecked()) QTimer::singleShot(3000, this, &kiriki::demo); } @@ -321,11 +323,11 @@ m_fontSize = kirikiSettings::fontSize(); m_rowHeight = kirikiSettings::rowHeight(); - KConfigDialog *configDialog = new KConfigDialog(this, QStringLiteral("settings"), kirikiSettings::self()); + QPointer<KConfigDialog> configDialog = new KConfigDialog(this, QStringLiteral("settings"), kirikiSettings::self()); configDialog->setFaceType(KConfigDialog::Plain); - configDialog -> addPage(new configWidget(configDialog), QString(), QString()); - connect(configDialog, &KConfigDialog::settingsChanged, this, &kiriki::settingsChanged); - configDialog -> exec(); + configDialog->addPage(new configWidget(configDialog), QString(), QString()); + connect(configDialog.data(), &KConfigDialog::settingsChanged, this, &kiriki::settingsChanged); + configDialog->exec(); delete configDialog; bool changed = nPlayers != kirikiSettings::numberOfPlayers() || @@ -350,7 +352,7 @@ { QPrinter printer; printer.setFullPage( true ); - QPrintDialog *printDialog = new QPrintDialog(&printer, this); + QPointer<QPrintDialog> printDialog = new QPrintDialog(&printer, this); if (printDialog->exec()) { QPainter painter(&printer); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/src/kiriki.kcfg new/kiriki-16.04.1/src/kiriki.kcfg --- old/kiriki-15.12.3/src/kiriki.kcfg 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/src/kiriki.kcfg 2016-04-12 14:31:40.000000000 +0200 @@ -2,17 +2,17 @@ <kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 - http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > - <kcfgfile name="kirikirc" /> + http://www.kde.org/standards/kcfg/1.0/kcfg.xsd"> <include>KLocalizedString</include> <include>QFont</include> + <kcfgfile name="kirikirc"/> <group name="general"> - <entry key="waitTime" type="Int" > + <entry key="waitTime" type="Int"> <default>150</default> <min>0</min> <max>2000</max> </entry> - <entry key="numberOfPlayers" type="Int" > + <entry key="numberOfPlayers" type="Int"> <default>6</default> <min>2</min> <max>6</max> @@ -20,7 +20,7 @@ <entry key="startupDemoEnabled" type="Bool"> <default>true</default> </entry> - <entry key="fontSize" type="Int"> + <entry key="fontSize" type="Int"> <min>5</min> <max>20</max> <code> @@ -28,63 +28,63 @@ int defaultSize = f.pointSize(); </code> <default code="true">defaultSize</default> - </entry> + </entry> <entry key="rowHeight" type="Int"> <max>20</max> <default code="true">defaultSize</default> </entry> - <entry key="player1Name" type="String" > + <entry key="player1Name" type="String"> <code> QString playerName1 = i18nc("default name of first player", "Albert"); </code> <default code="true">playerName1</default> </entry> - <entry key="player2Name" type="String" > + <entry key="player2Name" type="String"> <code> QString playerName2 = i18nc("default name of second player", "Janet"); </code> <default code="true">playerName2</default> </entry> - <entry key="player3Name" type="String" > + <entry key="player3Name" type="String"> <code> QString playerName3 = i18nc("default name of third player", "James"); </code> <default code="true">playerName3</default> </entry> - <entry key="player4Name" type="String" > + <entry key="player4Name" type="String"> <code> QString playerName4 = i18nc("default name of fourth player", "Sandra"); </code> <default code="true">playerName4</default> </entry> - <entry key="player5Name" type="String" > + <entry key="player5Name" type="String"> <code> QString playerName5 = i18nc("default name of fifth player", "Thomas"); </code> <default code="true">playerName5</default> </entry> - <entry key="player6Name" type="String" > + <entry key="player6Name" type="String"> <code> QString playerName6 = i18nc("default name of sixth player", "Margaret"); </code> <default code="true">playerName6</default> </entry> - <entry key="player1IsHuman" type="Bool" > + <entry key="player1IsHuman" type="Bool"> <default>true</default> </entry> - <entry key="player2IsHuman" type="Bool" > + <entry key="player2IsHuman" type="Bool"> <default>false</default> </entry> - <entry key="player3IsHuman" type="Bool" > + <entry key="player3IsHuman" type="Bool"> <default>false</default> </entry> - <entry key="player4IsHuman" type="Bool" > + <entry key="player4IsHuman" type="Bool"> <default>false</default> </entry> - <entry key="player5IsHuman" type="Bool" > + <entry key="player5IsHuman" type="Bool"> <default>false</default> </entry> - <entry key="player6IsHuman" type="Bool" > + <entry key="player6IsHuman" type="Bool"> <default>false</default> </entry> </group> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/src/main.cpp new/kiriki-16.04.1/src/main.cpp --- old/kiriki-15.12.3/src/main.cpp 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/src/main.cpp 2016-04-12 14:31:40.000000000 +0200 @@ -8,7 +8,7 @@ ***************************************************************************/ #include <KAboutData> - +#include <KCrash> #include <KLocalizedString> #include <QApplication> @@ -26,6 +26,7 @@ about.setHomepage(QStringLiteral("http://games.kde.org/kiriki")); QCommandLineParser parser; KAboutData::setApplicationData(about); + KCrash::initialize(); parser.addVersionOption(); parser.addHelpOption(); about.setupCommandLine(&parser); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiriki-15.12.3/src/org.kde.kiriki.appdata.xml new/kiriki-16.04.1/src/org.kde.kiriki.appdata.xml --- old/kiriki-15.12.3/src/org.kde.kiriki.appdata.xml 2016-02-08 16:00:58.000000000 +0100 +++ new/kiriki-16.04.1/src/org.kde.kiriki.appdata.xml 2016-04-12 14:31:40.000000000 +0200 @@ -4,13 +4,13 @@ <metadata_license>CC0-1.0</metadata_license> <project_license>GPL-2.0+</project_license> <name>Kiriki</name> + <name xml:lang="ast">Kiriki</name> <name xml:lang="ca">Kiriki</name> <name xml:lang="ca-valencia">Kiriki</name> <name xml:lang="cs">Kiriki</name> <name xml:lang="de">Kiriki</name> <name xml:lang="en-GB">Kiriki</name> <name xml:lang="es">Kiriki</name> - <name xml:lang="et">Kiriki</name> <name xml:lang="fi">Kiriki</name> <name xml:lang="gl">Kiriki</name> <name xml:lang="nl">Kiriki</name> @@ -31,13 +31,13 @@ <name xml:lang="zh-CN">Kiriki</name> <name xml:lang="zh-TW">Kiriki</name> <summary>Yahtzee-like Dice Game</summary> + <summary xml:lang="ast">Xuegu de daos paecíu a Yahtzee</summary> <summary xml:lang="ca">Joc de daus com el Yahtzee</summary> <summary xml:lang="ca-valencia">Joc de daus com el Yahtzee</summary> <summary xml:lang="cs">Hra s kostkami podobná Yahtzee</summary> <summary xml:lang="de">„Kniffel“-Würfelspiel</summary> <summary xml:lang="en-GB">Yahtzee-like Dice Game</summary> <summary xml:lang="es">Juego de dados similar al Yahtzee</summary> - <summary xml:lang="et">Yahtzee moodi täringumäng</summary> <summary xml:lang="fi">Yatzy-mainen noppapeli</summary> <summary xml:lang="gl">Xogo de dados ao estilo do «Yahtzee»</summary> <summary xml:lang="nl">Yahtzee-achtig dobbelsteenspel</summary> @@ -67,7 +67,6 @@ <p xml:lang="de">Kiriki ist ein Würfelspiel, das mit bis zu sechs Spielern gespielt werden kann. Die Spieler sammeln Punkte, indem Sie die fünf Würfel in einem Zug bis zu drei Mal würfeln.</p> <p xml:lang="en-GB">Kiriki is an addictive and fun dice game, designed to be played by as many as six players. Participants have to collect points by rolling five dice for up to three times per single turn.</p> <p xml:lang="es">Kiriki es un juego de dados divertido y adictivo, en el que pueden participar hasta seis jugadores. Los participantes deben reunir puntos tirando cinco dados hasta tres veces en cada turno.</p> - <p xml:lang="et">Kiriki on köitev ja lõbus täringumäng, mida võib mängida kuni kuus mängijat. Mängijad peavad koguma punkte, veeretades viit täringut ühes voorus kuni kolm korda.</p> <p xml:lang="fi">Kiriki on hauska ja koukuttava noppapeli, joka on suunniteltu jopa kuudelle pelaajalle. Pelaajat keräävät pisteitä heittämällä viittä noppaa enintään kolmesti kullakin vuorolla.</p> <p xml:lang="gl">Kiriki é un xogo de dados adictivo e divertido, deseñado para ata 6 xogadores. Os xogadores teñen que reunir puntos tirando 5 dados ata 3 veces por quenda.</p> <p xml:lang="nl">Kiriki is een verslavend en plezierig spel met dobbelstenen, ontworpen om gespeeld te worden door zoveel als zes spelers. Deelnemers moeten punten verzamelen door vijf dobbelstenen tot drie keer per enkele beurt te gooien.</p>
