Hello community, here is the log from the commit of package kpat for openSUSE:Factory checked in at 2019-05-15 12:31:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kpat (Old) and /work/SRC/openSUSE:Factory/.kpat.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kpat" Wed May 15 12:31:00 2019 rev:86 rq:702281 version:19.04.1 Changes: -------- --- /work/SRC/openSUSE:Factory/kpat/kpat.changes 2019-04-28 20:09:13.854575926 +0200 +++ /work/SRC/openSUSE:Factory/.kpat.new.5148/kpat.changes 2019-05-15 12:31:02.749101338 +0200 @@ -1,0 +2,11 @@ +Fri May 10 05:37:16 UTC 2019 - [email protected] + +- Update to 19.04.1 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.04.1.php +- Changes since 19.04.0: + * Avoid tiny cards on high screen resolutions + * Compatibility with bh-solver 0.20.0. + +------------------------------------------------------------------- Old: ---- kpat-19.04.0.tar.xz New: ---- kpat-19.04.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kpat.spec ++++++ --- /var/tmp/diff_new_pack.UaVLBo/_old 2019-05-15 12:31:03.341099699 +0200 +++ /var/tmp/diff_new_pack.UaVLBo/_new 2019-05-15 12:31:03.349099678 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kpat -Version: 19.04.0 +Version: 19.04.1 Release: 0 Summary: Patience card game License: GPL-2.0-or-later ++++++ kpat-19.04.0.tar.xz -> kpat-19.04.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/libkcardgame/kabstractcarddeck.cpp new/kpat-19.04.1/libkcardgame/kabstractcarddeck.cpp --- old/kpat-19.04.0/libkcardgame/kabstractcarddeck.cpp 2019-03-20 21:45:56.000000000 +0100 +++ new/kpat-19.04.1/libkcardgame/kabstractcarddeck.cpp 2019-04-24 17:55:59.000000000 +0200 @@ -389,9 +389,12 @@ void KAbstractCardDeck::setCardWidth( int width ) { - if ( width > 200 || width < 20 ) + if ( width < 20 ) return; + if ( width > 200 ) + width = 200; + int height = width * d->originalCardSize.height() / d->originalCardSize.width(); QSize newSize( width, height ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/org.kde.kpat.appdata.xml new/kpat-19.04.1/org.kde.kpat.appdata.xml --- old/kpat-19.04.0/org.kde.kpat.appdata.xml 2019-03-20 21:45:56.000000000 +0100 +++ new/kpat-19.04.1/org.kde.kpat.appdata.xml 2019-04-24 17:55:59.000000000 +0200 @@ -14,6 +14,7 @@ <name xml:lang="gl">KPatience</name> <name xml:lang="id">KPatience</name> <name xml:lang="nl">KPatience</name> + <name xml:lang="nn">Kabal</name> <name xml:lang="pl">KPasjans</name> <name xml:lang="pt">Paciência</name> <name xml:lang="pt-BR">KPatience</name> @@ -35,6 +36,7 @@ <summary xml:lang="gl">Xogo de cartas do solitario</summary> <summary xml:lang="id">Permainan kartu solitaire</summary> <summary xml:lang="nl">Solitaire kaartspel</summary> + <summary xml:lang="nn">Kabelspel</summary> <summary xml:lang="pl">Gra karciana pasjans</summary> <summary xml:lang="pt">Jogo de cartas do solitário</summary> <summary xml:lang="pt-BR">Jogo de cartas paciência</summary> @@ -79,6 +81,7 @@ <caption xml:lang="gl">Pantalla de selección do solitario</caption> <caption xml:lang="id">Layar pemilihan solitaire</caption> <caption xml:lang="nl">Selectiescherm van Solitaire</caption> + <caption xml:lang="nn">Val av kabaltype</caption> <caption xml:lang="pl">Ekran wyboru pasjansa</caption> <caption xml:lang="pt">Ecrã de selecção do solitário</caption> <caption xml:lang="pt-BR">Tela de seleção de paciência</caption> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/patsolve/golfsolver.cpp new/kpat-19.04.1/patsolve/golfsolver.cpp --- old/kpat-19.04.0/patsolve/golfsolver.cpp 2019-03-20 21:45:56.000000000 +0100 +++ new/kpat-19.04.1/patsolve/golfsolver.cpp 2019-04-24 17:55:59.000000000 +0200 @@ -244,10 +244,13 @@ exit(-1); } black_hole_solver_enable_rank_reachability_prune( - solver_instance, TRUE); - black_hole_solver_enable_wrap_ranks(solver_instance, FALSE); + solver_instance, true); + black_hole_solver_enable_wrap_ranks(solver_instance, false); black_hole_solver_enable_place_queens_on_kings( - solver_instance, TRUE); + solver_instance, true); +#ifdef BLACK_HOLE_SOLVER__API__REQUIRES_SETUP_CALL +black_hole_solver_config_setup(solver_instance); +#endif int error_line_num; int num_columns = BHS__GOLF__NUM_COLUMNS; @@ -261,6 +264,9 @@ error_line_num); exit(-1); } +#ifdef BLACK_HOLE_SOLVER__API__REQUIRES_SETUP_CALL +black_hole_solver_setup(solver_instance); +#endif solver_ret = BLACK_HOLE_SOLVER__OUT_OF_ITERS; if (solver_instance) @@ -299,6 +305,9 @@ m_winMoves.clear(); int col_idx, card_rank, card_suit; int next_move_ret_code; +#ifdef BLACK_HOLE_SOLVER__API__REQUIRES_SETUP_CALL + black_hole_solver_init_solution_moves(solver_instance); +#endif while ((next_move_ret_code = black_hole_solver_get_next_move( solver_instance, &col_idx, &card_rank, &card_suit)) == BLACK_HOLE_SOLVER__SUCCESS) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/patsolve/golfsolver.h new/kpat-19.04.1/patsolve/golfsolver.h --- old/kpat-19.04.0/patsolve/golfsolver.h 2019-03-20 21:45:56.000000000 +0100 +++ new/kpat-19.04.1/patsolve/golfsolver.h 2019-04-24 17:55:59.000000000 +0200 @@ -21,7 +21,6 @@ class Golf; #include "patsolve.h" #ifdef WITH_BH_SOLVER -#include <black-hole-solver/bool.h> #include <black-hole-solver/black_hole_solver.h> #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/po/nb/kpat.po new/kpat-19.04.1/po/nb/kpat.po --- old/kpat-19.04.0/po/nb/kpat.po 2019-04-12 02:09:58.000000000 +0200 +++ new/kpat-19.04.1/po/nb/kpat.po 2019-05-07 02:20:33.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kpat\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 03:55+0100\n" +"POT-Creation-Date: 2019-03-09 03:17+0100\n" "PO-Revision-Date: 2014-01-07 14:24+0100\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" @@ -111,12 +111,12 @@ msgid "Forty & Eight" msgstr "Førti og åtte" -#: freecell.cpp:301 +#: freecell.cpp:294 #, kde-format msgid "Freecell" msgstr "Frifelt" -#: golf.cpp:177 +#: golf.cpp:192 #, kde-format msgid "Golf" msgstr "Golf" @@ -664,7 +664,7 @@ msgid "Deal number:" msgstr "Spillnummer:" -#: simon.cpp:183 +#: simon.cpp:180 #, kde-format msgid "Simple Simon" msgstr "Sleipe-Simon" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/po/nn/kpat.po new/kpat-19.04.1/po/nn/kpat.po --- old/kpat-19.04.0/po/nn/kpat.po 2019-04-12 02:09:58.000000000 +0200 +++ new/kpat-19.04.1/po/nn/kpat.po 2019-05-07 02:20:33.000000000 +0200 @@ -1,13 +1,13 @@ # Translation of kpat to Norwegian Nynorsk # -# Karl Ove Hufthammer <[email protected]>, 2007, 2008, 2009, 2010, 2014, 2015, 2016, 2018. +# Karl Ove Hufthammer <[email protected]>, 2007, 2008, 2009, 2010, 2014, 2015, 2016, 2018, 2019. # Eirik U. Birkeland <[email protected]>, 2009. msgid "" msgstr "" "Project-Id-Version: kpat\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-03-09 03:17+0100\n" -"PO-Revision-Date: 2018-10-15 19:16+0200\n" +"PO-Revision-Date: 2019-04-14 14:13+0200\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" "Language: nn\n" @@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.3\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -738,7 +738,7 @@ #: statisticsdialog.ui:75 #, kde-format msgid "Longest winning streak:" -msgstr "Lengste etterfølgjande sigrar:" +msgstr "Lengste etterfølgjande sigersrekkje:" #. i18n: ectx: property (text), widget (QLabel, textLabel2) #: statisticsdialog.ui:82 @@ -750,7 +750,7 @@ #: statisticsdialog.ui:99 #, kde-format msgid "Longest losing streak:" -msgstr "Lengste etterfølgjande tap:" +msgstr "Lengste etterfølgjande tapsrekkje:" #. i18n: ectx: property (text), widget (QLabel, textLabel3) #: statisticsdialog.ui:116 @@ -762,7 +762,7 @@ #: statisticsdialog.ui:133 #, kde-format msgid "Current streak:" -msgstr "Etterfølgjande sigrar no:" +msgstr "Sigrar/tap på rad no:" #: yukon.cpp:132 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/po/sr/kpat.po new/kpat-19.04.1/po/sr/kpat.po --- old/kpat-19.04.0/po/sr/kpat.po 2019-04-12 02:09:58.000000000 +0200 +++ new/kpat-19.04.1/po/sr/kpat.po 2019-05-07 02:20:34.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kpat\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 03:55+0100\n" +"POT-Creation-Date: 2019-03-09 03:17+0100\n" "PO-Revision-Date: 2016-11-28 01:33+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -106,13 +106,13 @@ msgid "Forty & Eight" msgstr "четрдесет и осам|/|$[својства аку 'четрдесет и осам']" -#: freecell.cpp:301 +#: freecell.cpp:294 #, kde-format msgid "Freecell" msgstr "фрисел" # >> @item game type -#: golf.cpp:177 +#: golf.cpp:192 #, kde-format msgid "Golf" msgstr "голф|/|$[својства аку 'голф']" @@ -679,7 +679,7 @@ msgstr "Број дељења:" # >> @item game type -#: simon.cpp:183 +#: simon.cpp:180 #, kde-format msgid "Simple Simon" msgstr "прости сајмон|/|$[својства аку 'простог сајмона']" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kpat-19.04.0/po/zh_CN/kpat.po new/kpat-19.04.1/po/zh_CN/kpat.po --- old/kpat-19.04.0/po/zh_CN/kpat.po 2019-04-12 02:09:58.000000000 +0200 +++ new/kpat-19.04.1/po/zh_CN/kpat.po 2019-05-07 02:20:34.000000000 +0200 @@ -10,8 +10,8 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-03-09 03:17+0100\n" -"PO-Revision-Date: 2019-04-09 18:54\n" -"Last-Translator: guoyunhe <[email protected]>\n" +"PO-Revision-Date: 2019-05-05 22:33\n" +"Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n"
