mirror of
https://github.com/Leseratte10/lcpl-calibre-plugin
synced 2024-11-16 19:49:11 +01:00
v0.0.4: Fix Calibre Plugin index
This commit is contained in:
parent
bf6741e9a0
commit
f9d1f4df74
1 changed files with 4 additions and 5 deletions
|
@ -19,14 +19,13 @@
|
|||
# v0.0.1: First public version
|
||||
# v0.0.2: Add support for Python2
|
||||
# v0.0.3: Fix other FileTypePlugins
|
||||
|
||||
from calibre.customize import FileTypePlugin # type: ignore
|
||||
__version__ = '0.0.3'
|
||||
# v0.0.4: Fix Calibre Plugin index / updater
|
||||
|
||||
PLUGIN_NAME = "LCPL Input"
|
||||
PLUGIN_VERSION_TUPLE = tuple([int(x) for x in __version__.split(".")])
|
||||
PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])
|
||||
PLUGIN_VERSION_TUPLE = (0, 0, 4)
|
||||
|
||||
from calibre.customize import FileTypePlugin # type: ignore
|
||||
__version__ = PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])
|
||||
|
||||
# Ton of libraries
|
||||
|
||||
|
|
Loading…
Reference in a new issue