diff --git a/README.md b/README.md index f57b52d..ef15230 100644 --- a/README.md +++ b/README.md @@ -278,6 +278,12 @@ The app relies and includes the following scripts/binaries: * Merged DX and DXG profiles * Many other minor bug fixes and GUI tweaks +####3.5: +* Added simple content server - Converted files can be now delivered wireless +* Added proper Windows installer +* Improved multiprocessing speed +* GUI tweaks and minor bug fixes + ## COPYRIGHT Copyright (c) 2012-2013 Ciro Mattia Gonano and Paweł Jastrzębski. diff --git a/kcc.iss b/kcc.iss index 0a49891..7d5ac15 100644 --- a/kcc.iss +++ b/kcc.iss @@ -16,7 +16,7 @@ DefaultDirName={pf}\{#MyAppName} DefaultGroupName={#MyAppName} AllowNoIcons=yes LicenseFile=LICENSE.txt -OutputBaseFilename=KindleComicConverter_{#MyAppVersion} +OutputBaseFilename=KindleComicConverter_win_{#MyAppVersion} SetupIconFile=icons\comic2ebook.ico SolidCompression=yes ArchitecturesInstallIn64BitMode=x64 @@ -88,10 +88,10 @@ Source: "build\exe.win32-2.7\sip.pyd"; DestDir: "{app}"; Flags: ignoreversion; C Source: "build\exe.win32-2.7\SSLEAY32.dll"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode Source: "build\exe.win32-2.7\unicodedata.pyd"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode ; Common files -Source: "build\exe.win-amd64-2.7\LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion solidbreak -Source: "build\exe.win-amd64-2.7\Additional-LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion -Source: "build\exe.win-amd64-2.7\UnRAR.exe"; DestDir: "{app}"; Flags: ignoreversion -Source: "build\exe.win-amd64-2.7\7za.exe"; DestDir: "{app}"; Flags: ignoreversion +Source: "LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion solidbreak +Source: "other\Additional-LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion +Source: "other\UnRAR.exe"; DestDir: "{app}"; Flags: ignoreversion +Source: "other\7za.exe"; DestDir: "{app}"; Flags: ignoreversion [Icons] Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" diff --git a/kcc.py b/kcc.py index 23557ac..c53cba3 100644 --- a/kcc.py +++ b/kcc.py @@ -18,7 +18,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -__version__ = '3.4' +__version__ = '3.5' __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 193435e..76be83f 100644 --- a/kcc/KCC_gui.py +++ b/kcc/KCC_gui.py @@ -18,7 +18,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -__version__ = '3.4' +__version__ = '3.5' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/__init__.py b/kcc/__init__.py index 31d2a7b..daf1776 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.4' +__version__ = '3.5' __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 87d6c21..e188566 100755 --- a/kcc/comic2ebook.py +++ b/kcc/comic2ebook.py @@ -18,7 +18,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '3.4' +__version__ = '3.5' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/comic2panel.py b/kcc/comic2panel.py index 9354fad..416b890 100644 --- a/kcc/comic2panel.py +++ b/kcc/comic2panel.py @@ -18,7 +18,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '3.4' +__version__ = '3.5' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/setup.py b/setup.py index d26aa32..64ebada 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ Usage (Windows): from sys import platform NAME = "KindleComicConverter" -VERSION = "3.4" +VERSION = "3.5" MAIN = "kcc.py" if platform == "darwin":