diff --git a/calibre-plugin/__init__.py b/calibre-plugin/__init__.py index ad00a1c2..63d680db 100644 --- a/calibre-plugin/__init__.py +++ b/calibre-plugin/__init__.py @@ -26,7 +26,7 @@ class FanFictionDownLoaderBase(InterfaceActionBase): description = 'UI plugin to download FanFiction stories from various sites.' supported_platforms = ['windows', 'osx', 'linux'] author = 'Jim Miller' - version = (1, 7, 32) + version = (1, 7, 33) minimum_calibre_version = (0, 8, 57) #: This field defines the GUI plugin class that contains all the code diff --git a/calibre-plugin/config.py b/calibre-plugin/config.py index 2753000f..ecd52e68 100644 --- a/calibre-plugin/config.py +++ b/calibre-plugin/config.py @@ -322,10 +322,10 @@ class BasicTab(QWidget): self.updateepubcover.setChecked(prefs['updateepubcover']) self.l.addWidget(self.updateepubcover) + self.smarten_punctuation = QCheckBox('Smarten Punctuation (EPUB only)',self) + self.smarten_punctuation.setToolTip("Run Smarten Punctuation from Calibre's Polish Book feature on each EPUB download and update.") + self.smarten_punctuation.setChecked(prefs['smarten_punctuation']) if calibre_version >= (0, 9, 39): - self.smarten_punctuation = QCheckBox('Smarten Punctuation (EPUB only)',self) - self.smarten_punctuation.setToolTip("Run Smarten Punctuation from Calibre's Polish Book feature on each EPUB download and update.") - self.smarten_punctuation.setChecked(prefs['smarten_punctuation']) self.l.addWidget(self.smarten_punctuation) cali_gb = groupbox = QGroupBox("Updating Calibre Options")