Skip to content

Commit

Permalink
Prepare release v0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Leseratte10 committed Jul 31, 2022
1 parent 0dcc2a9 commit e65985b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bundle_calibre_plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions calibre-plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit e65985b

Please sign in to comment.