We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6e7bd7 commit 8f8c2b8Copy full SHA for 8f8c2b8
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.12'
+APP_VERSION = 'v1.13'
65
BOX_TITLE = '{} {}'.format(APP_NAME, APP_VERSION)
66
67
@@ -2410,6 +2410,7 @@ def get_engines(self):
2410
files = os.listdir(engine_path)
2411
for file in files:
2412
if not file.endswith('.gz') and not file.endswith('.dll') \
2413
+ and not file.endswith('.DS_Store') \
2414
and not file.endswith('.bin') \
2415
and not file.endswith('.dat'):
2416
engine_list.append(file)
0 commit comments