Prepare release v0.0.16

This commit is contained in:
Florian Bach 2022-07-31 11:06:21 +02:00
parent 0dcc2a93b6
commit e65985be7f
3 changed files with 9 additions and 9 deletions

View File

@ -35,16 +35,16 @@ body:
id: calibre-version
attributes:
label: Which version of Calibre are you running?
description: "Example: 5.30"
placeholder: "5.30"
description: "Example: 6.2.1"
placeholder: "6.2.1"
validations:
required: true
- type: input
id: plugin-version
attributes:
label: Which version of the DeACSM plugin are you running?
description: "Example: v0.0.10"
placeholder: "v0.0.10"
description: "Example: v0.0.16"
placeholder: "v0.0.16"
validations:
required: true
- type: textarea

View File

@ -37,7 +37,7 @@ rm -r __pycache__
rm *.pyc
# 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.
cp ../LICENSE LICENSE

View File

@ -33,18 +33,18 @@
# fix ACSM files from Google Play books (no metadata node),
# 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.
# Currently in development:
# Ignore fatal HTTP errors and/or a missing or broken server during optional
# v0.0.16: Ignore fatal HTTP errors and/or a missing or broken server during optional
# fulfillment notifications, allow authorizing an eReader through USB (experimental),
# drop dependencies python-cryptography, python-rsa and python-pyasn1.
# add a ton of testing code, try to prevent AV false-positives,
# experimental support for Python2 / Calibre < 5,
# 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.
PLUGIN_NAME = "DeACSM"
PLUGIN_VERSION_TUPLE = (0, 0, 15)
PLUGIN_VERSION_TUPLE = (0, 0, 16)
from calibre.customize import FileTypePlugin # type: ignore
__version__ = PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])