Skip to content

Commit e65985b

Browse files
committed
Prepare release v0.0.16
1 parent 0dcc2a9 commit e65985b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ body:
3535
id: calibre-version
3636
attributes:
3737
label: Which version of Calibre are you running?
38-
description: "Example: 5.30"
39-
placeholder: "5.30"
38+
description: "Example: 6.2.1"
39+
placeholder: "6.2.1"
4040
validations:
4141
required: true
4242
- type: input
4343
id: plugin-version
4444
attributes:
4545
label: Which version of the DeACSM plugin are you running?
46-
description: "Example: v0.0.10"
47-
placeholder: "v0.0.10"
46+
description: "Example: v0.0.16"
47+
placeholder: "v0.0.16"
4848
validations:
4949
required: true
5050
- type: textarea

bundle_calibre_plugin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rm -r __pycache__
3737
rm *.pyc
3838

3939
# Set module ID. This needs to be changed if any of the module ZIPs change.
40-
echo -n "2022-07-28-01" > module_id.txt
40+
echo -n "2022-07-31-01" > module_id.txt
4141

4242
# Copy LICENSE and README.md so it'll be included in the ZIP.
4343
cp ../LICENSE LICENSE

calibre-plugin/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@
3333
# fix ACSM files from Google Play books (no metadata node),
3434
# allow converting an anonymous auth to an AdobeID auth,
3535
# update python-cryptography from 3.4.8 to 36.0.1, update python-rsa from 4.7.2 to 4.8.
36-
# Currently in development:
37-
# Ignore fatal HTTP errors and/or a missing or broken server during optional
36+
# v0.0.16: Ignore fatal HTTP errors and/or a missing or broken server during optional
3837
# fulfillment notifications, allow authorizing an eReader through USB (experimental),
3938
# drop dependencies python-cryptography, python-rsa and python-pyasn1.
4039
# add a ton of testing code, try to prevent AV false-positives,
4140
# experimental support for Python2 / Calibre < 5,
4241
# fix broken URLs with missing protocol, fix loan data for loans without device ID,
43-
# fix nonce calculation yet again,
42+
# fix nonce calculation yet again, merge #26 to make importing a WINE auth more reliable,
4443
# update python-oscrypto to unofficial fork to fix OpenSSL 3 support.
4544

45+
4646
PLUGIN_NAME = "DeACSM"
47-
PLUGIN_VERSION_TUPLE = (0, 0, 15)
47+
PLUGIN_VERSION_TUPLE = (0, 0, 16)
4848

4949
from calibre.customize import FileTypePlugin # type: ignore
5050
__version__ = PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])

0 commit comments

Comments
 (0)