Hello community, here is the log from the commit of package kreversi for openSUSE:Factory checked in at 2019-10-28 16:52:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kreversi (Old) and /work/SRC/openSUSE:Factory/.kreversi.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kreversi" Mon Oct 28 16:52:55 2019 rev:89 rq:737807 version:19.08.2 Changes: -------- --- /work/SRC/openSUSE:Factory/kreversi/kreversi.changes 2019-09-11 10:30:27.863382097 +0200 +++ /work/SRC/openSUSE:Factory/.kreversi.new.2990/kreversi.changes 2019-10-28 16:53:50.741271712 +0100 @@ -1,0 +2,12 @@ +Fri Oct 11 07:43:06 UTC 2019 - Luca Beltrame <[email protected]> + +- Update to 19.08.2 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08.2.php +- Changes since 19.08.1: + * Fix compile on Windows (more) + * Fix compile on windows + * Add DesktopEntry to notifyrc + +------------------------------------------------------------------- Old: ---- kreversi-19.08.1.tar.xz kreversi-19.08.1.tar.xz.sig New: ---- kreversi-19.08.2.tar.xz kreversi-19.08.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kreversi.spec ++++++ --- /var/tmp/diff_new_pack.rdAkf4/_old 2019-10-28 16:53:51.329272460 +0100 +++ /var/tmp/diff_new_pack.rdAkf4/_new 2019-10-28 16:53:51.333272465 +0100 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kreversi -Version: 19.08.1 +Version: 19.08.2 Release: 0 Summary: Reversi board game License: GPL-2.0-or-later ++++++ kreversi-19.08.1.tar.xz -> kreversi-19.08.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kreversi-19.08.1/kexthighscore.h new/kreversi-19.08.2/kexthighscore.h --- old/kreversi-19.08.1/kexthighscore.h 2019-07-02 07:37:01.000000000 +0200 +++ new/kreversi-19.08.2/kexthighscore.h 2019-10-07 23:16:55.000000000 +0200 @@ -40,23 +40,23 @@ /** * Get the current game type. */ -KDEGAMES_EXPORT uint gameType(); + uint gameType(); /** * Set the current game type. */ -KDEGAMES_EXPORT void setGameType(uint gameType); + void setGameType(uint gameType); /** * Configure the highscores. * @return true if the configuration has been modified and saved */ -KDEGAMES_EXPORT bool configure(QWidget *parent); + bool configure(QWidget *parent); /** * Show the highscores lists. */ -KDEGAMES_EXPORT void show(QWidget *parent); + void show(QWidget *parent); /** * Submit a score. See @ref Manager for usage example. @@ -64,19 +64,19 @@ * @param score the players score * @param widget a widget used as parent for error message box. */ -KDEGAMES_EXPORT void submitScore(const Score &score, QWidget *widget); + void submitScore(const Score &score, QWidget *widget); /** * @return the last score in the local list of highscores. The worst possible * score if there are less items than the maximum number. */ -KDEGAMES_EXPORT Score lastScore(); + Score lastScore(); /** * @return the first score in the local list of highscores (the worst possible * score if there is no entry). */ -KDEGAMES_EXPORT Score firstScore(); + Score firstScore(); /** * This class manages highscores and players entries (several players can @@ -137,7 +137,7 @@ * and the value of the items that you have optionally added * with Score::setData() player name and date are set automatically. */ -class KDEGAMES_EXPORT Manager +class Manager { public: /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kreversi-19.08.1/kexthighscore_internal.cpp new/kreversi-19.08.2/kexthighscore_internal.cpp --- old/kreversi-19.08.1/kexthighscore_internal.cpp 2019-07-02 07:37:01.000000000 +0200 +++ new/kreversi-19.08.2/kexthighscore_internal.cpp 2019-10-07 23:16:55.000000000 +0200 @@ -19,7 +19,6 @@ #include "kexthighscore_internal.h" -#include <pwd.h> #include <sys/types.h> #include <unistd.h> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kreversi-19.08.1/kexthighscore_item.h new/kreversi-19.08.2/kexthighscore_item.h --- old/kreversi-19.08.1/kexthighscore_item.h 2019-07-02 07:37:01.000000000 +0200 +++ new/kreversi-19.08.2/kexthighscore_item.h 2019-10-07 23:16:55.000000000 +0200 @@ -36,7 +36,7 @@ * a highscore element (such as the score, the date, ...) or a player * info (such as the player name, the best score, ...). */ -class KDEGAMES_EXPORT Item +class Item { public: /** @@ -168,14 +168,14 @@ enum ScoreType { Won = 0, Lost = -1, Draw = -2 }; class Score; -KDEGAMES_EXPORT QDataStream &operator <<(QDataStream &stream, const Score &score); -KDEGAMES_EXPORT QDataStream &operator >>(QDataStream &stream, Score &score); + QDataStream &operator <<(QDataStream &stream, const Score &score); + QDataStream &operator >>(QDataStream &stream, Score &score); /** * This class contains data for a score. You should not inherit from * this class but reimplement the methods in Highscores. */ -class KDEGAMES_EXPORT Score +class Score { public: Score(ScoreType type = Won); @@ -240,13 +240,13 @@ friend class MultiplayerScores; - friend KDEGAMES_EXPORT QDataStream &operator <<(QDataStream &stream, const Score &score); - friend KDEGAMES_EXPORT QDataStream &operator >>(QDataStream &stream, Score &score); + friend QDataStream &operator <<(QDataStream &stream, const Score &score); + friend QDataStream &operator >>(QDataStream &stream, Score &score); }; class MultiplayerScores; -KDEGAMES_EXPORT QDataStream &operator <<(QDataStream &stream, const MultiplayerScores &score); -KDEGAMES_EXPORT QDataStream &operator >>(QDataStream &stream, MultiplayerScores &score); + QDataStream &operator <<(QDataStream &stream, const MultiplayerScores &score); + QDataStream &operator >>(QDataStream &stream, MultiplayerScores &score); /** * This class is used to store and show scores for multiplayer games. @@ -268,7 +268,7 @@ * ms.addScore(1, score); * </pre> */ -class KDEGAMES_EXPORT MultiplayerScores +class MultiplayerScores { public: MultiplayerScores(); @@ -307,9 +307,9 @@ class MultiplayerScoresPrivate; MultiplayerScoresPrivate *d; - friend KDEGAMES_EXPORT QDataStream &operator <<(QDataStream &stream, + friend QDataStream &operator <<(QDataStream &stream, const MultiplayerScores &score); - friend KDEGAMES_EXPORT QDataStream &operator >>(QDataStream &stream, + friend QDataStream &operator >>(QDataStream &stream, MultiplayerScores &score); }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kreversi-19.08.1/po/zh_CN/kreversi.po new/kreversi-19.08.2/po/zh_CN/kreversi.po --- old/kreversi-19.08.1/po/zh_CN/kreversi.po 2019-09-03 03:39:43.000000000 +0200 +++ new/kreversi-19.08.2/po/zh_CN/kreversi.po 2019-10-08 02:15:55.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-08-30 07:43+0200\n" -"PO-Revision-Date: 2019-08-16 17:10\n" +"PO-Revision-Date: 2019-09-05 09:53\n" "Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kreversi-19.08.1/sounds/kreversi.notifyrc new/kreversi-19.08.2/sounds/kreversi.notifyrc --- old/kreversi-19.08.1/sounds/kreversi.notifyrc 2019-07-02 07:37:01.000000000 +0200 +++ new/kreversi-19.08.2/sounds/kreversi.notifyrc 2019-10-07 23:16:55.000000000 +0200 @@ -1,5 +1,6 @@ [Global] IconName=kreversi +DesktopEntry=org.kde.kreversi Comment=KReversi Game Comment[bs]=KReversi igra Comment[ca]=Joc KReversi
