diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | kcc.iss | 2 | ||||
-rwxr-xr-x | kcc.py | 3 | ||||
-rw-r--r-- | kindlecomicconverter/__init__.py | 2 | ||||
-rw-r--r-- | other/osx/Info.plist | 6 |
5 files changed, 10 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 997e043..759b6ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # CHANGELOG +#### 5.4.3: +* Fixed conversion crash on Windows + #### 5.4.2: * Added Kindle Oasis 2 profile * Allowed metadata editor to edit directories diff --git a/kcc.iss b/kcc.iss index 5225426..28c54a4 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "5.4.2" +#define MyAppVersion "5.4.3" #define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski" #define MyAppURL "http://kcc.iosphe.re/" #define MyAppExeName "KCC.exe" diff --git a/kcc.py b/kcc.py index afd4796..618c2cb 100755 --- a/kcc.py +++ b/kcc.py @@ -34,6 +34,7 @@ if sys.platform.startswith('darwin'): else: os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/osx/:' + os.environ['PATH'] elif sys.platform.startswith('win'): + ''' import multiprocessing.popen_spawn_win32 as forking class _Popen(forking.Popen): @@ -50,7 +51,7 @@ elif sys.platform.startswith('win'): else: os.putenv('_MEIPASS2', '') forking.Popen = _Popen - + ''' if getattr(sys, 'frozen', False): os.chdir(os.path.dirname(os.path.abspath(sys.executable))) else: diff --git a/kindlecomicconverter/__init__.py b/kindlecomicconverter/__init__.py index dad32ea..cdb3623 100644 --- a/kindlecomicconverter/__init__.py +++ b/kindlecomicconverter/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.4.2' +__version__ = '5.4.3' __license__ = 'ISC' __copyright__ = '2012-2017, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>' __docformat__ = 'restructuredtext en' diff --git a/other/osx/Info.plist b/other/osx/Info.plist index 158bd62..1c50fa5 100644 --- a/other/osx/Info.plist +++ b/other/osx/Info.plist @@ -30,7 +30,7 @@ <key>CFBundleExecutable</key> <string>MacOS/Kindle Comic Converter</string> <key>CFBundleGetInfoString</key> - <string>KindleComicConverter 5.4.2, written 2012-2017 by Ciro Mattia Gonano and Pawel Jastrzebski</string> + <string>KindleComicConverter 5.4.3, written 2012-2017 by Ciro Mattia Gonano and Pawel Jastrzebski</string> <key>CFBundleIconFile</key> <string>comic2ebook.icns</string> <key>CFBundleIdentifier</key> @@ -42,11 +42,11 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>5.4.2</string> + <string>5.4.3</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>5.4.2</string> + <string>5.4.3</string> <key>LSEnvironment</key> <dict> <key>PATH</key> |