Skip to content

Commit

Permalink
Version bump + README update
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Feb 1, 2014
1 parent 866f889 commit 9867f63
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,12 @@ The app relies and includes the following scripts/binaries:
* Fixed OSX file association support
* Many extensive internal changes and tweaks

####4.0.1:
* Fixed file lock problems that plagued some Windows users
* Fixed content server failing to start on Windows
* Improved performance of WebToon splitter
* Tweaked margin color detection

## KNOWN ISSUES
Please check [wiki page](https://github.com/ciromattia/kcc/wiki/Known-issues).

Expand Down
2 changes: 1 addition & 1 deletion kcc-c2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.

__version__ = '4.0'
__version__ = '4.0.1'
__license__ = 'ISC'
__copyright__ = '2012-2014, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
2 changes: 1 addition & 1 deletion kcc-c2p.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
print('ERROR: This is Python 3 script!')
exit(1)

__version__ = '4.0'
__version__ = '4.0.1'
__license__ = 'ISC'
__copyright__ = '2012-2014, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
2 changes: 1 addition & 1 deletion kcc.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "Kindle Comic Converter"
#define MyAppVersion "4.0"
#define MyAppVersion "4.0.1"
#define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski"
#define MyAppURL "http://kcc.vulturis.eu/"
#define MyAppExeName "KCC.exe"
Expand Down
2 changes: 1 addition & 1 deletion kcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.

__version__ = '4.0'
__version__ = '4.0.1'
__license__ = 'ISC'
__copyright__ = '2012-2014, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
2 changes: 1 addition & 1 deletion kcc/KCC_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.

__version__ = '4.0'
__version__ = '4.0.1'
__license__ = 'ISC'
__copyright__ = '2012-2014, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
2 changes: 1 addition & 1 deletion kcc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '4.0'
__version__ = '4.0.1'
__license__ = 'ISC'
__copyright__ = '2012-2014, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>'
__docformat__ = 'restructuredtext en'
2 changes: 1 addition & 1 deletion kcc/comic2ebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# PERFORMANCE OF THIS SOFTWARE.
#

__version__ = '4.0'
__version__ = '4.0.1'
__license__ = 'ISC'
__copyright__ = '2012-2014, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
2 changes: 1 addition & 1 deletion kcc/comic2panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# PERFORMANCE OF THIS SOFTWARE.
#

__version__ = '4.0'
__version__ = '4.0.1'
__license__ = 'ISC'
__copyright__ = '2012-2014, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
exit(1)

NAME = "KindleComicConverter"
VERSION = "4.0"
VERSION = "4.0.1"
MAIN = "kcc.py"

if platform == "darwin":
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Linux Python package build script

VERSION="4.0"
VERSION="4.0.1"

cp kcc.py __main__.py
zip kcc.zip __main__.py kcc/*.py
Expand Down

0 comments on commit 9867f63

Please sign in to comment.