[pentobi] branch master updated (c18d71b -> 402347e)

Juhani Numminen jsonic-guest at moszumanska.debian.org
Tue May 10 14:28:59 UTC 2016


This is an automated email from the git hooks/post-receive script.

jsonic-guest pushed a change to branch master
in repository pentobi.

      from  c18d71b   Bump changelog date.
      adds  26bc21c   Imported Upstream version 11.0
      adds  7cfab59   Imported Upstream version 12.0
       new  3b925b5   Merge tag 'upstream/12.0'
       new  7ee8e60   d/control: Bump Standards-Version to 3.9.8, no changes needed.
       new  3184a41   d/control: Unify Vcs-Git and Vcs-Browser.
       new  c805f9e   d/control: Konqueror is not KDE Frameworks 5 application and thus cannot use pentobi-kde-thumbnailer; removed Enhances.
       new  e44f2d4   d/copyright: Update copyright years.
       new  402347e   d/patches/desktop-semicolon.patch: Add a missing ; in desktop file.

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                                     |  12 +-
 COPYING                                            |   2 +-
 INSTALL                                            |  12 +-
 NEWS                                               |  42 +
 README                                             |   2 +-
 config.h.in                                        |   2 +-
 data/CMakeLists.txt                                |  15 +-
 data/application-x-blokus-sgf-16.svg               |  52 +-
 data/application-x-blokus-sgf-32.svg               |  33 +
 data/application-x-blokus-sgf-64.svg               |  82 +-
 data/application-x-blokus-sgf.svg                  |  82 +-
 ...{pentobi.appdata.xml => pentobi.appdata.xml.in} |  38 +-
 data/pentobi.desktop.in                            |   2 +-
 debian/changelog                                   |  13 +
 debian/control                                     |   8 +-
 debian/copyright                                   |   4 +-
 debian/patches/desktop-semicolon.patch             |  16 +
 debian/patches/series                              |   1 +
 doc/blksgf/Pentobi-SGF.html                        |  19 +-
 src/books/CMakeLists.txt                           |   3 +
 src/books/book_callisto.blksgf                     |  16 +
 src/books/book_callisto_2.blksgf                   |  24 +
 src/books/book_callisto_3.blksgf                   |  21 +
 src/books/pentobi_books.qrc                        |   3 +
 src/convert/Main.cpp                               |  57 +-
 src/libboardgame_base/CMakeLists.txt               |   4 +-
 src/libboardgame_base/Engine.cpp                   |   6 +-
 src/libboardgame_base/Geometry.h                   |  31 +-
 src/libboardgame_base/Marker.h                     |  12 +-
 src/libboardgame_base/Point.h                      |  44 +-
 src/libboardgame_base/PointTransform.h             |  78 +-
 .../{SpShtStrRep.cpp => StringRep.cpp}             |  18 +-
 .../{SpShtStrRep.h => StringRep.h}                 |  38 +-
 src/libboardgame_base/Transform.h                  |   2 -
 src/libboardgame_gtp/Arguments.h                   |   1 +
 src/libboardgame_gtp/CmdLine.cpp                   |   4 +-
 src/libboardgame_gtp/CmdLine.h                     |   1 -
 src/libboardgame_gtp/Engine.cpp                    |  50 +-
 src/libboardgame_gtp/Engine.h                      |  20 +-
 src/libboardgame_gtp/Response.cpp                  |   3 +-
 src/libboardgame_mcts/LastGoodReply.h              |   6 +-
 src/libboardgame_mcts/Node.h                       |  23 +-
 src/libboardgame_mcts/SearchBase.h                 | 188 +---
 src/libboardgame_mcts/Tree.h                       |  23 +-
 src/libboardgame_sgf/Reader.cpp                    |   6 +-
 src/libboardgame_sgf/SgfNode.cpp                   |   9 +-
 src/libboardgame_sgf/TreeReader.cpp                |   6 +-
 src/libboardgame_sgf/Writer.h                      |   1 -
 src/libboardgame_util/CMakeLists.txt               |   1 +
 src/libboardgame_util/MathUtil.h                   |  44 -
 src/libboardgame_util/Options.cpp                  |   2 +-
 src/libboardgame_util/RandomGenerator.cpp          |   5 +
 src/libboardgame_util/RandomGenerator.h            |  30 +-
 src/libboardgame_util/Range.h                      |  52 ++
 src/libboardgame_util/Timer.cpp                    |  11 +-
 src/libboardgame_util/Timer.h                      |  11 +-
 src/libpentobi_base/Board.cpp                      | 279 +++---
 src/libpentobi_base/Board.h                        | 275 +++---
 src/libpentobi_base/BoardConst.cpp                 | 515 ++++++-----
 src/libpentobi_base/BoardConst.h                   | 202 +++--
 src/libpentobi_base/BoardUpdater.cpp               |  13 +-
 src/libpentobi_base/BoardUtil.cpp                  |   5 +-
 src/libpentobi_base/Book.cpp                       |   2 -
 src/libpentobi_base/CMakeLists.txt                 |   2 +
 src/libpentobi_base/CallistoGeometry.cpp           | 125 +++
 src/libpentobi_base/CallistoGeometry.h             |  63 ++
 src/libpentobi_base/Engine.cpp                     |  34 +-
 src/libpentobi_base/Engine.h                       |   1 +
 src/libpentobi_base/Game.cpp                       |  34 +-
 src/libpentobi_base/Game.h                         |  29 +-
 src/libpentobi_base/Move.h                         |   6 +
 src/libpentobi_base/MoveInfo.h                     |  55 +-
 src/libpentobi_base/NodeUtil.cpp                   |   2 +-
 src/libpentobi_base/PieceInfo.cpp                  |  14 +-
 src/libpentobi_base/PieceInfo.h                    |  33 +-
 src/libpentobi_base/PieceTransforms.cpp            |   3 +-
 src/libpentobi_base/PieceTransformsTrigon.cpp      |   1 -
 src/libpentobi_base/Point.h                        |   6 +-
 src/libpentobi_base/PrecompMoves.h                 |  13 +-
 src/libpentobi_base/ScoreUtil.h                    |  21 +-
 src/libpentobi_base/StartingPoints.cpp             |   4 +
 src/libpentobi_base/SymmetricPoints.cpp            |   8 +-
 src/libpentobi_base/SymmetricPoints.h              |   5 +-
 src/libpentobi_base/Variant.cpp                    |  89 +-
 src/libpentobi_base/Variant.h                      |  24 +-
 src/libpentobi_gui/BoardPainter.cpp                | 181 +++-
 src/libpentobi_gui/BoardPainter.h                  |  27 +-
 src/libpentobi_gui/ComputerColorDialog.cpp         |   5 +-
 src/libpentobi_gui/GameInfoDialog.cpp              |   2 +-
 src/libpentobi_gui/GuiBoard.cpp                    |  38 +-
 src/libpentobi_gui/GuiBoard.h                      |   2 -
 src/libpentobi_gui/GuiBoardUtil.cpp                |   1 -
 src/libpentobi_gui/HelpWindow.cpp                  |  16 +-
 src/libpentobi_gui/LeaveFullscreenButton.cpp       |   2 +-
 src/libpentobi_gui/LineEdit.cpp                    |   5 +-
 src/libpentobi_gui/LineEdit.h                      |   2 +-
 src/libpentobi_gui/OrientationDisplay.cpp          |  30 +-
 src/libpentobi_gui/OrientationDisplay.h            |   2 -
 src/libpentobi_gui/PieceSelector.cpp               |  94 +-
 src/libpentobi_gui/PieceSelector.h                 |   6 +-
 src/libpentobi_gui/ScoreDisplay.cpp                |  15 +-
 src/libpentobi_gui/ScoreDisplay.h                  |   7 +-
 src/libpentobi_gui/Util.cpp                        | 168 +++-
 src/libpentobi_gui/Util.h                          |  29 +-
 src/libpentobi_gui/icons/go-home.svg               |  27 +-
 src/libpentobi_gui/icons/go-next.svg               |  17 +-
 src/libpentobi_gui/icons/go-previous.svg           |  15 +-
 src/libpentobi_kde_thumbnailer/CMakeLists.txt      |   3 +-
 src/libpentobi_mcts/AnalyzeGame.cpp                |  20 +-
 src/libpentobi_mcts/AnalyzeGame.h                  |  11 -
 src/libpentobi_mcts/Player.cpp                     | 133 ++-
 src/libpentobi_mcts/Player.h                       |   4 +
 src/libpentobi_mcts/PlayoutFeatures.cpp            |   4 +-
 src/libpentobi_mcts/PlayoutFeatures.h              |  42 +-
 src/libpentobi_mcts/PriorKnowledge.cpp             | 368 +-------
 src/libpentobi_mcts/PriorKnowledge.h               | 339 ++++++-
 src/libpentobi_mcts/Search.cpp                     |  39 +-
 src/libpentobi_mcts/SharedConst.cpp                | 139 ++-
 src/libpentobi_mcts/SharedConst.h                  |  21 +-
 src/libpentobi_mcts/State.cpp                      | 515 ++++++-----
 src/libpentobi_mcts/State.h                        | 224 +++--
 src/libpentobi_mcts/StateUtil.cpp                  |  62 +-
 src/libpentobi_mcts/StateUtil.h                    |   5 +-
 src/libpentobi_thumbnail/CreateThumbnail.cpp       |   9 +-
 src/pentobi/AnalyzeGameWidget.cpp                  |  11 +-
 src/pentobi/Main.cpp                               | 129 ++-
 src/pentobi/MainWindow.cpp                         | 678 ++++++--------
 src/pentobi/MainWindow.h                           |  68 +-
 src/pentobi/RatingDialog.cpp                       |   9 +
 src/pentobi/RatingGraph.cpp                        |   5 +-
 src/pentobi/RatingHistory.cpp                      |   2 +-
 src/pentobi/ShowMessage.cpp                        |  21 +-
 src/pentobi/help/C/pentobi/analysis.jpg            | Bin 5487 -> 4625 bytes
 src/pentobi/help/C/pentobi/become_stronger.html    |   4 +-
 src/pentobi/help/C/pentobi/board_callisto.png      | Bin 0 -> 12907 bytes
 src/pentobi/help/C/pentobi/callisto_rules.html     |  45 +
 src/pentobi/help/C/pentobi/classic_rules.html      |   6 +-
 src/pentobi/help/C/pentobi/index.html              |   3 +-
 src/pentobi/help/C/pentobi/license.html            |   2 +-
 src/pentobi/help/C/pentobi/nexos_rules.html        |  10 +-
 src/pentobi/help/C/pentobi/pieces_callisto.png     | Bin 0 -> 3898 bytes
 src/pentobi/help/C/pentobi/position_callisto.png   | Bin 0 -> 15658 bytes
 src/pentobi/help/C/pentobi/position_nexos.png      | Bin 2100 -> 2057 bytes
 src/pentobi/help/C/pentobi/position_trigon.jpg     | Bin 20345 -> 20020 bytes
 src/pentobi/help/C/pentobi/rating.jpg              | Bin 10335 -> 7637 bytes
 src/pentobi/help/C/pentobi/system.html             |   4 +-
 src/pentobi/help/C/pentobi/trigon_rules.html       |   8 +-
 src/pentobi/help/C/pentobi/user_interface.html     |   4 +-
 src/pentobi/help/C/pentobi/window_menu.html        |  11 +-
 src/pentobi/help/de/pentobi/become_stronger.html   |   2 +-
 src/pentobi/help/de/pentobi/callisto_rules.html    |  50 ++
 src/pentobi/help/de/pentobi/classic_rules.html     |   4 +-
 src/pentobi/help/de/pentobi/index.html             |   3 +-
 src/pentobi/help/de/pentobi/license.html           |   2 +-
 src/pentobi/help/de/pentobi/nexos_rules.html       |   8 +-
 src/pentobi/help/de/pentobi/system.html            |   4 +-
 src/pentobi/help/de/pentobi/trigon_rules.html      |   6 +-
 src/pentobi/help/de/pentobi/user_interface.html    |   4 +-
 src/pentobi/help/de/pentobi/window_menu.html       |  20 +-
 src/pentobi/icons/pentobi-16.svg                   |  74 +-
 src/pentobi/icons/pentobi-32.svg                   |  62 +-
 src/pentobi/icons/pentobi-64.svg                   |  35 +
 src/pentobi/icons/pentobi-backward-16.svg          |  20 +-
 src/pentobi/icons/pentobi-backward.svg             |  16 +-
 src/pentobi/icons/pentobi-beginning-16.svg         |  18 +-
 src/pentobi/icons/pentobi-beginning.svg            |  18 +-
 src/pentobi/icons/pentobi-computer-colors-16.svg   |  46 +-
 src/pentobi/icons/pentobi-computer-colors.svg      |  46 +-
 src/pentobi/icons/pentobi-end-16.svg               |  20 +-
 src/pentobi/icons/pentobi-end.svg                  |  18 +-
 src/pentobi/icons/pentobi-flip-horizontal.svg      |   6 +-
 src/pentobi/icons/pentobi-flip-vertical.svg        |   6 +-
 src/pentobi/icons/pentobi-forward-16.svg           |  18 +-
 src/pentobi/icons/pentobi-forward.svg              |  18 +-
 src/pentobi/icons/pentobi-newgame-16.svg           |  58 +-
 src/pentobi/icons/pentobi-newgame.svg              |  50 +-
 src/pentobi/icons/pentobi-next-piece.svg           |   6 +-
 src/pentobi/icons/pentobi-next-variation-16.svg    |  18 +-
 src/pentobi/icons/pentobi-next-variation.svg       |  20 +-
 src/pentobi/icons/pentobi-piece-clear.svg          |   6 +-
 src/pentobi/icons/pentobi-play-16.svg              |  48 +-
 src/pentobi/icons/pentobi-play.svg                 |  46 +-
 src/pentobi/icons/pentobi-previous-piece.svg       |   6 +-
 .../icons/pentobi-previous-variation-16.svg        |  18 +-
 src/pentobi/icons/pentobi-previous-variation.svg   |  16 +-
 src/pentobi/icons/pentobi-rated-game-16.svg        |  21 +-
 src/pentobi/icons/pentobi-rated-game.svg           |  27 +-
 src/pentobi/icons/pentobi-rotate-left.svg          |   8 +-
 src/pentobi/icons/pentobi-rotate-right.svg         |   8 +-
 src/pentobi/icons/pentobi-undo-16.svg              |  58 +-
 src/pentobi/icons/pentobi-undo.svg                 |  50 +-
 src/pentobi/icons/pentobi.svg                      |  56 +-
 src/pentobi/pentobi.ico                            | Bin 16883 -> 8216 bytes
 src/pentobi/resources_2x.qrc                       |   2 +
 src/pentobi/translations/pentobi.ts                |  28 -
 src/pentobi/translations/pentobi_de.ts             | 168 +++-
 src/pentobi_gtp/Engine.cpp                         |  28 +-
 src/pentobi_gtp/Engine.h                           |   3 -
 src/pentobi_gtp/Main.cpp                           |   2 -
 .../PentobiThumbCreator.cpp                        |   2 +-
 src/pentobi_qml/GameModel.cpp                      | 451 +++++++---
 src/pentobi_qml/GameModel.h                        | 138 +--
 src/pentobi_qml/Main.cpp                           |  72 +-
 src/pentobi_qml/Pentobi.pro                        |  14 +-
 src/pentobi_qml/PieceModel.cpp                     | 228 +++--
 src/pentobi_qml/PieceModel.h                       |  34 +-
 src/pentobi_qml/PlayerModel.cpp                    |  42 +-
 src/pentobi_qml/PlayerModel.h                      |  54 +-
 src/pentobi_qml/android/AndroidManifest.xml        |   2 +-
 src/pentobi_qml/icons_android.qrc                  |   1 -
 src/pentobi_qml/qml/AndroidToolBar.qml             |  26 +-
 src/pentobi_qml/qml/AndroidToolButton.qml          |   1 +
 src/pentobi_qml/qml/Board.qml                      | 185 +++-
 src/pentobi_qml/qml/Button.qml                     |  23 +-
 src/pentobi_qml/qml/ComputerColorDialog.qml        |  22 +-
 src/pentobi_qml/qml/GameDisplay.js                 |  95 +-
 src/pentobi_qml/qml/GameDisplay.qml                |  90 +-
 src/pentobi_qml/qml/LineSegment.qml                | 105 +++
 src/pentobi_qml/qml/Main.js                        | 242 ++---
 src/pentobi_qml/qml/Main.qml                       | 145 ++-
 src/pentobi_qml/qml/MenuComputer.qml               |  21 +-
 src/pentobi_qml/qml/MenuEdit.qml                   |  25 +-
 src/pentobi_qml/qml/MenuGame.qml                   |  96 +-
 src/pentobi_qml/qml/MenuGo.qml                     |   1 +
 src/pentobi_qml/qml/MenuHelp.qml                   |  12 +
 src/pentobi_qml/qml/MenuItemGameVariant.qml        |   2 +-
 src/pentobi_qml/qml/MenuItemLevel.qml              |  12 +
 src/pentobi_qml/qml/MenuView.qml                   |   6 +
 src/pentobi_qml/qml/NavigationPanel.qml            |  15 +-
 src/pentobi_qml/qml/OpenDialog.qml                 |  14 +
 .../qml/{PieceClassic.qml => PieceCallisto.qml}    | 131 +--
 src/pentobi_qml/qml/PieceClassic.qml               |  81 +-
 src/pentobi_qml/qml/PieceList.qml                  |   4 +-
 src/pentobi_qml/qml/PieceManipulator.qml           | 120 ++-
 .../qml/{PieceClassic.qml => PieceNexos.qml}       | 144 ++-
 src/pentobi_qml/qml/PieceSelector.qml              |  31 +-
 src/pentobi_qml/qml/PieceTrigon.qml                |  93 +-
 src/pentobi_qml/qml/SaveDialog.qml                 |  15 +
 src/pentobi_qml/qml/ScoreDisplay.qml               |  27 +-
 src/pentobi_qml/qml/ScoreElement.qml               |   8 +-
 src/pentobi_qml/qml/ScoreElement2.qml              |   6 +-
 src/pentobi_qml/qml/Square.qml                     |  94 +-
 src/pentobi_qml/qml/ToolBar.qml                    |   2 +-
 src/pentobi_qml/qml/Triangle.qml                   | 145 ++-
 src/pentobi_qml/qml/i18n/qml_de.ts                 | 291 +++++-
 src/pentobi_qml/qml/icons/menu.svg                 |   6 +-
 src/pentobi_qml/qml/icons/pentobi-backward.svg     |   2 +-
 src/pentobi_qml/qml/icons/pentobi-beginning.svg    |   2 +-
 .../qml/icons/pentobi-computer-colors.svg          |   2 +-
 src/pentobi_qml/qml/icons/pentobi-end.svg          |   2 +-
 src/pentobi_qml/qml/icons/pentobi-forward.svg      |   2 +-
 src/pentobi_qml/qml/icons/pentobi-newgame.svg      |   2 +-
 src/pentobi_qml/qml/icons/pentobi-play.svg         |   2 +-
 src/pentobi_qml/qml/icons/pentobi-undo.svg         |   2 +-
 src/pentobi_qml/qml/icons/pentobi.svg              |  35 -
 src/pentobi_qml/qml/themes/dark/Theme.qml          |  12 +-
 .../qml/themes/dark/board-callisto-2.svg           | 156 ++++
 .../qml/themes/dark/board-callisto-3.svg           | 232 +++++
 src/pentobi_qml/qml/themes/dark/board-callisto.svg | 300 +++++++
 src/pentobi_qml/qml/themes/dark/board-classic.svg  | 413 ---------
 src/pentobi_qml/qml/themes/dark/board-duo.svg      | 205 -----
 .../qml/themes/dark/board-tile-classic.svg         |   6 +
 .../qml/themes/dark/board-tile-nexos.svg           |   9 +
 src/pentobi_qml/qml/themes/dark/board-trigon-3.svg | 784 ++++++++--------
 src/pentobi_qml/qml/themes/dark/board-trigon.svg   | 988 ++++++++++-----------
 src/pentobi_qml/qml/themes/light/Theme.qml         |   5 +-
 .../qml/themes/light/board-callisto-2.svg          | 156 ++++
 .../qml/themes/light/board-callisto-3.svg          | 232 +++++
 .../qml/themes/light/board-callisto.svg            | 300 +++++++
 src/pentobi_qml/qml/themes/light/board-classic.svg | 413 ---------
 src/pentobi_qml/qml/themes/light/board-duo.svg     | 205 -----
 .../qml/themes/light/board-tile-classic.svg        |   6 +
 .../qml/themes/light/board-tile-nexos.svg          |   9 +
 .../qml/themes/light/board-trigon-3.svg            | 784 ++++++++--------
 src/pentobi_qml/qml/themes/light/board-trigon.svg  | 988 ++++++++++-----------
 .../light/{square-blue.svg => frame-blue.svg}      |   8 +-
 .../light/{square-blue.svg => frame-green.svg}     |   8 +-
 .../light/{square-blue.svg => frame-red.svg}       |   8 +-
 .../light/{square-blue.svg => frame-yellow.svg}    |   8 +-
 .../qml/themes/light/junction-all-blue.svg         |   4 +
 .../qml/themes/light/junction-all-green.svg        |   4 +
 .../qml/themes/light/junction-all-red.svg          |   4 +
 .../qml/themes/light/junction-all-yellow.svg       |   4 +
 .../qml/themes/light/junction-rect-blue.svg        |   4 +
 .../qml/themes/light/junction-rect-green.svg       |   4 +
 .../qml/themes/light/junction-rect-red.svg         |   4 +
 .../qml/themes/light/junction-rect-yellow.svg      |   4 +
 .../qml/themes/light/junction-straight-blue.svg    |   4 +
 .../qml/themes/light/junction-straight-green.svg   |   4 +
 .../qml/themes/light/junction-straight-red.svg     |   4 +
 .../qml/themes/light/junction-straight-yellow.svg  |   4 +
 .../qml/themes/light/junction-t-blue.svg           |   4 +
 .../qml/themes/light/junction-t-green.svg          |   4 +
 .../qml/themes/light/junction-t-red.svg            |   4 +
 .../qml/themes/light/junction-t-yellow.svg         |   4 +
 .../qml/themes/light/linesegment-blue.svg          |   6 +
 .../qml/themes/light/linesegment-green.svg         |   6 +
 .../qml/themes/light/linesegment-red.svg           |   6 +
 .../qml/themes/light/linesegment-yellow.svg        |   6 +
 .../qml/themes/light/piece-manipulator-legal.svg   |  14 +-
 .../qml/themes/light/piece-manipulator.svg         |  14 +-
 src/pentobi_qml/qml/themes/light/square-blue.svg   |   8 +-
 src/pentobi_qml/qml/themes/light/square-green.svg  |   8 +-
 src/pentobi_qml/qml/themes/light/square-red.svg    |   8 +-
 src/pentobi_qml/qml/themes/light/square-yellow.svg |   8 +-
 src/pentobi_qml/qml/themes/light/triangle-blue.svg |  10 +-
 .../qml/themes/light/triangle-down-blue.svg        |  10 +-
 .../qml/themes/light/triangle-down-green.svg       |  10 +-
 .../qml/themes/light/triangle-down-red.svg         |  10 +-
 .../qml/themes/light/triangle-down-yellow.svg      |  10 +-
 .../qml/themes/light/triangle-green.svg            |  10 +-
 src/pentobi_qml/qml/themes/light/triangle-red.svg  |  10 +-
 .../qml/themes/light/triangle-yellow.svg           |  10 +-
 src/pentobi_qml/qml/themes/theme_dark.qrc          |   7 +-
 src/pentobi_qml/qml/themes/theme_light.qrc         |   7 +-
 src/pentobi_qml/qml/themes/theme_shared.qrc        |  24 +
 src/pentobi_qml/resources.qrc                      |   6 +
 src/pentobi_thumbnailer/Main.cpp                   |  55 +-
 src/twogtp/FdStream.cpp                            |   6 +-
 src/twogtp/GtpConnection.cpp                       |   6 +-
 src/twogtp/TwoGtp.cpp                              |   9 +-
 src/unittest/libboardgame_base/CMakeLists.txt      |   2 +-
 src/unittest/libboardgame_base/MarkerTest.cpp      |   5 +-
 .../libboardgame_base/PointTransformTest.cpp       |   5 +-
 .../libboardgame_base/RectGeometryTest.cpp         |   5 +-
 .../{SpShtStrRepTest.cpp => StringRepTest.cpp}     |  12 +-
 src/unittest/libboardgame_gtp/EngineTest.cpp       |  15 -
 src/unittest/libboardgame_util/CMakeLists.txt      |   1 -
 src/unittest/libboardgame_util/MathUtilTest.cpp    |  34 -
 src/unittest/libpentobi_base/BoardTest.cpp         |  16 +-
 src/unittest/libpentobi_base/BoardUpdaterTest.cpp  |  12 +-
 src/unittest/libpentobi_base/TreeTest.cpp          |  52 +-
 src/unittest/libpentobi_mcts/SearchTest.cpp        |  73 +-
 windows/blksgf.ico                                 | Bin 23328 -> 17020 bytes
 334 files changed, 10026 insertions(+), 8292 deletions(-)
 create mode 100644 data/application-x-blokus-sgf-32.svg
 rename data/{pentobi.appdata.xml => pentobi.appdata.xml.in} (71%)
 create mode 100644 debian/patches/desktop-semicolon.patch
 create mode 100644 debian/patches/series
 create mode 100644 src/books/book_callisto.blksgf
 create mode 100644 src/books/book_callisto_2.blksgf
 create mode 100644 src/books/book_callisto_3.blksgf
 rename src/libboardgame_base/{SpShtStrRep.cpp => StringRep.cpp} (77%)
 rename src/libboardgame_base/{SpShtStrRep.h => StringRep.h} (52%)
 create mode 100644 src/libboardgame_util/Range.h
 create mode 100644 src/libpentobi_base/CallistoGeometry.cpp
 create mode 100644 src/libpentobi_base/CallistoGeometry.h
 create mode 100644 src/pentobi/help/C/pentobi/board_callisto.png
 create mode 100644 src/pentobi/help/C/pentobi/callisto_rules.html
 create mode 100644 src/pentobi/help/C/pentobi/pieces_callisto.png
 create mode 100644 src/pentobi/help/C/pentobi/position_callisto.png
 create mode 100644 src/pentobi/help/de/pentobi/callisto_rules.html
 create mode 100644 src/pentobi/icons/pentobi-64.svg
 create mode 100644 src/pentobi_qml/qml/LineSegment.qml
 create mode 100644 src/pentobi_qml/qml/MenuHelp.qml
 create mode 100644 src/pentobi_qml/qml/OpenDialog.qml
 copy src/pentobi_qml/qml/{PieceClassic.qml => PieceCallisto.qml} (68%)
 copy src/pentobi_qml/qml/{PieceClassic.qml => PieceNexos.qml} (69%)
 create mode 100644 src/pentobi_qml/qml/SaveDialog.qml
 delete mode 100644 src/pentobi_qml/qml/icons/pentobi.svg
 create mode 100644 src/pentobi_qml/qml/themes/dark/board-callisto-2.svg
 create mode 100644 src/pentobi_qml/qml/themes/dark/board-callisto-3.svg
 create mode 100644 src/pentobi_qml/qml/themes/dark/board-callisto.svg
 delete mode 100644 src/pentobi_qml/qml/themes/dark/board-classic.svg
 delete mode 100644 src/pentobi_qml/qml/themes/dark/board-duo.svg
 create mode 100644 src/pentobi_qml/qml/themes/dark/board-tile-classic.svg
 create mode 100644 src/pentobi_qml/qml/themes/dark/board-tile-nexos.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/board-callisto-2.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/board-callisto-3.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/board-callisto.svg
 delete mode 100644 src/pentobi_qml/qml/themes/light/board-classic.svg
 delete mode 100644 src/pentobi_qml/qml/themes/light/board-duo.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/board-tile-classic.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/board-tile-nexos.svg
 copy src/pentobi_qml/qml/themes/light/{square-blue.svg => frame-blue.svg} (51%)
 copy src/pentobi_qml/qml/themes/light/{square-blue.svg => frame-green.svg} (51%)
 copy src/pentobi_qml/qml/themes/light/{square-blue.svg => frame-red.svg} (51%)
 copy src/pentobi_qml/qml/themes/light/{square-blue.svg => frame-yellow.svg} (51%)
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-all-blue.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-all-green.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-all-red.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-all-yellow.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-rect-blue.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-rect-green.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-rect-red.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-rect-yellow.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-straight-blue.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-straight-green.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-straight-red.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-straight-yellow.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-t-blue.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-t-green.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-t-red.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/junction-t-yellow.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/linesegment-blue.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/linesegment-green.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/linesegment-red.svg
 create mode 100644 src/pentobi_qml/qml/themes/light/linesegment-yellow.svg
 rename src/unittest/libboardgame_base/{SpShtStrRepTest.cpp => StringRepTest.cpp} (89%)
 delete mode 100644 src/unittest/libboardgame_util/MathUtilTest.cpp

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/pentobi.git



More information about the Pkg-games-commits mailing list