Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
joansalasoler committed Mar 23, 2022
2 parents 7704328 + c94885a commit 9c9ca76
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ News of Aualé
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.

Version 2.2.0 (23 Mar 2022) (Joan Sala Soler)
Update artificial intelligence engine Aalina and other minor bug fixes.

Version 2.0.0 (10 Sep 2020) (Joan Sala Soler)
Initial release of the 2.0 series.

Expand Down
2 changes: 1 addition & 1 deletion share/man/man6/auale.6
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'\" t
.\"
.pc
.TH AUALE 6 "2020-09-10" "2.0.0" "Aualé Manual"
.TH AUALE 6 "2020-09-10" "2.2.0" "Aualé Manual"
.SH NAME
Aualé \- The Game of Mancala
.\" ********************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/auale/auale.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Auale(Gtk.Application):

__gtype_name__ = 'Auale'

__VERSION = '2.1.0'
__VERSION = '2.2.0'
__DISPLAY_NAME = 'Aualé'
__ID = 'com.joansala.auale'
__FLAGS = Gio.ApplicationFlags.HANDLES_OPEN
Expand Down
Binary file modified src/auale/data/auale.gresource
Binary file not shown.
Binary file modified src/auale/data/engine/Aalina.jar
Binary file not shown.
Binary file added src/auale/data/engine/oware-roots.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion src/auale/gui/animation/sow.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, house):
self.connect('started', self.on_transition_started)
self.add_transition(scalex)
self.add_transition(scaley)
self.set_duration(600)
self.set_duration(1000)

self._scalex = scalex

Expand Down
2 changes: 1 addition & 1 deletion src/auale/gui/services/player_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,6 @@ def _get_default_command(self):
file_path = os.path.dirname(__file__)
base_path = os.path.abspath(os.path.join(file_path, os.pardir))
engine_path = os.path.join(base_path, self.__DEFAULT_ENGINE_PATH)
command = (shutil.which('java'), '-jar', engine_path)
command = (shutil.which('java'), '-jar', engine_path, 'service')

return command
2 changes: 1 addition & 1 deletion src/auale/gui/widgets/board_animator.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class BoardAnimator(GObject.GObject):
"""Animates moves on the board canvas"""

__gtype_name__ = 'BoardAnimator'
__STEP_DELAY = 250
__STEP_DELAY = 350

def __init__(self, canvas):
GObject.GObject.__init__(self)
Expand Down
2 changes: 1 addition & 1 deletion src/resources/gtk/dialogs/about_dialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
<property name="destroy_with_parent">True</property>
<property name="type_hint">dialog</property>
<property name="program_name">Aualé</property>
<property name="version">2.0.0</property>
<property name="version">2.2.0</property>
<property name="copyright">Copyright © 2014-2021 Joan Sala Soler</property>
<property name="comments" translatable="yes">A graphical user interface for oware</property>
<property name="website">https://auale.joansala.com</property>
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

PACKAGE_CONFIG = dict(
name='auale',
version='2.0.0',
version='2.2.0',
url='https://auale.joansala.com/',
author='Joan Sala Soler',
author_email='contact@joansala.com',
Expand Down

0 comments on commit 9c9ca76

Please sign in to comment.