mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-12-22 17:29:56 +06:00
Prepare release v0.0.16
This commit is contained in:
parent
0dcc2a93b6
commit
e65985be7f
8
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
8
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -35,16 +35,16 @@ body:
|
|||||||
id: calibre-version
|
id: calibre-version
|
||||||
attributes:
|
attributes:
|
||||||
label: Which version of Calibre are you running?
|
label: Which version of Calibre are you running?
|
||||||
description: "Example: 5.30"
|
description: "Example: 6.2.1"
|
||||||
placeholder: "5.30"
|
placeholder: "6.2.1"
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
id: plugin-version
|
id: plugin-version
|
||||||
attributes:
|
attributes:
|
||||||
label: Which version of the DeACSM plugin are you running?
|
label: Which version of the DeACSM plugin are you running?
|
||||||
description: "Example: v0.0.10"
|
description: "Example: v0.0.16"
|
||||||
placeholder: "v0.0.10"
|
placeholder: "v0.0.16"
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
|
@ -37,7 +37,7 @@ rm -r __pycache__
|
|||||||
rm *.pyc
|
rm *.pyc
|
||||||
|
|
||||||
# Set module ID. This needs to be changed if any of the module ZIPs change.
|
# Set module ID. This needs to be changed if any of the module ZIPs change.
|
||||||
echo -n "2022-07-28-01" > module_id.txt
|
echo -n "2022-07-31-01" > module_id.txt
|
||||||
|
|
||||||
# Copy LICENSE and README.md so it'll be included in the ZIP.
|
# Copy LICENSE and README.md so it'll be included in the ZIP.
|
||||||
cp ../LICENSE LICENSE
|
cp ../LICENSE LICENSE
|
||||||
|
@ -33,18 +33,18 @@
|
|||||||
# fix ACSM files from Google Play books (no metadata node),
|
# fix ACSM files from Google Play books (no metadata node),
|
||||||
# allow converting an anonymous auth to an AdobeID auth,
|
# allow converting an anonymous auth to an AdobeID auth,
|
||||||
# update python-cryptography from 3.4.8 to 36.0.1, update python-rsa from 4.7.2 to 4.8.
|
# update python-cryptography from 3.4.8 to 36.0.1, update python-rsa from 4.7.2 to 4.8.
|
||||||
# Currently in development:
|
# v0.0.16: Ignore fatal HTTP errors and/or a missing or broken server during optional
|
||||||
# Ignore fatal HTTP errors and/or a missing or broken server during optional
|
|
||||||
# fulfillment notifications, allow authorizing an eReader through USB (experimental),
|
# fulfillment notifications, allow authorizing an eReader through USB (experimental),
|
||||||
# drop dependencies python-cryptography, python-rsa and python-pyasn1.
|
# drop dependencies python-cryptography, python-rsa and python-pyasn1.
|
||||||
# add a ton of testing code, try to prevent AV false-positives,
|
# add a ton of testing code, try to prevent AV false-positives,
|
||||||
# experimental support for Python2 / Calibre < 5,
|
# experimental support for Python2 / Calibre < 5,
|
||||||
# fix broken URLs with missing protocol, fix loan data for loans without device ID,
|
# fix broken URLs with missing protocol, fix loan data for loans without device ID,
|
||||||
# fix nonce calculation yet again,
|
# fix nonce calculation yet again, merge #26 to make importing a WINE auth more reliable,
|
||||||
# update python-oscrypto to unofficial fork to fix OpenSSL 3 support.
|
# update python-oscrypto to unofficial fork to fix OpenSSL 3 support.
|
||||||
|
|
||||||
|
|
||||||
PLUGIN_NAME = "DeACSM"
|
PLUGIN_NAME = "DeACSM"
|
||||||
PLUGIN_VERSION_TUPLE = (0, 0, 15)
|
PLUGIN_VERSION_TUPLE = (0, 0, 16)
|
||||||
|
|
||||||
from calibre.customize import FileTypePlugin # type: ignore
|
from calibre.customize import FileTypePlugin # type: ignore
|
||||||
__version__ = PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])
|
__version__ = PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])
|
||||||
|
Loading…
Reference in New Issue
Block a user