Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bovo for openSUSE:Factory checked in at 2021-08-16 10:09:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bovo (Old) and /work/SRC/openSUSE:Factory/.bovo.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bovo" Mon Aug 16 10:09:27 2021 rev:112 rq:911601 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/bovo/bovo.changes 2021-07-10 00:00:15.496095742 +0200 +++ /work/SRC/openSUSE:Factory/.bovo.new.1899/bovo.changes 2021-08-16 10:14:32.810882701 +0200 @@ -1,0 +2,27 @@ +Fri Aug 6 09:34:24 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/21.08.0 +- No code change since 21.07.90 + +------------------------------------------------------------------- +Fri Jul 30 10:04:24 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.07.90 + * New feature release +- No code change since 21.07.80 + +------------------------------------------------------------------- +Sat Jul 17 20:04:51 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.07.80 + * New feature release +- Changes since 21.04.3: + * Documentation: Renew a screenshot + * Documentation updates + * Time to increase version +- Only install the license files once + +------------------------------------------------------------------- Old: ---- bovo-21.04.3.tar.xz bovo-21.04.3.tar.xz.sig New: ---- bovo-21.08.0.tar.xz bovo-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bovo.spec ++++++ --- /var/tmp/diff_new_pack.wj2TR9/_old 2021-08-16 10:14:33.238882155 +0200 +++ /var/tmp/diff_new_pack.wj2TR9/_new 2021-08-16 10:14:33.242882150 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: bovo -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Five-in-a-row Board Game License: GPL-2.0-or-later @@ -45,7 +45,6 @@ BuildRequires: cmake(Qt5Widgets) Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} -Recommends: %{name}-lang %description Bovo is a Gomoku (Connect Five, Five in a row, X and O, etc) game by KDE. @@ -77,7 +76,6 @@ %if %{with lang} %files lang -f %{name}.lang -%license COPYING* %endif %changelog ++++++ bovo-21.04.3.tar.xz -> bovo-21.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/.gitignore new/bovo-21.08.0/.gitignore --- old/bovo-21.04.3/.gitignore 2021-07-05 21:10:27.000000000 +0200 +++ new/bovo-21.08.0/.gitignore 2021-08-04 23:58:05.000000000 +0200 @@ -3,3 +3,9 @@ *.kdev4 CMakeLists.txt.user* .cmake/ +/.clang-format +/compile_commands.json +.clangd +.cache +.idea +/cmake-build* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/CMakeLists.txt new/bovo-21.08.0/CMakeLists.txt --- old/bovo-21.04.3/CMakeLists.txt 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/CMakeLists.txt 2021-08-06 02:16:42.000000000 +0200 @@ -1,15 +1,15 @@ -cmake_minimum_required (VERSION 3.5 FATAL_ERROR) +cmake_minimum_required (VERSION 3.16 FATAL_ERROR) # KDE Application Version, managed by release script set(RELEASE_SERVICE_VERSION_MAJOR "21") -set(RELEASE_SERVICE_VERSION_MINOR "04") -set(RELEASE_SERVICE_VERSION_MICRO "3") +set(RELEASE_SERVICE_VERSION_MINOR "08") +set(RELEASE_SERVICE_VERSION_MICRO "0") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(bovo VERSION ${RELEASE_SERVICE_VERSION}) -set (QT_MIN_VERSION "5.7.0") -set (KF5_MIN_VERSION "5.30.0") +set (QT_MIN_VERSION "5.15.0") +set (KF5_MIN_VERSION "5.83.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ) @@ -100,7 +100,7 @@ target_link_libraries(bovo KF5::XmlGui KF5::I18n - Qt5::Svg + Qt::Svg KF5KDEGames KF5::DBusAddons KF5::Crash diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/CMakePresets.json new/bovo-21.08.0/CMakePresets.json --- old/bovo-21.04.3/CMakePresets.json 2021-07-05 21:10:27.000000000 +0200 +++ new/bovo-21.08.0/CMakePresets.json 2021-08-04 23:58:05.000000000 +0200 @@ -1,5 +1,5 @@ { - "version": 1, + "version": 2, "configurePresets": [ { "name": "dev", @@ -23,6 +23,17 @@ } }, { + "name": "unity", + "displayName": "Build with CMake unity support.", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-unity", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "CMAKE_UNITY_BUILD": "ON", + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + } + }, + { "name": "release", "displayName": "Build as release mode.", "generator": "Ninja", @@ -40,6 +51,33 @@ "CMAKE_BUILD_TYPE": "RelWithDebInfo", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" } + }, + { + "name": "clazy", + "displayName": "clazy", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-clazy", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + }, + "environment": { + "CXX": "clazy", + "CCACHE_DISABLE": "ON" + } + } + ], + "buildPresets": [ + { + "name": "dev", + "configurePreset": "dev" + }, + { + "name": "clazy", + "configurePreset": "clazy", + "environment": { + "CLAZY_CHECKS" : "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo", + "CCACHE_DISABLE" : "ON" + } } ] } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/doc/index.docbook new/bovo-21.08.0/doc/index.docbook --- old/bovo-21.04.3/doc/index.docbook 2021-07-05 21:10:27.000000000 +0200 +++ new/bovo-21.08.0/doc/index.docbook 2021-08-04 23:58:05.000000000 +0200 @@ -27,8 +27,8 @@ </copyright> <legalnotice>&FDLNotice;</legalnotice> -<date>2016-05-09</date> -<releaseinfo>1.1 (Applications 16.04)</releaseinfo> +<date>2021-06-21</date> +<releaseinfo>KDE Gear 21.04</releaseinfo> <abstract> <para>This documentation describes the game of &bovo; version 1.1</para> @@ -65,7 +65,7 @@ <!--Short game description starts here. 3-4 sentences (paragraphs)--> <para> - &bovo; is a Gomoku (from Japanese <foreignphrase lang="ja">????????????</foreignphrase>lit. "five points") like game for two players, where the opponents alternate in placing their respective pictogram on the game board. + &bovo; is a Gomoku (from Japanese <foreignphrase lang="ja">????????????</foreignphrase>, <quote>five points</quote>) like game for two players, where the opponents alternate in placing their respective pictogram on the game board. The aim of this game is to connect five of your own pieces in an unbroken row vertically, horizontally or diagonally. </para> <note><title>Note:</title><para>Also known as: Connect Five, Five in a row, X and O, Noughts and Crosses</para></note> @@ -119,10 +119,10 @@ <listitem><para>When &bovo; is exited prior to game over, the active game is auto saved. If &bovo; detects an auto saved game at startup, it is restored. If not, &bovo; launches a demo mode.</para></listitem> <listitem><para>You can always start a new game with the <guibutton>New</guibutton> button in the toolbar, the <menuchoice><guimenu>Game</guimenu><guimenuitem>New</guimenuitem></menuchoice> menu entry in the menubar or with the default shortcut <keycombo action="simul">&Ctrl;<keycap>N</keycap></keycombo>.</para></listitem> <listitem><para>If a new game is started when a game is already active, it is counted as a loss.</para></listitem> - <listitem><para>Changing the difficulty can be done with the <guilabel>Difficulty</guilabel> drop down box in the right end of the status bar, or from the <menuchoice><guimenu>Settings</guimenu><guimenuitem>Difficulty</guimenuitem></menuchoice> menu in the menubar.</para></listitem> + <listitem><para>Changing the difficulty can be done with the <guilabel>Difficulty</guilabel> drop down box in the right end of the status bar, or from the <menuchoice><guimenu>Settings</guimenu><guimenuitem>Difficulty</guimenuitem></menuchoice> menu entry in the menubar.</para></listitem> <listitem><para>The effect of changing difficulty takes place immediately.</para></listitem> - <listitem><para>You can switch the theme of &bovo; from the <menuchoice><guimenu>Settings</guimenu> <guisubmenu>Theme</guisubmenu></menuchoice> menu in the menubar. The theme is then switched immediately.</para></listitem> - <listitem><para>Animation can be switched on or off as you like from the <menuchoice><guimenu>Settings</guimenu> <guimenuitem>Animation</guimenuitem></menuchoice> menu in the menubar.</para></listitem> + <listitem><para>You can switch the theme of &bovo; from the <menuchoice><guimenu>Settings</guimenu> <guisubmenu>Theme</guisubmenu></menuchoice> menu entry in the menubar. The theme is then switched immediately.</para></listitem> + <listitem><para>Animation can be switched on or off as you like from the <menuchoice><guimenu>Settings</guimenu> <guimenuitem>Animation</guimenuitem></menuchoice> menu entry in the menubar.</para></listitem> <listitem><para>If you just realized you made a very bad move, you have the possibility to undo your last move from the toolbar, the menubar or with the default undo keyboard shortcut <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>.</para><para>You can keep on undoing moves until you reaches the beginning of the game.</para></listitem> <listitem><para>If you don't know what move to make, you can get a hint from the computer player with the <guibutton>Hint</guibutton> button. The game piece suggested by the &bovo; AI then flashes for a brief period of time.</para></listitem> <listitem><para>When a game is over, the <guibutton>Replay</guibutton> action is enabled, which starts a replay of the last game.</para></listitem> @@ -228,7 +228,7 @@ <qandaentry> <question><para>I want to change the way this game looks. Can I? </para></question> <answer><para>Yes. To change &bovo;'s visual theme you can use the <menuchoice><guimenu>Settings</guimenu><guisubmenu>Theme</guisubmenu> -</menuchoice> option on the menubar.</para></answer> +</menuchoice> menu entry on the menubar.</para></answer> </qandaentry> <qandaentry> <question><para>Can I use the keyboard to play this game? </para></question> Binary files old/bovo-21.04.3/doc/mainscreen.png and new/bovo-21.08.0/doc/mainscreen.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/org.kde.bovo.appdata.xml new/bovo-21.08.0/org.kde.bovo.appdata.xml --- old/bovo-21.04.3/org.kde.bovo.appdata.xml 2021-07-05 21:10:27.000000000 +0200 +++ new/bovo-21.08.0/org.kde.bovo.appdata.xml 2021-08-04 23:58:05.000000000 +0200 @@ -133,10 +133,10 @@ <binary>bovo</binary> </provides> <releases> + <release version="21.08.0" date="2021-08-12"/> <release version="21.04.3" date="2021-07-08"/> <release version="21.04.2" date="2021-06-10"/> <release version="21.04.1" date="2021-05-13"/> - <release version="21.04.0" date="2021-04-22"/> </releases> <content_rating type="oars-1.1"/> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/ca/docs/bovo/index.docbook new/bovo-21.08.0/po/ca/docs/bovo/index.docbook --- old/bovo-21.04.3/po/ca/docs/bovo/index.docbook 1970-01-01 01:00:00.000000000 +0100 +++ new/bovo-21.08.0/po/ca/docs/bovo/index.docbook 2021-08-06 02:16:42.000000000 +0200 @@ -0,0 +1,598 @@ +<?xml version="1.0" ?> +<!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" "dtd/kdedbx45.dtd" [ + + <!ENTITY % Catalan "INCLUDE" +> <!-- change language only here --> + <!ENTITY % addindex "IGNORE" +> <!-- do not change this! --> +]> + +<book id="bovo" lang="&language;" +> <!-- do not change this! --> +<bookinfo> + <title +>El manual del &bovo;</title> + +<authorgroup> +<author +><firstname +>Aron</firstname +><surname +>Bostrom</surname +> <affiliation +><address +>&Aron.Bostrom.mail;</address +></affiliation> +</author> +<author +><firstname +>Eugene</firstname +><surname +>Trounev</surname +> <affiliation +><address +><email +>eugene.trou...@gmail.com</email +></address +></affiliation> +</author> +&traductor.Antoni.Bella; +</authorgroup> + +<copyright> +<year +>2007</year> +<holder +>Aron Bostrom</holder> +</copyright> +<legalnotice +>&FDLNotice;</legalnotice> + +<date +>21 de juny de 2021</date> +<releaseinfo +>KDE Gear 21.04</releaseinfo> + +<abstract> + <para +>Aquesta documentaci?? descriu el joc &bovo; versi?? 1.1</para> +</abstract> + +<!--List of relevan keywords--> +<keywordset> + <keyword +>KDE</keyword +> <!-- do not change this! --> + <keyword +>kdegames</keyword +> <!-- do not change this! --> + <keyword +>joc</keyword +> <!-- do not change this! --> + <keyword +>bovo</keyword +><!--Application name goes here--> +<!-- Game genre. Use as many as necessary. Available game types are: Arcade, Board, Card, Dice, Toys, Logic, Strategy.--> + <keyword +>arcade</keyword> + <keyword +>tauler</keyword> + <keyword +>zeros i creus</keyword> +<!--Number of possible players. It can be: One, Two,..., Multiplayer--> + <keyword +>dos jugadors</keyword> +<!--All other relevant keywords--> + <keyword +>zeros</keyword> + <keyword +>creus</keyword> + <keyword +>Gomoku</keyword> + <keyword +>Connecta cinc</keyword> + <keyword +>Connecta5</keyword> + <keyword +>joc de taula</keyword> + <keyword +>X i O</keyword> + <keyword +>Cinc en una fila</keyword> + <keyword +>trencaclosques</keyword> +</keywordset> +</bookinfo> +<!--Content begins here: --> +<chapter id="introduction" +><title +>Introducci??</title +> <!-- do not change this! --> + <note +><title +>Tipus de joc:</title +><para +>Tauler, arcade</para +></note +><!-- Game genre. Use as many as necessary. Available game types are: Arcade, Board, Card, Dice, Toys, Logic, Strategy.--> + <note +><title +>Nombre de possibles jugadors:</title +><para +>Dos</para +></note +><!--Number of possible players. It can be: One, Two,..., Multiplayer--> + +<!--Short game description starts here. 3-4 sentences (paragraphs)--> + <para +>El &bovo; ??s un Gomoku (del japon??s <foreignphrase lang="ja" +>????????????</foreignphrase +>, <quote +>cinc punts</quote +>) com un joc per a dos jugadors, on els adversaris s'alternen per a col??locar els seus respectius pictogrames sobre el tauler de joc. L'objectiu ??s connectar cinc de les teves pr??pies peces en una fila de forma ininterrompuda en vertical, horitzontal o diagonal. </para> + <note +><title +>Nota:</title +><para +>Tamb?? conegut com: Connecta cinc, Cinc en una fila, X i O, Zeros i creus</para +></note> +</chapter> + +<chapter id="howto" +><title +>Com es juga</title +> <!-- do not change this! --> + +<screenshot> +<mediaobject> +<imageobject> +<imagedata fileref="mainscreen.png" format="PNG"/> +</imageobject> +<textobject> +<phrase +>Pantalla principal del &bovo;</phrase> +</textobject> +</mediaobject> +</screenshot> + +<!--IMPORTANT: If the game has no defined objective, please remove the below line.--> + <note +><title +>Objectiu:</title +><para +>Connectar cinc de les peces pr??pies en una fila de forma ininterrompuda en vertical, horitzontal o diagonal.</para +></note> + <para +>La primera vegada que s'inicia el &bovo;, s'inicia en el mode de demostraci?? on dos jugadors de la IA lluiten entre si. Sempre podreu iniciar una partida nova emprant el bot?? <guibutton +>Nova</guibutton +> de la barra d'eines, l'entrada de men?? <menuchoice +><guimenu +>Joc</guimenu +><guimenuitem +>Nova</guimenuitem +></menuchoice +> a la barra de men??s o emprant la drecera predeterminada <keycombo action="simul" +>&Ctrl;<keycap +>N</keycap +></keycombo +>. </para> + <note +><title +>Nota:</title +><para +>A causa que el primer jugador sempre t?? un avantatge sobre el segon, el &bovo; alternar?? els jugadors, canviant-los en cada partida nova. </para +></note> + <para +>Si sou el primer jugador, comenceu la partida col??locant el pictograma en qualsevol lloc del camp de joc. Si sou el segon jugador, espereu fins que el primer jugador col??loqui el seu pictograma i despr??s feu el mateix. Podeu col??locar la vostra marca en qualsevol quadrat del camp, a menys que ja estigui ocupat per una altra pe??a del joc (independentment de si ??s el vostre pictograma o el de l'adversari). </para> + <para +>Heu de situar les vostres peces tot evitant que l'adversari connecti cinc marques en una fila de forma ininterrompuda en vertical, horitzontal o diagonal. Al mateix temps, n'heu de connectar cinc de les vostres pr??pies en aquest mateix format. Qui ho aconsegueixi primer, guanyar?? la ronda. </para> +</chapter> + +<chapter id="rules_and_tips" +><title +>Les regles del joc, estrat??gies i consells</title +> <!-- do not change this! --> + <!--This section has to do with game rules. Please give a detailed description of those using lists or paragraphs.--> + <sect1 id="rules"> + <title +>Les regles del joc</title> + <itemizedlist> + <listitem +><para +>Els jugadors fan torns per a posar les seves respectives marques sobre el tauler de joc.</para +></listitem> + <listitem +><para +>Un jugador no pot moure la seva marca ja col??locada o posar-ne una sobre d'una altra.</para +></listitem> + <listitem +><para +>Els jugadors no poden perdre el seu torn.</para +></listitem> + <listitem +><para +>El jugador que aconsegueixi cinc marques connectades en l??nia recta (ja sigui en vertical, horitzontal o diagonal) guanyar?? la partida.</para +></listitem> + </itemizedlist> + </sect1> + <sect1 id="tips"> + <title +>Consells de joc</title> + <itemizedlist> + <listitem +><para +>Quan s'inicia el &bovo; per primera vegada, caldr?? canviar-ne la mida. Canvieu la mida de la finestra de joc a la mida desitjada i el &bovo; escalar?? el tauler de joc.</para +></listitem> + <listitem +><para +>La primera vegada que s'inicia el &bovo;, s'inicia en el mode de demostraci??, on dos jugadors de la IA s'enfronten entre si.</para +></listitem> + <listitem +><para +>Quan se surt del &bovo; abans que acabi la partida, la partida activa es desar?? autom??ticament. Si durant l'inici, el &bovo; detecta una partida desada autom??ticament, es restaur??. Si no ??s aix??, el &bovo; llan??ar?? un mode de demostraci??.</para +></listitem> + <listitem +><para +>Sempre podeu iniciar una patida nova amb el bot?? <guibutton +>Nova</guibutton +> de la barra d'eines, l'entrada de men?? <menuchoice +><guimenu +>Joc</guimenu +><guimenuitem +>Nova</guimenuitem +></menuchoice +> a la barra de men??s o amb la drecera predeterminada <keycombo action="simul" +>&Ctrl;<keycap +>N</keycap +></keycombo +>.</para +></listitem> + <listitem +><para +>Si s'inicia una partida nova quan ja n'hi ha una activa, aquesta ??ltima es comptar?? com a perduda.</para +></listitem> + <listitem +><para +>Es pot canviar la dificultat amb la llista desplegable <guilabel +>Dificultat</guilabel +> al costat dret de la barra d'estat, o des de l'entrada de men?? <menuchoice +><guimenu +>Arranjament</guimenu +><guimenuitem +>Dificultat</guimenuitem +></menuchoice +> a la barra de men??s.</para +></listitem> + <listitem +><para +>L'efecte de canviar la dificultat t?? lloc immediatament.</para +></listitem> + <listitem +><para +>Podeu canviar el tema del &bovo; des de l'entrada de men?? <menuchoice +><guimenu +>Arranjament</guimenu +> <guisubmenu +>Tema</guisubmenu +></menuchoice +> a la barra de men??s. A continuaci??, el tema es canviar?? immediatament.</para +></listitem> + <listitem +><para +>L'animaci?? es pot activar o desactivar com m??s us agradi des de l'entrada de men?? <menuchoice +><guimenu +>Arranjament</guimenu +> <guimenuitem +>Animaci??</guimenuitem +></menuchoice +> a la barra de men??s.</para +></listitem> + <listitem +><para +>Si us adoneu que heu realitzat un moviment molt dolent, teniu la possibilitat de desfer el vostre ??ltim moviment des de la barra d'eines, la barra de men??s o amb la drecera de teclat predeterminada per a desfer <keycombo action="simul" +>&Ctrl;<keycap +>Z</keycap +></keycombo +>.</para +><para +>Podreu seguir desfent moviments fins que arribeu al comen??ament de la partida.</para +></listitem> + <listitem +><para +>Si no sabeu quin moviment fer, podeu obtenir un consell del jugador ordinador amb el bot?? <guibutton +>Consell</guibutton +>. La pe??a de la partida aconsellada pel &bovo; parpellejar?? durant un breu per??ode de temps.</para +></listitem> + <listitem +><para +>Quan s'acabi una partida, s'habilitar?? l'acci?? <guibutton +>Repeteix</guibutton +>, la qual comen??ar?? una repetici?? de l'??ltima partida.</para +></listitem> + </itemizedlist> + </sect1> +</chapter> + +<chapter id="interface" +><title +>Resum de la interf??cie</title +> <!-- do not change this! --> + +<sect1 id="menu"> +<title +>Elements de men??</title> + +<variablelist> +<varlistentry> +<term +><menuchoice +><shortcut +><keycombo action="simul" +>&Ctrl;<keycap +>N</keycap +></keycombo +></shortcut +> <guimenu +>Joc</guimenu +> <guimenuitem +>Nova</guimenuitem +></menuchoice +></term> +<listitem +><para +>Comen??a una partida nova.</para +></listitem> +</varlistentry> + +<varlistentry> +<term> +<menuchoice +><guimenu +>Joc</guimenu +> <guimenuitem +>Repetici??</guimenuitem +></menuchoice +></term> +<listitem +><para +>Torna a jugar l'??ltima partida.</para +></listitem> +</varlistentry> + +<varlistentry> +<term +><menuchoice +><shortcut +><keycombo action="simul" +>&Ctrl;<keycap +>Q</keycap +></keycombo +> </shortcut +> <guimenu +>Joc</guimenu +> <guimenuitem +>Surt</guimenuitem +></menuchoice +></term> +<listitem +><para +>En seleccionar aquest element s'acabar?? la teva partida en joc i se sortir?? del &bovo;.</para +></listitem> +</varlistentry> + +<varlistentry> +<term +><menuchoice +><shortcut +><keycombo action="simul" +>&Ctrl;<keycap +>Z</keycap +></keycombo +> </shortcut +> <guimenu +>Mou</guimenu +> <guimenuitem +>Desf??s</guimenuitem +> </menuchoice> +</term> +<listitem> +<para +><action +>Desf?? l'??ltim moviment que heu realitzat.</action +></para> +</listitem> +</varlistentry> + +<varlistentry> +<term +><menuchoice +><shortcut +><keycap +>H</keycap +></shortcut +> <guimenu +>Mou</guimenu +> <guimenuitem +>Consell</guimenuitem +> </menuchoice +></term> +<listitem> +<para +><action +>Mostra</action +> una pista per al pr??xim moviment. La pe??a del joc aconsellada per la IA del &bovo; parpellejar?? durant un breu per??ode de temps.</para> +</listitem> +</varlistentry> + +<varlistentry> +<term +><menuchoice +><guimenu +>Arranjament</guimenu +> <guisubmenu +>Tema</guisubmenu +></menuchoice +></term> +<listitem +><para +>Tria un dels temes <guimenuitem +>Scribble</guimenuitem +>, <guimenuitem +>Contrast alt</guimenuitem +>, <guimenuitem +>Espai</guimenuitem +> o <guimenuitem +>Gomoku</guimenuitem +> per al joc.</para +></listitem> +</varlistentry> + +<varlistentry> +<term +><menuchoice +><guimenu +>Arranjament</guimenu +><guimenuitem +>Animaci??</guimenuitem +></menuchoice +></term> +<listitem +><para +>Activa o desactiva l'animaci??.</para +></listitem> +</varlistentry> + +<varlistentry> +<term +><menuchoice +><guimenu +>Arranjament</guimenu +> <guisubmenu +>Dificultat</guisubmenu +></menuchoice +></term> +<listitem +><para +>Tria la dificultat del joc entre diversos nivells, des <guimenuitem +> Rid??culament f??cil</guimenuitem +> fins a <guimenuitem +>Impossible</guimenuitem +>.</para +></listitem> +</varlistentry> + +</variablelist> + +<para +>De manera addicional, el &bovo; t?? la configuraci?? comuna al &kde; i els elements dels men??s <guimenu +>Arranjament</guimenu +> i <guimenu +>Ajuda</guimenu +>. Per a obtenir m??s informaci??, llegiu les seccions sobre <ulink url="help:/fundamentals/menus.html#menus-settings" +>El men?? Arranjament</ulink +> i <ulink url="help:/fundamentals/menus.html#menus-help" +>El men?? Ajuda</ulink +> en els Fonaments del &kde;. </para> + +</sect1> +</chapter> + +<chapter id="faq" +><title +>Preguntes m??s freq??ents</title +> <!-- do not change this! --> +<!--This chapter is for frequently asked questions. Please use <qandaset +> <qandaentry +> only!--> +<qandaset> +<!--Following is a standard list of FAQ questions.--> +<qandaentry> + <question +><para +>Vull canviar l'aparen??a d'aquest joc. Puc fer-ho? </para +></question> + <answer +><para +>S??. Per a canviar el tema visual del &bovo;, podeu utilitzar l'entrada de men?? <menuchoice +><guimenu +>Arranjament</guimenu +> <guisubmenu +>Tema</guisubmenu +></menuchoice +> a la barra de men??s.</para +></answer> +</qandaentry> +<qandaentry> + <question +><para +>Puc utilitzar el teclat per a jugar a aquest joc? </para +></question> + <answer +><para +>No. Aquest joc no es pot jugar amb el teclat.</para +></answer> +</qandaentry> +<qandaentry> + <question +><para +>He de sortir del joc ara, per?? encara no he acabat. Puc desar el meu progr??s?</para +></question> + <answer +><para +>No. No hi ha una caracter??stica com <quote +>Desa</quote +> en el &bovo;, per?? a l'inici s?? que es restaura la darrera partida sense acabar.</para +></answer> +</qandaentry> +<qandaentry> + <question +><para +>On es troben les puntuacions m??s altes?</para +></question> + <answer +><para +>El &bovo; no t?? aquesta caracter??stica.</para +></answer> +</qandaentry> +<!--Please add more Q&As if needed--> + +</qandaset> +</chapter> + +<chapter id="credits" +><title +>Cr??dits i llic??ncia</title +> <!-- do not change this! --> +<!--This chapter is for credits and licenses.--> + +<para +>&bovo; </para> +<para +>Copyright del programa 2002, 2007 &Aron.Bostrom; &Aron.Bostrom.mail; </para> + +<para +>Copyright de la documentaci?? 2007 &Aron.Bostrom; &Aron.Bostrom.mail;</para> + +<para +>Traductor de la documentaci??: &credits.Antoni.Bella;</para +> &underFDL; &underGPL; </chapter> + +&documentation.index; +</book> +<!-- +Local Variables: +mode: sgml +sgml-minimize-attributes:nil +sgml-general-insert-case:lower +sgml-omittag:t +sgml-shorttag:t +sgml-namecase-general:t +sgml-always-quote-attributes:t +sgml-indent-step:0 +sgml-indent-data:nil +sgml-parent-document:nil +sgml-exposed-tags:nil +sgml-local-catalogs:nil +sgml-local-ecat-files:nil +End: +--> Binary files old/bovo-21.04.3/po/ca/docs/bovo/mainscreen.png and new/bovo-21.08.0/po/ca/docs/bovo/mainscreen.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/de/docs/bovo/index.docbook new/bovo-21.08.0/po/de/docs/bovo/index.docbook --- old/bovo-21.04.3/po/de/docs/bovo/index.docbook 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/po/de/docs/bovo/index.docbook 2021-08-06 02:16:42.000000000 +0200 @@ -63,9 +63,9 @@ >&FDLNotice;</legalnotice> <date ->2016-05-09</date> +>2021-06-21</date> <releaseinfo ->1.1 (Anwendungen 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/es/docs/bovo/index.docbook new/bovo-21.08.0/po/es/docs/bovo/index.docbook --- old/bovo-21.04.3/po/es/docs/bovo/index.docbook 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/po/es/docs/bovo/index.docbook 2021-08-06 02:16:42.000000000 +0200 @@ -91,9 +91,9 @@ >&FDLNotice;</legalnotice> <date ->2016-05-09</date> +>2021-06-21</date> <releaseinfo ->1.1 (Aplicaciones 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para @@ -295,13 +295,13 @@ ><para >Se puede cambiar la dificultad con el desplegable <guilabel >Dificultad</guilabel -> en el extremo derecho de la barra de estado, o desde el men?? <menuchoice +> en el extremo derecho de la barra de estado, o usando la opci??n del men?? <menuchoice ><guimenu >Preferencias</guimenu ><guimenuitem >Dificultad</guimenuitem ></menuchoice -> de la barra de men??.</para +>.</para ></listitem> <listitem ><para @@ -309,23 +309,23 @@ ></listitem> <listitem ><para ->Puede cambiar el tema de &bovo; desde el men?? <menuchoice +>Puede cambiar el tema de &bovo; usando la opci??n del men?? <menuchoice > <guimenu >Preferencias</guimenu > <guisubmenu >Tema</guisubmenu ></menuchoice -> de la barra de men??. El tema se cambiar?? inmediatamente.</para +>. El tema se cambiar?? inmediatamente.</para ></listitem> <listitem ><para ->Se puede activar y desactivar la animaci??n a voluntad desde el men?? <menuchoice +>Se puede activar y desactivar la animaci??n a voluntad usando la opci??n del men?? <menuchoice ><guimenu >Preferencias</guimenu > <guimenuitem >Animaci??n</guimenuitem ></menuchoice -> de la barra de men??.</para +>.</para ></listitem> <listitem ><para @@ -553,13 +553,13 @@ ></question> <answer ><para ->S??. Para cambiar el tema visual de &bovo; puede usar la opci??n <menuchoice +>S??. Para cambiar el tema visual de &bovo; puede usar la opci??n del men?? <menuchoice ><guimenu >Preferencias</guimenu ><guisubmenu >Tema</guisubmenu > </menuchoice -> de la barra de men??.</para +>.</para ></answer> </qandaentry> <qandaentry> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/it/docs/bovo/index.docbook new/bovo-21.08.0/po/it/docs/bovo/index.docbook --- old/bovo-21.04.3/po/it/docs/bovo/index.docbook 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/po/it/docs/bovo/index.docbook 2021-08-06 02:16:42.000000000 +0200 @@ -63,9 +63,9 @@ >&FDLNotice;</legalnotice> <date ->2016-05-09</date> +>2021-06-21</date> <releaseinfo ->1.1 (Applications 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para @@ -141,7 +141,9 @@ <para >&bovo; ?? un gioco tipo Gomoku (dal Giapponese <foreignphrase lang="ja" >????????????</foreignphrase ->lit. ??five points??) per due giocatori, dove gli avversari si alternano mettendo i rispettivi simboli sul tavolo da gioco. Lo scopo di questo gioco ?? allineare verticalmente, orizzontalmente o diagonalmente cinque dei vostri simboli. </para> +>, <quote +>cinque punti</quote +>) per due giocatori, dove gli avversari si alternano mettendo i rispettivi simboli sul tavolo da gioco. Lo scopo di questo gioco ?? allineare verticalmente, orizzontalmente o diagonalmente cinque dei vostri simboli. </para> <note ><title >Nota:</title @@ -267,7 +269,7 @@ ><para >Si pu?? cambiare la difficolt?? con la casella <guilabel >Difficolt??</guilabel -> nell'estremit?? destra della barra di stato, o dal menu <menuchoice +> nell'estremit?? destra della barra di stato, o dalla voce di menu <menuchoice ><guimenu >Impostazioni</guimenu ><guimenuitem @@ -281,7 +283,7 @@ ></listitem> <listitem ><para ->Puoi cambiare il tema di &bovo; dal menu <menuchoice +>Puoi cambiare il tema di &bovo; dalla voce di menu <menuchoice ><guimenu >Impostazioni</guimenu > <guisubmenu @@ -291,7 +293,7 @@ ></listitem> <listitem ><para ->Le animazioni possono essere abilitate o disabilitate dal menu <menuchoice +>Le animazioni possono essere abilitate o disabilitate tramite la voce di menu <menuchoice ><guimenu >Impostazioni</guimenu > <guimenuitem @@ -525,7 +527,7 @@ ></question> <answer ><para ->S??. Per cambiare il tema di &bovo; puoi usare l'opzione <menuchoice +>S??. Per cambiare il tema di &bovo; puoi usare la voce di menu <menuchoice ><guimenu >Impostazioni</guimenu ><guisubmenu diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/nl/docs/bovo/index.docbook new/bovo-21.08.0/po/nl/docs/bovo/index.docbook --- old/bovo-21.04.3/po/nl/docs/bovo/index.docbook 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/po/nl/docs/bovo/index.docbook 2021-08-06 02:16:42.000000000 +0200 @@ -49,9 +49,9 @@ >&FDLNotice;</legalnotice> <date ->2016-05-09</date> +>2021-06-21</date> <releaseinfo ->1.1 (Applications 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para @@ -127,7 +127,9 @@ <para >&bovo; is een op Gomoku (uit het Japans <foreignphrase lang="ja" >????????????</foreignphrase ->lit. "vijf punten") lijkend spel voor twee spelers, waar de tegenspelers afwisselend hun respectievelijke pictogram op het speelbord zetten. Het doel van dit spel is om vijf van uw eigen stukken aaneengesloten op een rij verticaal, horizontaal of diagonaal te verbinden. </para> +>lit. <quote +>vijf punten</quote +>) lijkend spel voor twee spelers, waar de tegenspelers afwisselend hun respectievelijke pictogram op het speelbord zetten. Het doel van dit spel is om vijf van uw eigen stukken aaneengesloten op een rij verticaal, horizontaal of diagonaal te verbinden. </para> <note ><title >Notitie:</title @@ -253,7 +255,7 @@ ><para >U kunt de moeilijkheidsgraad instellen met de keuzelijst <guilabel >Moeilijkheid</guilabel -> aan de rechterkant van de statusbalk of via het menuitem <menuchoice +> aan de rechterkant van de statusbalk of via het menu-item <menuchoice ><guimenu >Instellingen</guimenu ><guimenuitem @@ -277,7 +279,7 @@ ></listitem> <listitem ><para ->Animatie kunt u desgewenst aan- en uitschakelen via het menu-item<menuchoice +>Animatie kunt u desgewenst aan- en uitschakelen via het menu-item <menuchoice ><guimenu >Instellingen</guimenu > <guimenuitem @@ -511,7 +513,7 @@ ></question> <answer ><para ->Ja. Om het visuele uiterlijk van &bovo; te wijzigen gaat u naar <menuchoice +>Ja. Om het visuele uiterlijk van &bovo; te wijzigen gaat u naar menu-item <menuchoice ><guimenu >Instellingen</guimenu ><guisubmenu diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/sv/docs/bovo/index.docbook new/bovo-21.08.0/po/sv/docs/bovo/index.docbook --- old/bovo-21.04.3/po/sv/docs/bovo/index.docbook 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/po/sv/docs/bovo/index.docbook 2021-08-06 02:16:42.000000000 +0200 @@ -63,9 +63,9 @@ >&FDLNotice;</legalnotice> <date ->2016-05-09</date> +>2021-06-21</date> <releaseinfo ->1.1 (Program 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para @@ -141,7 +141,9 @@ <para >&bovo; ??r ett spel f??r tv?? spelare som liknar Gomoku (fr??n japanska ><foreignphrase lang="ja" >????????????</foreignphrase ->, ordagrant "fem po??ng"), d??r motst??ndarna omv??xlande placerar sina respektive symboler p?? spelbr??det. Spelets syfte ??r att sammanbinda fem av dina egna pj??ser i en obruten rad vertikalt, horisontellt eller diagonalt. </para> +>, ordagrant <quote +>fem po??ng</quote +>), d??r motst??ndarna omv??xlande placerar sina respektive symboler p?? spelbr??det. Spelets syfte ??r att sammanbinda fem av dina egna pj??ser i en obruten rad vertikalt, horisontellt eller diagonalt. </para> <note ><title >Observera:</title @@ -267,7 +269,7 @@ ><para >Sv??righetsgraden kan ??ndras med kombinationsrutan <guilabel >Sv??righet</guilabel -> l??ngst till h??ger p?? statusraden, eller med menyn <menuchoice +> l??ngst till h??ger p?? statusraden, eller med menyalternativet <menuchoice ><guimenu >Inst??llningar</guimenu > <guimenuitem @@ -281,7 +283,7 @@ ></listitem> <listitem ><para ->Du kan byta tema i &bovo; med menyn <menuchoice +>Du kan byta tema i &bovo; med menyalternativet <menuchoice ><guimenu >Inst??llningar</guimenu > <guimenuitem @@ -291,7 +293,7 @@ ></listitem> <listitem ><para ->Animering kan s??ttas p?? eller st??ngas av som du vill fr??n menyn <menuchoice +>Animering kan s??ttas p?? eller st??ngas av som du vill fr??n menyalternativet <menuchoice ><guimenu >Inst??llningar</guimenu > <guimenuitem @@ -525,7 +527,7 @@ ></question> <answer ><para ->Ja. Man kan anv??nda <menuchoice +>Ja. Man kan anv??nda menyalternativet <menuchoice ><guimenu >Inst??llningar</guimenu > <guisubmenu diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/uk/docs/bovo/index.docbook new/bovo-21.08.0/po/uk/docs/bovo/index.docbook --- old/bovo-21.04.3/po/uk/docs/bovo/index.docbook 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/po/uk/docs/bovo/index.docbook 2021-08-06 02:16:42.000000000 +0200 @@ -63,9 +63,9 @@ >&FDLNotice;</legalnotice> <date ->9 ???????????? 2016 ????????</date> +>21 ???????????? 2021 ????????</date> <releaseinfo ->1.1 (???????????????? 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para @@ -141,7 +141,7 @@ <para >&bovo; ??? ???? ?????? ?????????? ???? ???????????? (?????? >???????????????????? <foreignphrase lang="ja" >????????????</foreignphrase ->?????????????????? ????????????? ????????????) ?????? ???????? ??????????????, ???? ?????????????????? ???? ?????????? ???????????????????? ???????????? ???????????????? ???? ?????????????? ??????????. ?????????? ?????? ?? ???????????????? ??????????? ?????????? ???????????????? ?? ???????????????????????? ?????????? ??????????????????????, ?????????????????????????? ?????? ???? ??????????????????. </para> +> ?????????????????? ????????????? ????????????) ?????? ???????? ??????????????, ???? ?????????????????? ???? ?????????? ???????????????????? ???????????? ???????????????? ???? ?????????????? ??????????. ?????????? ?????? ?? ???????????????? ??????????? ?????????? ???????????????? ?? ???????????????????????? ?????????? ??????????????????????, ?????????????????????????? ?????? ???? ??????????????????. </para> <note ><title >????????????????:</title @@ -589,8 +589,7 @@ >???????????????? ??????????????????????: ???????? ?????????????????? <email >yurc...@ukr.net</email ></para -> -&underFDL; &underGPL; </chapter> +> &underFDL; &underGPL; </chapter> &documentation.index; </book> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bovo-21.04.3/po/zh_CN/bovo.po new/bovo-21.08.0/po/zh_CN/bovo.po --- old/bovo-21.04.3/po/zh_CN/bovo.po 2021-07-06 07:20:51.000000000 +0200 +++ new/bovo-21.08.0/po/zh_CN/bovo.po 2021-08-06 02:16:42.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-05-10 03:20+0200\n" -"PO-Revision-Date: 2021-06-20 07:37\n" +"PO-Revision-Date: 2021-07-26 13:50\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"