We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db3d4a commit 009ca46Copy full SHA for 009ca46
1 file changed
python_easy_chess_gui.py
@@ -61,7 +61,7 @@
61
62
63
APP_NAME = 'Python Easy Chess GUI'
64
-APP_VERSION = 'v1.1'
+APP_VERSION = 'v1.2'
65
BOX_TITLE = '{} {}'.format(APP_NAME, APP_VERSION)
66
67
@@ -420,12 +420,6 @@ def configure_engine(self):
420
logging.exception('{Failed to configure '
421
'engine}')
422
423
- # Don't use UCI_Analyse mode
424
- try:
425
- self.engine.configure({'UCI_AnalyseMode': False})
426
- except Exception:
427
- logging.exception('Failed to set UCI_AnalyseMode.')
428
-
429
def run(self):
430
"""
431
Run engine to get search info and bestmove. If there is error we
0 commit comments