-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
29 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# CHANGELOG | ||
#### 5.4.5: | ||
* Fixed EPUB output for non-Kindle devices | ||
|
||
#### 5.4.4: | ||
* Minor bug fixes | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '5.4.4' | ||
__version__ = '5.4.5' | ||
__license__ = 'ISC' | ||
__copyright__ = '2012-2018, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>' | ||
__docformat__ = 'restructuredtext en' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> | ||
# Copyright (c) 2013-2018 Pawel Jastrzebski <[email protected]> | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) 2010 Alex Yatskov | ||
# Copyright (C) 2011 Stanislav (proDOOMman) Kosolapov <[email protected]> | ||
# Copyright (c) 2016 Alberto Planas <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> | ||
# Copyright (c) 2013-2018 Pawel Jastrzebski <[email protected]> | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> | ||
# Copyright (c) 2013-2018 Pawel Jastrzebski <[email protected]> | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
""" | ||
pip/pyinstaller build script for KCC. | ||
|
@@ -59,7 +60,7 @@ def run(self): | |
os.system('cp other/linux/kindlecomicconverter dist/usr/share/lintian/overrides') | ||
os.chdir('dist') | ||
os.system('fpm -f -s dir -t deb -n kindlecomicconverter -v ' + VERSION + | ||
' -m "Paweł Jastrzębski <[email protected]>" --license "ISC" ' | ||
' -m "Pawel Jastrzebski <[email protected]>" --license "ISC" ' | ||
'--description "$(printf "Comic and Manga converter for e-book ' | ||
'readers.\nThis app allows you to transform your PNG, JPG, GIF, ' | ||
'CBZ, CBR and CB7 files\ninto EPUB or MOBI format e-books.")" ' | ||
|