mirror of
https://github.com/ciromattia/kcc
synced 2025-12-15 18:56:28 +00:00
Updated README and version bump
This commit is contained in:
24
README.md
24
README.md
@@ -56,21 +56,9 @@ You can find the latest released binary at the following links:
|
|||||||
|
|
||||||
### GUI
|
### GUI
|
||||||
|
|
||||||
Should be pretty self-explanatory.
|
Should be pretty self-explanatory. All options have detailed informations in tooltips.
|
||||||
After completed conversion you should find ready file alongside the original input file (same directory).
|
After completed conversion you should find ready file alongside the original input file (same directory).
|
||||||
|
|
||||||
### Comic2Panel
|
|
||||||
|
|
||||||
**Comic2Panel** is currently experimental piece of software and it is **NOT** part of binary release.
|
|
||||||
|
|
||||||
It is special parser for webstrip manga like _Tower of God_ or _Noblesse_ - Files with a low width, high height and vertical panel flow.
|
|
||||||
Script will automatically detect panels and split them so that they fit target device screen.
|
|
||||||
|
|
||||||
Directory prepared by **Comic2Panel** can be used by KCC but you have to remember about three things:
|
|
||||||
* _Horizontal mode_ option is **mandatory**.
|
|
||||||
* Color of borders will be set automatically.
|
|
||||||
* Setting _Gamma_ to 1.00 will increase quality of color images. Try lower values if image is still too dark.
|
|
||||||
|
|
||||||
### Standalone `comic2ebook.py` usage:
|
### Standalone `comic2ebook.py` usage:
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -84,6 +72,9 @@ Options:
|
|||||||
Quality of Panel View. 0 - Normal 1 - High 2 - Ultra [Default=0]
|
Quality of Panel View. 0 - Normal 1 - High 2 - Ultra [Default=0]
|
||||||
-m, --manga-style Manga style (Right-to-left reading and splitting)
|
-m, --manga-style Manga style (Right-to-left reading and splitting)
|
||||||
|
|
||||||
|
EXPERIMENTAL:
|
||||||
|
-w, --webstrip Webstrip processing mode
|
||||||
|
|
||||||
OUTPUT SETTINGS:
|
OUTPUT SETTINGS:
|
||||||
-o OUTPUT, --output=OUTPUT
|
-o OUTPUT, --output=OUTPUT
|
||||||
Output generated file to specified directory or file
|
Output generated file to specified directory or file
|
||||||
@@ -124,6 +115,7 @@ Options:
|
|||||||
MANDATORY:
|
MANDATORY:
|
||||||
-y HEIGHT, --height=HEIGHT
|
-y HEIGHT, --height=HEIGHT
|
||||||
Height of the target device screen
|
Height of the target device screen
|
||||||
|
-i, --in-place Overwrite source directory
|
||||||
|
|
||||||
OTHER:
|
OTHER:
|
||||||
-d, --debug Create debug file for every splitted image
|
-d, --debug Create debug file for every splitted image
|
||||||
@@ -255,6 +247,12 @@ The app relies and includes the following scripts/binaries:
|
|||||||
* Add file/directory dialogs now support multiselect
|
* Add file/directory dialogs now support multiselect
|
||||||
* Many small fixes and tweaks
|
* Many small fixes and tweaks
|
||||||
|
|
||||||
|
####3.2:
|
||||||
|
* Too big EPUB files are now splitted before conversion to MOBI
|
||||||
|
* Added experimental parser of manga webstrips
|
||||||
|
* Moved location of temporary files to increase conversion speed
|
||||||
|
* Improved error handling
|
||||||
|
|
||||||
## KNOWN ISSUES
|
## KNOWN ISSUES
|
||||||
* Removing SRCS headers sometimes fail in 32bit enviroments. Due to memory limitations.
|
* Removing SRCS headers sometimes fail in 32bit enviroments. Due to memory limitations.
|
||||||
|
|
||||||
|
|||||||
4
kcc.py
4
kcc.py
@@ -16,8 +16,8 @@
|
|||||||
# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||||
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
#
|
|
||||||
__version__ = '3.1'
|
__version__ = '3.2'
|
||||||
__license__ = 'ISC'
|
__license__ = 'ISC'
|
||||||
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
__version__ = '3.1'
|
__version__ = '3.2'
|
||||||
__license__ = 'ISC'
|
__license__ = 'ISC'
|
||||||
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
__version__ = '3.1'
|
__version__ = '3.2'
|
||||||
__license__ = 'ISC'
|
__license__ = 'ISC'
|
||||||
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
__version__ = '3.1'
|
__version__ = '3.2'
|
||||||
__license__ = 'ISC'
|
__license__ = 'ISC'
|
||||||
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
__version__ = '3.1'
|
__version__ = '3.2'
|
||||||
__license__ = 'ISC'
|
__license__ = 'ISC'
|
||||||
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
|
|||||||
Reference in New Issue
Block a user