diff --git a/README.md b/README.md index 9ce44439..4d9d4d05 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,6 @@ You can find the latest released binary at the following links: - **OS X:** [http://kcc.vulturis.eu/OSX/](http://kcc.vulturis.eu/OSX/) - **Linux:** Just download sourcecode and launch: `python kcc.py` -_It has been reported by a couple of users that version 2.10 crashing on OSX at start. We don't know if that issue still exist in version 3.0. -If it happens to you please append your message to [Issue #52](https://github.com/ciromattia/kcc/issues/52)._ - ## INPUT FORMATS **KCC** can understand and convert, at the moment, the following file types: - PNG, JPG, GIF, TIFF, BMP @@ -213,8 +210,12 @@ The app relies and includes the following scripts/binaries: * Added support for custom width/height * Added option to disable color conversion +####3.1: +* Added profile: Kindle for Android +* Add file/directory dialogs now support multiselect +* Many small fixes and tweaks + ## KNOWN ISSUES -* _Add directory_ dialog allow to select multiple directories but they are not added to job list. [QT bug.](https://bugreports.qt-project.org/browse/QTBUG-21372) * Removing SRCS headers sometimes fail in 32bit enviroments. Due to memory limitations. ## COPYRIGHT diff --git a/kcc.py b/kcc.py index ef8678c8..1e190e13 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.0' +__version__ = '3.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 129495ce..4a3924c1 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.0' +__version__ = '3.1' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' @@ -297,7 +297,7 @@ def selectFile(self): '*.cbz *.cbr *.zip *.rar *.pdf') else: fnames = QtGui.QFileDialog.getOpenFileNames(MainWindow, 'Select file', self.lastPath, - '*.cbz *.zip *.pdf', None, QtGui.QFileDialog.ShowDirsOnly) + '*.cbz *.zip *.pdf') # Lame UTF-8 security measure for fname in fnames: try: diff --git a/kcc/__init__.py b/kcc/__init__.py index 681292de..c40afead 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.0' +__version__ = '3.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 d18f161b..d944fb80 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.0' +__version__ = '3.1' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/setup.py b/setup.py index 1f044165..b10e8a9a 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ from sys import platform NAME = "KindleComicConverter" -VERSION = "3.0" +VERSION = "3.1" MAIN = "kcc.py" if platform == "darwin":