diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-18 21:24:23 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-18 21:24:23 +0200 |
commit | b50b96496620d855f71c441a20f2b30344795329 (patch) | |
tree | 36f5ec8ea283caf6bac5cae531457f47ad7ce883 /patches | |
parent | Switched from ssh-agent to gpg-agent (diff) | |
download | nixos-config-b50b96496620d855f71c441a20f2b30344795329.tar.gz nixos-config-b50b96496620d855f71c441a20f2b30344795329.tar.bz2 nixos-config-b50b96496620d855f71c441a20f2b30344795329.zip |
Added patched kcc and kindlegen
Diffstat (limited to 'patches')
-rw-r--r-- | patches/kcc.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/patches/kcc.patch b/patches/kcc.patch new file mode 100644 index 0000000..73c754c --- /dev/null +++ b/patches/kcc.patch @@ -0,0 +1,30 @@ +diff --git a/kindlecomicconverter/startup.py b/kindlecomicconverter/startup.py +index c92579d..0217a76 100644 +--- a/kindlecomicconverter/startup.py ++++ b/kindlecomicconverter/startup.py +@@ -25,7 +25,7 @@ from .shared import dependencyCheck + + + def start(): +- dependencyCheck(3) ++ #dependencyCheck(3) + from . import KCC_gui + os.environ['QT_AUTO_SCREEN_SCALE_FACTOR'] = "1" + KCCAplication = KCC_gui.QApplicationMessaging(sys.argv) +@@ -43,14 +43,14 @@ def start(): + + + def startC2E(): +- dependencyCheck(2) ++ #dependencyCheck(2) + from .comic2ebook import main + print('comic2ebook v' + __version__ + ' - Written by Ciro Mattia Gonano and Pawel Jastrzebski.') + sys.exit(main(sys.argv[1:])) + + + def startC2P(): +- dependencyCheck(1) ++ #dependencyCheck(1) + from .comic2panel import main + print('comic2panel v' + __version__ + ' - Written by Ciro Mattia Gonano and Pawel Jastrzebski.') + sys.exit(main(sys.argv[1:])) |