From 1a5e995bb3364613c3b86a090c27d7385159abf6 Mon Sep 17 00:00:00 2001 From: 0x6f677548 <64972114+0x6f677548@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:50:42 +0100 Subject: [PATCH] chore: updated version --- epubmg_filetypeplugin/__init__.py | 2 +- epubmg_interfaceplugin/__init__.py | 2 +- epubmg_outputplugin/conversion/epubmg_output.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/epubmg_filetypeplugin/__init__.py b/epubmg_filetypeplugin/__init__.py index 1bf444b..b1ec82c 100644 --- a/epubmg_filetypeplugin/__init__.py +++ b/epubmg_filetypeplugin/__init__.py @@ -21,7 +21,7 @@ class MetaguidedEpubFileType(FileTypePlugin): description = "Works on post conversion/import and converts epub files to a metaguided format, improving your focus and reading speed (sometimes called bionic reading)." supported_platforms = ["windows", "osx", "linux"] author = "0x6f677548 (Hugo Batista)" - version = (1, 0, 1) + version = (1, 0, 2) file_types = set(["epub"]) minimum_calibre_version = (6, 5, 0) on_postprocess = True # Run this plugin after conversion is complete diff --git a/epubmg_interfaceplugin/__init__.py b/epubmg_interfaceplugin/__init__.py index 309221a..1507578 100644 --- a/epubmg_interfaceplugin/__init__.py +++ b/epubmg_interfaceplugin/__init__.py @@ -23,7 +23,7 @@ class InterfacePluginWrapper(InterfaceActionBase): description = "Adds a button to toolbar and context menu, to convert epub files to a metaguided format, improving your focus and reading speed (sometimes called bionic reading)." supported_platforms = ["windows", "osx", "linux"] author = "0x6f677548 (Hugo Batista)" - version = (1, 0, 1) + version = (1, 0, 2) minimum_calibre_version = (6, 5, 0) #: This field defines the GUI plugin class that contains all the code diff --git a/epubmg_outputplugin/conversion/epubmg_output.py b/epubmg_outputplugin/conversion/epubmg_output.py index 1fdbd3e..6247cd1 100644 --- a/epubmg_outputplugin/conversion/epubmg_output.py +++ b/epubmg_outputplugin/conversion/epubmg_output.py @@ -32,7 +32,7 @@ class MetaguidedEpubOutput(EPUBOutput): description = "Adds additional options to Epub Output conversion, enabling epub files conversion to a metaguided format, improving your focus and reading speed (sometimes called bionic reading)." supported_platforms = ["windows", "osx", "linux"] author = "0x6f677548 (Hugo Batista)" - version = (1, 0, 1) + version = (1, 0, 2) file_type = "epub" minimum_calibre_version = (6, 5, 0) on_postprocess = True # Run this plugin after conversion is complete