diff --git a/README.md b/README.md index 69c1ced..57dbb5f 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,9 @@ The app relies and includes the following scripts/binaries: * Added experimental parser of manga webtoons * Improved error handling +####3.2.1: +* Hotfixed crash occurring on OS with Russian locale + ## KNOWN ISSUES * Removing SRCS headers sometimes fail in 32bit enviroments. Due to memory limitations. diff --git a/kcc.py b/kcc.py index 08cdc10..c81a806 100644 --- a/kcc.py +++ b/kcc.py @@ -17,7 +17,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -__version__ = '3.2' +__version__ = '3.2.1' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/KCC_gui.py b/kcc/KCC_gui.py index 75a59ed..e86e93e 100644 --- a/kcc/KCC_gui.py +++ b/kcc/KCC_gui.py @@ -17,7 +17,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -__version__ = '3.2' +__version__ = '3.2.1' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/__init__.py b/kcc/__init__.py index 8f25277..f9bbb7e 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.2' +__version__ = '3.2.1' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' \ No newline at end of file diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py index c448654..d56e5e7 100755 --- a/kcc/comic2ebook.py +++ b/kcc/comic2ebook.py @@ -17,7 +17,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '3.2' +__version__ = '3.2.1' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/comic2panel.py b/kcc/comic2panel.py index cf72d4a..57a39eb 100644 --- a/kcc/comic2panel.py +++ b/kcc/comic2panel.py @@ -17,7 +17,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '3.2' +__version__ = '3.2.1' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/setup.py b/setup.py index f71c115..c17d4e6 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ Usage (Windows): from sys import platform NAME = "KindleComicConverter" -VERSION = "3.2" +VERSION = "3.2.1" MAIN = "kcc.py" if platform == "darwin":