Hello community,

here is the log from the commit of package kapman for openSUSE:Factory checked 
in at 2015-01-08 23:16:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kapman (Old)
 and      /work/SRC/openSUSE:Factory/.kapman.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kapman"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kapman/kapman.changes    2014-11-19 
20:23:20.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kapman.new/kapman.changes       2015-01-08 
23:16:15.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Dec 17 20:33:28 UTC 2014 - [email protected]
+
+- Update to KDE Applications 14.12.0
+   * KDE Applications 14.12.0
+   * See https://www.kde.org/announcements/announce-applications-14.12.0.php
+
+-------------------------------------------------------------------

Old:
----
  kapman-4.14.3.tar.xz

New:
----
  kapman-14.12.0.tar.xz

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

Other differences:
------------------
++++++ kapman.spec ++++++
--- /var/tmp/diff_new_pack.sv0UF7/_old  2015-01-08 23:16:16.000000000 +0100
+++ /var/tmp/diff_new_pack.sv0UF7/_new  2015-01-08 23:16:16.000000000 +0100
@@ -23,7 +23,7 @@
 License:        GPL-2.0+
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
-Version:        4.14.3
+Version:        14.12.0
 Release:        0
 Source0:        kapman-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ kapman-4.14.3.tar.xz -> kapman-14.12.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/characteritem.h 
new/kapman-14.12.0/characteritem.h
--- old/kapman-4.14.3/characteritem.h   2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/characteritem.h  2014-11-30 08:00:19.000000000 +0100
@@ -44,7 +44,7 @@
                 * Creates a new CharacterItem instance.
                 * @param p_model the Character model
                 */
-               CharacterItem(Character* p_model);
+               explicit CharacterItem(Character* p_model);
 
                /**
                 * Deletes the CharacterItem instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/elementitem.h 
new/kapman-14.12.0/elementitem.h
--- old/kapman-4.14.3/elementitem.h     2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/elementitem.h    2014-11-30 08:00:19.000000000 +0100
@@ -44,7 +44,7 @@
                 * Creates a new ElementItem instance.
                 * @param p_model the Element model
                 */
-               ElementItem(Element* p_model);
+               explicit ElementItem(Element* p_model);
 
                /**
                 * Deletes the ElementItem instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/gamescene.h 
new/kapman-14.12.0/gamescene.h
--- old/kapman-4.14.3/gamescene.h       2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/gamescene.h      2014-11-30 08:00:19.000000000 +0100
@@ -80,7 +80,7 @@
                 * Creates a new GameScene instance.
                 * @param p_game the Game instance whose elements must be 
contained in the GameScene in order to be drawn
                 */
-               GameScene(Game* p_game);
+               explicit GameScene(Game* p_game);
 
                /**
                 * Deletes the Game instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/gameview.h 
new/kapman-14.12.0/gameview.h
--- old/kapman-4.14.3/gameview.h        2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/gameview.h       2014-11-30 08:00:19.000000000 +0100
@@ -37,7 +37,7 @@
                 * Creates a new GameView instance.
                 * @param p_game the Game instance whose elements have to be 
drawn
                 */
-               GameView(Game* p_game);
+               explicit GameView(Game* p_game);
 
                /**
                 * Deletes the GameView instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/ghost.cpp new/kapman-14.12.0/ghost.cpp
--- old/kapman-4.14.3/ghost.cpp 2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/ghost.cpp        2014-11-30 08:00:19.000000000 +0100
@@ -67,8 +67,6 @@
        // Get the current cell coordinates from the character coordinates
        int curCellRow = m_maze->getRowFromY(m_y);
        int curCellCol = m_maze->getColFromX(m_x);
-       // Flag to know when the ghost has no choice but go back
-       bool halfTurnRequired = true;
        // Contains the different directions a ghost can choose when on a cell 
center
        QList<QPointF> directionsList;
        int nb = 0;
@@ -77,13 +75,12 @@
        if (m_state != Ghost::EATEN) {
                // If the ghost gets on a Cell center
                if (onCenter()) {
-                       // We retrieve all the directions the ghost can choose 
(save the turnning back)
+                       // We retrieve all the directions the ghost can choose 
(save the turning back)
                        if (m_maze->getCell(curCellRow, curCellCol + 
1).getType() == Cell::CORRIDOR || 
                                        (m_maze->getCell(curCellRow, 
curCellCol).getType() == Cell::GHOSTCAMP &&
                                         m_maze->getCell(curCellRow, curCellCol 
+ 1).getType() == Cell::GHOSTCAMP)) {
                                if (m_xSpeed >= 0) {
                                        directionsList.append(QPointF(m_speed, 
0.0));
-                                       halfTurnRequired = false;
                                }
                        }
                        if (m_maze->getCell(curCellRow + 1, 
curCellCol).getType() == Cell::CORRIDOR ||
@@ -91,7 +88,6 @@
                                         m_maze->getCell(curCellRow + 1, 
curCellCol).getType() == Cell::GHOSTCAMP)) {
                                if (m_ySpeed >= 0) {
                                        directionsList.append(QPointF(0.0, 
m_speed));
-                                       halfTurnRequired = false;
                                }
                        }
                        if (m_maze->getCell(curCellRow - 1, 
curCellCol).getType() == Cell::CORRIDOR ||
@@ -99,7 +95,6 @@
                                         m_maze->getCell(curCellRow - 1, 
curCellCol).getType() == Cell::GHOSTCAMP)) {
                                if (m_ySpeed <= 0) {
                                        directionsList.append(QPointF(0.0, 
-m_speed));
-                                       halfTurnRequired = false;
                                }
                        }
                        if (m_maze->getCell(curCellRow, curCellCol - 
1).getType() == Cell::CORRIDOR ||
@@ -107,7 +102,6 @@
                                         m_maze->getCell(curCellRow, curCellCol 
- 1).getType() == Cell::GHOSTCAMP)) {
                                if (m_xSpeed <= 0) {
                                        directionsList.append(QPointF(-m_speed, 
0.0));
-                                       halfTurnRequired = false;
                                }
                        }
                        // Random number generation to choose one of the 
directions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/ghostitem.h 
new/kapman-14.12.0/ghostitem.h
--- old/kapman-4.14.3/ghostitem.h       2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/ghostitem.h      2014-11-30 08:00:19.000000000 +0100
@@ -40,7 +40,7 @@
                 * Creates a new GhostItem instance.
                 * @param p_model the Ghost model
                 */
-               GhostItem(Ghost* p_model);
+               explicit GhostItem(Ghost* p_model);
 
                /**
                 * Deletes the CharacterItem instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/kapman.desktop 
new/kapman-14.12.0/kapman.desktop
--- old/kapman-4.14.3/kapman.desktop    2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/kapman.desktop   2014-11-30 08:00:19.000000000 +0100
@@ -90,7 +90,7 @@
 GenericName[ro]=Clonă Pac-Man
 GenericName[ru]=Клон Pac-Man
 GenericName[sk]=Klon Pac-mana
-GenericName[sl]=Klon Pac-Mana
+GenericName[sl]=Dvojnik Pac-Mana
 GenericName[sr]=Клон Пакмена
 GenericName[sr@ijekavian]=Клон Пакмена
 GenericName[sr@ijekavianlatin]=Klon Pacmana
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/kapmanitem.h 
new/kapman-14.12.0/kapmanitem.h
--- old/kapman-4.14.3/kapmanitem.h      2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/kapmanitem.h     2014-11-30 08:00:19.000000000 +0100
@@ -52,7 +52,7 @@
                 * Creates a new KapmanItem instance.
                 * @param p_model the Kapman model
                 */
-               KapmanItem(Kapman* p_model);
+               explicit KapmanItem(Kapman* p_model);
 
                /**
                 * Deletes the KapmanItem instance.
@@ -116,7 +116,7 @@
 
                /**
                 * Set if the KapmanItem should be rotated (set by theme flag 
RotateKapman).
-                * @param 0 or 1
+                * @param rotate 0 or 1
                 */
                void setRotationFlag(bool rotate) { m_rotationFlag=rotate; }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-4.14.3/kapmanparser.h 
new/kapman-14.12.0/kapmanparser.h
--- old/kapman-4.14.3/kapmanparser.h    2014-03-02 06:35:57.000000000 +0100
+++ new/kapman-14.12.0/kapmanparser.h   2014-11-30 08:00:19.000000000 +0100
@@ -44,7 +44,7 @@
                 * Creates a new GameParser.
                 * @param p_game the Game to initialize
                 */
-                KapmanParser(Game* p_game);
+                explicit KapmanParser(Game* p_game);
                
                /**
                 * Deletes the GameParser instance.

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to