mirror of
https://github.com/ciromattia/kcc
synced 2026-09-01 08:27:06 +00:00
Updated README + Minor tweaks
This commit is contained in:
@@ -24,7 +24,7 @@ You can find the latest released binary at the following links:
|
|||||||
- **Windows:** [http://kcc.vulturis.eu/Windows/](http://kcc.vulturis.eu/Windows/)
|
- **Windows:** [http://kcc.vulturis.eu/Windows/](http://kcc.vulturis.eu/Windows/)
|
||||||
- **Linux:** [http://kcc.vulturis.eu/Linux/](http://kcc.vulturis.eu/Linux/)
|
- **Linux:** [http://kcc.vulturis.eu/Linux/](http://kcc.vulturis.eu/Linux/)
|
||||||
- **OS X (10.8 or later):** [http://kcc.vulturis.eu/OSX/](http://kcc.vulturis.eu/OSX/)
|
- **OS X (10.8 or later):** [http://kcc.vulturis.eu/OSX/](http://kcc.vulturis.eu/OSX/)
|
||||||
- **OS X (10.7 or earlier):** [http://kcc.vulturis.eu/Old/OSX/KindleComicConverter_3.6-rc1_osx10.7.zip](http://kcc.vulturis.eu/Old/OSX/KindleComicConverter_3.6-rc1_osx10.7.zip)
|
- **OS X (10.7 or earlier):** Soon™
|
||||||
|
|
||||||
## INPUT FORMATS
|
## INPUT FORMATS
|
||||||
**KCC** can understand and convert, at the moment, the following file types:
|
**KCC** can understand and convert, at the moment, the following file types:
|
||||||
@@ -294,6 +294,15 @@ The app relies and includes the following scripts/binaries:
|
|||||||
* GUI tweaks and minor bug fixes
|
* GUI tweaks and minor bug fixes
|
||||||
|
|
||||||
####3.6:
|
####3.6:
|
||||||
|
* Increased quality of Panel View zoom
|
||||||
|
* Creation of multipart MOBI output is now faster on machines with 4GB+ RAM
|
||||||
|
* Automatic gamma correction now distinguishes color and grayscale images
|
||||||
|
* Added ComicRack metadata parser
|
||||||
|
* Implemented new method to detect border color in non-webtoon comics
|
||||||
|
* Upscaling is now enabled by default for Kindle Fire HD/HDX
|
||||||
|
* Windows nad Linux releases now have tray icon
|
||||||
|
* Fixed Kindle Fire HDX 7" output
|
||||||
|
* Increased target resolution for Kindle DX/DXG CBZ output
|
||||||
|
|
||||||
## COPYRIGHT
|
## COPYRIGHT
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -797,7 +797,7 @@ class KCCGUI(KCC_ui.Ui_KCC):
|
|||||||
GUI.UpscaleBox.setChecked(True)
|
GUI.UpscaleBox.setChecked(True)
|
||||||
else:
|
else:
|
||||||
if not GUI.WebtoonBox.isChecked() and not GUI.ProcessingBox.isChecked() \
|
if not GUI.WebtoonBox.isChecked() and not GUI.ProcessingBox.isChecked() \
|
||||||
and str(GUI.FormatBox.currentText()) != 'CBZ':
|
and str(GUI.FormatBox.currentText()) != 'CBZ' and value not in [9, 11, 12, 13]:
|
||||||
GUI.QualityBox.setEnabled(True)
|
GUI.QualityBox.setEnabled(True)
|
||||||
self.QualityBoxDisabled = False
|
self.QualityBoxDisabled = False
|
||||||
|
|
||||||
@@ -981,9 +981,9 @@ class KCCGUI(KCC_ui.Ui_KCC):
|
|||||||
self.tray.show()
|
self.tray.show()
|
||||||
|
|
||||||
statusBarLabel = QtGui.QLabel('<b><a href="http://kcc.vulturis.eu/">HOMEPAGE</a> - <a href="https://github.com/'
|
statusBarLabel = QtGui.QLabel('<b><a href="http://kcc.vulturis.eu/">HOMEPAGE</a> - <a href="https://github.com/'
|
||||||
'ciromattia/kcc/blob/master/README.md#donations">DONATE</a> - <a href="https://gi'
|
'ciromattia/kcc/blob/master/README.md#issues--new-features--donations">DONATE</a>'
|
||||||
'thub.com/ciromattia/kcc/blob/master/README.md#kcc">README</a> - <a href="https:/'
|
' - <a href="https://github.com/ciromattia/kcc/blob/master/README.md#kcc">README<'
|
||||||
'/github.com/ciromattia/kcc/wiki">WIKI</a></b>')
|
'/a> - <a href="https://github.com/ciromattia/kcc/wiki">WIKI</a></b>')
|
||||||
statusBarLabel.setAlignment(QtCore.Qt.AlignCenter)
|
statusBarLabel.setAlignment(QtCore.Qt.AlignCenter)
|
||||||
statusBarLabel.setStyleSheet(self.statusBarStyle)
|
statusBarLabel.setStyleSheet(self.statusBarStyle)
|
||||||
statusBarLabel.setOpenExternalLinks(True)
|
statusBarLabel.setOpenExternalLinks(True)
|
||||||
|
|||||||
Reference in New Issue
Block a user