diff --git a/README.md b/README.md index ba27b67..ab95dc6 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ _kc2_ in no way is a replacement for **KCC** so you can be quite confident we'll ## BINARY RELEASES You can find the latest released binary at the following links: -- OS X: [https://dl.dropbox.com/u/16806101/KindleComicConverter_osx_2.9.zip](https://dl.dropbox.com/u/16806101/KindleComicConverter_osx_2.9.zip) -- Win64: [https://dl.dropbox.com/u/16806101/KindleComicConverter_win-amd64_2.9.zip](https://dl.dropbox.com/u/16806101/KindleComicConverter_win-amd64_2.9.zip) -- Win32: [http://pawelj.vulturis.eu/Shared/KindleComicConverter_win-x86_2.9.zip](http://pawelj.vulturis.eu/Shared/KindleComicConverter_win-x86_2.9.zip) +- OS X: [https://dl.dropbox.com/u/16806101/KindleComicConverter_osx_2.10.zip](https://dl.dropbox.com/u/16806101/KindleComicConverter_osx_2.10.zip) +- Win64: [https://dl.dropbox.com/u/16806101/KindleComicConverter_win-amd64_2.10.zip](https://dl.dropbox.com/u/16806101/KindleComicConverter_win-amd64_2.10.zip) +- Win32: [http://pawelj.vulturis.eu/Shared/KindleComicConverter_win-x86_2.10.zip](http://pawelj.vulturis.eu/Shared/KindleComicConverter_win-x86_2.10.zip) - Linux: Just download sourcecode and launch `python kcc.py` *(Provided you have Python and Pillow installed)* ## AWKCC .NET GUI @@ -179,7 +179,7 @@ The app relies and includes the following scripts/binaries: * Panel View support for horizontal content * Fixed panel order for horizontal pages when --rotate is enabled * Disabled cropping and page number cutting for blank pages -* Fixed some slugify issues with specific file naming conventions (#50) +* Fixed some slugify issues with specific file naming conventions (#50, #51) ## COPYRIGHT diff --git a/kcc.py b/kcc.py index efef02e..6318991 100644 --- a/kcc.py +++ b/kcc.py @@ -16,7 +16,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '2.9' +__version__ = '2.10' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano ' __docformat__ = 'restructuredtext en' diff --git a/kcc/__init__.py b/kcc/__init__.py index 9b8fc92..1d288fe 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.0' +__version__ = '2.10' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano ' __docformat__ = 'restructuredtext en' \ No newline at end of file diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py index 4db695d..f3e26d0 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__ = '2.9' +__version__ = '2.10' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano ' __docformat__ = 'restructuredtext en' diff --git a/setup.py b/setup.py index f2974ad..2b0ca16 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ use_setuptools() import sys NAME = "KindleComicConverter" -VERSION = "2.9" +VERSION = "2.10" MAIN = "kcc.py" includefiles = ['README.md', 'MANIFEST.in', 'LICENSE.txt', 'comic2ebook.ico', 'comic2ebook.icns'] diff --git a/setup_console.py b/setup_console.py index 3675977..40e1763 100644 --- a/setup_console.py +++ b/setup_console.py @@ -10,7 +10,7 @@ sys.path.insert(0, 'kcc') setup( name = "KindleComicConverter", - version = "2.9", + version = "2.10", author = "Ciro Mattia Gonano", author_email = "ciromattia@gmail.com", description = "A tool to convert comics (CBR/CBZ/PDFs/image folders) to MOBI.",