From bf24e5f51829d90f280cee241970306207abbf32 Mon Sep 17 00:00:00 2001 From: blitzman Date: Sat, 25 Feb 2017 18:47:03 -0500 Subject: [PATCH 1/3] Fix for #1014 --- gui/bitmapLoader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/bitmapLoader.py b/gui/bitmapLoader.py index 9a6639481..83fc46961 100644 --- a/gui/bitmapLoader.py +++ b/gui/bitmapLoader.py @@ -34,7 +34,7 @@ except ImportError: class BitmapLoader(object): try: - archive = zipfile.ZipFile(os.path.join(config.pyfaPath, 'imgs.zip', 'r')) + archive = zipfile.ZipFile(os.path.join(config.pyfaPath, 'imgs.zip'), 'r') except IOError: archive = None From 1ae5f6469623cdde410522174de21bf72fbd4ebb Mon Sep 17 00:00:00 2001 From: blitzman Date: Sat, 25 Feb 2017 18:50:20 -0500 Subject: [PATCH 2/3] Here we go again! --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index d49b6d37e..a33688018 100644 --- a/config.py +++ b/config.py @@ -19,7 +19,7 @@ saveInRoot = False # Version data version = "1.27.2" -tag = "git" +tag = "Stable" expansionName = "YC119.2" expansionVersion = "1.4" evemonMinVersion = "4081" From cd516f80bb1768a2cb2511f466d9bb257daa1eeb Mon Sep 17 00:00:00 2001 From: blitzman Date: Sat, 25 Feb 2017 19:01:57 -0500 Subject: [PATCH 3/3] bump dev --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index a33688018..550367f48 100644 --- a/config.py +++ b/config.py @@ -18,8 +18,8 @@ debug = False saveInRoot = False # Version data -version = "1.27.2" -tag = "Stable" +version = "1.27.3" +tag = "git" expansionName = "YC119.2" expansionVersion = "1.4" evemonMinVersion = "4081"