Hello community, here is the log from the commit of package kapman for openSUSE:Factory checked in at 2017-08-28 15:05:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kapman (Old) and /work/SRC/openSUSE:Factory/.kapman.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kapman" Mon Aug 28 15:05:36 2017 rev:64 rq:516319 version:17.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kapman/kapman.changes 2017-07-29 08:56:07.533602989 +0200 +++ /work/SRC/openSUSE:Factory/.kapman.new/kapman.changes 2017-08-28 15:05:58.215180542 +0200 @@ -1,0 +2,17 @@ +Fri Aug 11 22:45:07 UTC 2017 - [email protected] + +- Update to KDE Applications 17.08.0 + * New feature release + * https://www.kde.org/announcements/announce-applications-17.08.0.php +- Changes since 17.04.3 : + * Use Q_DECL_OVERRIDE + +------------------------------------------------------------------- +Sat Aug 5 18:17:05 UTC 2017 - [email protected] + +- Update to KDE Applications 17.07.90 + * KDE Applications 17.07.90 + * https://www.kde.org/announcements/announce-applications-17.07.90.php + + +------------------------------------------------------------------- Old: ---- kapman-17.04.3.tar.xz New: ---- kapman-17.08.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kapman.spec ++++++ --- /var/tmp/diff_new_pack.TB2yc3/_old 2017-08-28 15:05:59.538994335 +0200 +++ /var/tmp/diff_new_pack.TB2yc3/_new 2017-08-28 15:05:59.586987584 +0200 @@ -1,7 +1,7 @@ # # spec file for package kapman # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,13 +15,14 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %bcond_without lang Name: kapman -Version: 17.04.3 +Version: 17.08.0 Release: 0 %define kf5_version 5.26.0 -# Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA) +# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} Summary: Pac-Man-like game for KDE License: GPL-2.0+ @@ -52,7 +53,9 @@ BuildRequires: pkgconfig(Qt5Widgets) Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} +%if %{with lang} Recommends: %{name}-lang +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -83,14 +86,14 @@ %files %defattr(-,root,root) %doc COPYING COPYING.DOC -%{_kf5_bindir}/kapman +%{_kf5_sharedir}/sounds/kapman/ %{_kf5_applicationsdir}/org.kde.kapman.desktop -%{_kf5_htmldir}/en/kapman/ -%{_kf5_iconsdir}/hicolor/*/apps/kapman.* %{_kf5_appsdir}/kapman/ -%{_datadir}/sounds/kapman/ %{_kf5_appstreamdir}/ -%{_datadir}/kxmlgui5/kapman/ +%{_kf5_bindir}/kapman +%doc %lang(en) %{_kf5_htmldir}/en/kapman/ +%{_kf5_iconsdir}/hicolor/*/apps/kapman.* +%{_kf5_kxmlguidir}/kapman/ %if %{with lang} %files lang -f %{name}.lang ++++++ kapman-17.04.3.tar.xz -> kapman-17.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/bonus.h new/kapman-17.08.0/bonus.h --- old/kapman-17.04.3/bonus.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/bonus.h 2017-07-15 16:12:39.000000000 +0200 @@ -49,7 +49,7 @@ * Computes an action on a collision with the Kapman. * @param p_kapman the Kapman instance that collides with the Bonus */ - void doActionOnCollision(Kapman *p_kapman); + void doActionOnCollision(Kapman *p_kapman) Q_DECL_OVERRIDE; /** * Sets the given value to the Bonus. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/characteritem.h new/kapman-17.08.0/characteritem.h --- old/kapman-17.04.3/characteritem.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/characteritem.h 2017-07-15 16:12:39.000000000 +0200 @@ -57,7 +57,7 @@ * This function is used to determinate collision between items * @return QPainterPath the new shape of the Character */ - QPainterPath shape() const; + QPainterPath shape() const Q_DECL_OVERRIDE; public slots: @@ -66,7 +66,7 @@ * @param p_x the new x-coordinate * @param p_y the new y-coordinate */ - virtual void update(qreal p_x, qreal p_y); + void update(qreal p_x, qreal p_y) Q_DECL_OVERRIDE; /** * Starts the character blinking. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/elementitem.h new/kapman-17.08.0/elementitem.h --- old/kapman-17.04.3/elementitem.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/elementitem.h 2017-07-15 16:12:39.000000000 +0200 @@ -61,7 +61,7 @@ /** * Reimplement QGraphicsItem::shape() to return an ellipse to improve collisions. */ - QPainterPath shape() const; + QPainterPath shape() const Q_DECL_OVERRIDE; public slots: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/energizer.h new/kapman-17.08.0/energizer.h --- old/kapman-17.04.3/energizer.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/energizer.h 2017-07-15 16:12:39.000000000 +0200 @@ -61,7 +61,7 @@ * Computes an action on a collision with the Kapman. * @param p_kapman the instance of Kapman which collides with the Energyzer */ - void doActionOnCollision(Kapman *p_kapman); + void doActionOnCollision(Kapman *p_kapman) Q_DECL_OVERRIDE; }; #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/gameview.h new/kapman-17.08.0/gameview.h --- old/kapman-17.04.3/gameview.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/gameview.h 2017-07-15 16:12:39.000000000 +0200 @@ -49,7 +49,7 @@ * Resizes the items when the view is resized. * @param p_event the resize event */ - void resizeEvent(QResizeEvent *p_event); + void resizeEvent(QResizeEvent *p_event) Q_DECL_OVERRIDE; protected: @@ -57,13 +57,13 @@ * Manages the player actions by hanlding the key press events. * @param p_event the key press event */ - void keyPressEvent(QKeyEvent *p_event); + void keyPressEvent(QKeyEvent *p_event) Q_DECL_OVERRIDE; /** * Pauses the game on focus lost. * @param p_event the focus event */ - void focusOutEvent(QFocusEvent *p_event); + void focusOutEvent(QFocusEvent *p_event) Q_DECL_OVERRIDE; signals: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/ghost.h new/kapman-17.08.0/ghost.h --- old/kapman-17.04.3/ghost.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/ghost.h 2017-07-15 16:12:39.000000000 +0200 @@ -75,7 +75,7 @@ /** * Updates the Ghost move. */ - void updateMove(); + void updateMove() Q_DECL_OVERRIDE; /** * Updates the Ghost with a direction to follow. @@ -106,34 +106,34 @@ * Manages the collison with the Kapman. * @param p_kapman the instance of Kapman which collides with the Ghost */ - void doActionOnCollision(Kapman *p_kapman); + void doActionOnCollision(Kapman *p_kapman) Q_DECL_OVERRIDE; /** * Initializes the Ghost speed from the Character speed. */ - void initSpeedInc(); + void initSpeedInc() Q_DECL_OVERRIDE; private: /** * Makes the Ghost go up. */ - void goUp(); + void goUp() Q_DECL_OVERRIDE; /** * Makes the Ghost go down. */ - void goDown(); + void goDown() Q_DECL_OVERRIDE; /** * Makes the Ghost go to the right. */ - void goRight(); + void goRight() Q_DECL_OVERRIDE; /** * Makes the Ghost go to the left. */ - void goLeft(); + void goLeft() Q_DECL_OVERRIDE; signals: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/ghostitem.h new/kapman-17.08.0/ghostitem.h --- old/kapman-17.04.3/ghostitem.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/ghostitem.h 2017-07-15 16:12:39.000000000 +0200 @@ -60,7 +60,7 @@ * @param p_x the new x-coordinate * @param p_y the new y-coordinate */ - void update(qreal p_x, qreal p_y); + void update(qreal p_x, qreal p_y) Q_DECL_OVERRIDE; /** * Update the image function of the Ghost state. @@ -70,7 +70,7 @@ /** * Implements the CharacterItem method. */ - void blink(); + void blink() Q_DECL_OVERRIDE; }; #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/kapman.h new/kapman-17.08.0/kapman.h --- old/kapman-17.04.3/kapman.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/kapman.h 2017-07-15 16:12:39.000000000 +0200 @@ -59,27 +59,27 @@ /** * Makes the Kapman ask to go up */ - void goUp(); + void goUp() Q_DECL_OVERRIDE; /** * Makes the Kapman ask to go down */ - void goDown(); + void goDown() Q_DECL_OVERRIDE; /** * Makes the Kapman ask to go to the right */ - void goRight(); + void goRight() Q_DECL_OVERRIDE; /** * Makes the Kapman ask to go to the left */ - void goLeft(); + void goLeft() Q_DECL_OVERRIDE; /** * Updates the Kapman move */ - void updateMove(); + void updateMove() Q_DECL_OVERRIDE; /** * @return the asked x speed value @@ -110,7 +110,7 @@ /** * Initializes the Kapman speed from the Character speed. */ - void initSpeedInc(); + void initSpeedInc() Q_DECL_OVERRIDE; private: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/kapmanitem.h new/kapman-17.08.0/kapmanitem.h --- old/kapman-17.04.3/kapmanitem.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/kapmanitem.h 2017-07-15 16:12:39.000000000 +0200 @@ -77,7 +77,7 @@ * @param p_x the new x-coordinate * @param p_y the new y-coordinate */ - void update(qreal p_x, qreal p_y); + void update(qreal p_x, qreal p_y) Q_DECL_OVERRIDE; /** * Starts the KapmanItem animation. @@ -108,12 +108,12 @@ /** * Implements the CharacterItem method. */ - void startBlinking(); + void startBlinking() Q_DECL_OVERRIDE; /** * Implements the CharacterItem method. */ - void blink(); + void blink() Q_DECL_OVERRIDE; /** * Set if the KapmanItem should be rotated (set by theme flag RotateKapman). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/kapmanparser.h new/kapman-17.08.0/kapmanparser.h --- old/kapman-17.04.3/kapmanparser.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/kapmanparser.h 2017-07-15 16:12:39.000000000 +0200 @@ -55,17 +55,17 @@ /** * Implement QXmlDefaultHandler::characters */ - bool characters(const QString &ch); + bool characters(const QString &ch) Q_DECL_OVERRIDE; /** * Implements QXmlDefaultHandler::startElement() */ - bool startElement(const QString &, const QString &, const QString &p_qName, const QXmlAttributes &p_atts); + bool startElement(const QString &, const QString &, const QString &p_qName, const QXmlAttributes &p_atts) Q_DECL_OVERRIDE; /** * Implements QXmlDefaultHandler::endElement() */ - bool endElement(const QString &, const QString &, const QString &p_qName); + bool endElement(const QString &, const QString &, const QString &p_qName) Q_DECL_OVERRIDE; }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/pill.h new/kapman-17.08.0/pill.h --- old/kapman-17.04.3/pill.h 2017-05-24 09:25:21.000000000 +0200 +++ new/kapman-17.08.0/pill.h 2017-07-15 16:12:39.000000000 +0200 @@ -49,7 +49,7 @@ * Computes an action on a collision with the Kapman. * @param p_kapman the instance of Kapman which collides with the Pill */ - void doActionOnCollision(Kapman *p_kapman); + void doActionOnCollision(Kapman *p_kapman) Q_DECL_OVERRIDE; }; #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/po/de/docs/kapman/index.docbook new/kapman-17.08.0/po/de/docs/kapman/index.docbook --- old/kapman-17.04.3/po/de/docs/kapman/index.docbook 2017-07-11 02:21:22.000000000 +0200 +++ new/kapman-17.08.0/po/de/docs/kapman/index.docbook 2017-08-11 02:38:45.000000000 +0200 @@ -462,7 +462,7 @@ >Hilfe</guimenu >, weitere Informationen dazu finden Sie in den Abschnitten über die Menüs ><ulink url="help:/fundamentals/ui.html#menus-settings" >Einstellungen</ulink -> und <ulink url="help:/fundamentals/uihtml#menus-help" +> und <ulink url="help:/fundamentals/ui.html#menus-help" >Hilfe</ulink > der &kde;-Grundlagen. </para> </sect1> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/po/tr/kapman.po new/kapman-17.08.0/po/tr/kapman.po --- old/kapman-17.04.3/po/tr/kapman.po 2017-07-11 02:21:22.000000000 +0200 +++ new/kapman-17.08.0/po/tr/kapman.po 2017-08-11 02:38:45.000000000 +0200 @@ -12,8 +12,8 @@ "POT-Creation-Date: 2016-11-19 20:14+0100\n" "PO-Revision-Date: 2014-06-08 13:55+0000\n" "Last-Translator: Volkan Gezer <[email protected]>\n" -"Language-Team: Turkish " -"(http://www.transifex.com/projects/p/kdegames-k-tr/language/tr/)\n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/kdegames-k-tr/" +"language/tr/)\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-17.04.3/po/zh_CN/kapman.po new/kapman-17.08.0/po/zh_CN/kapman.po --- old/kapman-17.04.3/po/zh_CN/kapman.po 2017-07-11 02:21:22.000000000 +0200 +++ new/kapman-17.08.0/po/zh_CN/kapman.po 2017-08-11 02:38:45.000000000 +0200 @@ -1,22 +1,20 @@ -# translation of kapman.po to 简体中文 -# Copyright (C) YEAR This_file_is_part_of_KDE -# This file is distributed under the same license as the PACKAGE package. -# -# Ni Hui <[email protected]>, 2008, 2009, 2012. msgid "" msgstr "" -"Project-Id-Version: kapman\n" +"Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:14+0100\n" -"PO-Revision-Date: 2012-06-17 19:29+0800\n" -"Last-Translator: Ni Hui <[email protected]>\n" -"Language-Team: Chinese Simplified <[email protected]>\n" +"PO-Revision-Date: 2017-08-05 09:35-0400\n" +"Last-Translator: guoyunhebrave <[email protected]>\n" +"Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: kdeorg\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /kf5-stable/messages/kdegames/kapman.pot\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -206,6 +204,3 @@ #, kde-format msgid "Port to KgSound framework" msgstr "移植到 KgSound 框架" - -#~ msgid "Game difficulty level." -#~ msgstr "游戏难度等级。"
