Skip to content

Commit

Permalink
Version R2.015c
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmonk committed Jun 30, 2024
1 parent 4b03d17 commit ac336db
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
Binary file modified Resources/Locale/hu/LC_MESSAGES/lucaschess.mo
Binary file not shown.
2 changes: 1 addition & 1 deletion Resources/Locale/hu/lang.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NAME=Magyar
AUTHOR=József Oláh
%=99
%=100
3 changes: 2 additions & 1 deletion bin/Code/MainWindow/WInformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def __init__(self, w_parent):
self.width_saved = None
self.parent_width_saved = None
self.width_previous = None
self.saved_width = None

configuration = Code.configuration

Expand Down Expand Up @@ -493,7 +494,7 @@ def edit(self, number, with_engine_active=False):
if number > -1:
li_variations = self.li_variations()
if li_variations:
game = li_variations[number]
game = li_variations[number].copia()
else:
number = -1

Expand Down
2 changes: 2 additions & 0 deletions bin/Code/ManagerVariations.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ def start(self, game, is_white_bottom, with_engine_active, is_competitive, go_to

if not len(self.game):
self.play_next_move()
else:
self.goto_current()

def run_action(self, key):
if key == TB_ACCEPT:
Expand Down
2 changes: 1 addition & 1 deletion bin/Code/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def relative_root(path):


BASE_VERSION = "B" # Para el control de updates que necesitan reinstalar entero
VERSION = "R 2.15b"
VERSION = "R 2.15c"
DEBUG = False
DEBUG_ENGINES = False

Expand Down
2 changes: 1 addition & 1 deletion bin/bug.log
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version R 2.15b
Version R 2.15c

0 comments on commit ac336db

Please sign in to comment.