diff --git a/README.md b/README.md index 2aecd2a..0defe68 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,8 @@ You should only need to do this setup once. Then add the plugin to the toolbar/m - When such titles are chosen for download, an empty book will be created in the calibre library - Use highest-resolution cover for book details - Display best-quality cover when viewing book details. May be slower. +- Cache data for + - Infrequently changed data like libraries information are cached by the plugin. Use this to change how long cached data is used. #### Network @@ -122,6 +124,7 @@ Select a row, right-click and select the appropriate action to: - View the title on the Libby/OverDrive site - Read with Kindle (if available) - View book details (also accesible by double-clicking on the row) +- Copy the Libby share link - Search for selected book in your calibre library - Search with the selected book title and author - Renew/place a hold for an expiring loan diff --git a/calibre-plugin/__init__.py b/calibre-plugin/__init__.py index cbda095..1ef4789 100644 --- a/calibre-plugin/__init__.py +++ b/calibre-plugin/__init__.py @@ -21,7 +21,7 @@ load_translations() -__version__ = (0, 1, 7) +__version__ = (0, 1, 8) PLUGIN_NAME = "overdrive_libby" PLUGIN_ICON = "images/plugin.svg" PLUGINS_FOLDER_NAME = "plugins" diff --git a/calibre-plugin/translations/default.pot b/calibre-plugin/translations/default.pot index 86e229f..f79708c 100644 --- a/calibre-plugin/translations/default.pot +++ b/calibre-plugin/translations/default.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: libby-calibre-plugin 0.1.7\n" +"Project-Id-Version: libby-calibre-plugin 0.1.8\n" "Report-Msgid-Bugs-To: https://github.com/ping/libby-calibre-plugin/\n" -"POT-Creation-Date: 2023-09-05 13:22+0800\n" +"POT-Creation-Date: 2023-09-05 15:07+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/calibre-plugin/translations/ja.po b/calibre-plugin/translations/ja.po index dc4bc6a..5480f81 100644 --- a/calibre-plugin/translations/ja.po +++ b/calibre-plugin/translations/ja.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: libby-calibre-plugin 0.1.7\n" +"Project-Id-Version: libby-calibre-plugin 0.1.8\n" "Report-Msgid-Bugs-To: https://github.com/ping/libby-calibre-plugin/\n" "POT-Creation-Date: 2023-09-05 13:22+0800\n" "PO-Revision-Date: 2023-07-04 07:26+0800\n" diff --git a/calibre-plugin/translations/ko.po b/calibre-plugin/translations/ko.po index 555a793..8f4a583 100644 --- a/calibre-plugin/translations/ko.po +++ b/calibre-plugin/translations/ko.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: libby-calibre-plugin 0.1.7\n" +"Project-Id-Version: libby-calibre-plugin 0.1.8\n" "Report-Msgid-Bugs-To: https://github.com/ping/libby-calibre-plugin/\n" "POT-Creation-Date: 2023-09-05 13:22+0800\n" "PO-Revision-Date: 2023-07-04 07:26+0800\n" diff --git a/calibre-plugin/translations/zh_CN.po b/calibre-plugin/translations/zh_CN.po index 56f2f61..a27d9ad 100644 --- a/calibre-plugin/translations/zh_CN.po +++ b/calibre-plugin/translations/zh_CN.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: libby-calibre-plugin 0.1.7\n" +"Project-Id-Version: libby-calibre-plugin 0.1.8\n" "Report-Msgid-Bugs-To: https://github.com/ping/libby-calibre-plugin/\n" "POT-Creation-Date: 2023-09-05 13:22+0800\n" "PO-Revision-Date: 2023-07-04 07:26+0800\n" diff --git a/calibre-plugin/translations/zh_TW.po b/calibre-plugin/translations/zh_TW.po index cc61810..7513ed5 100644 --- a/calibre-plugin/translations/zh_TW.po +++ b/calibre-plugin/translations/zh_TW.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: libby-calibre-plugin 0.1.7\n" +"Project-Id-Version: libby-calibre-plugin 0.1.8\n" "Report-Msgid-Bugs-To: https://github.com/ping/libby-calibre-plugin/\n" "POT-Creation-Date: 2023-09-05 13:22+0800\n" "PO-Revision-Date: 2023-07-04 07:25+0800\n" diff --git a/images/cards.png b/images/cards.png index 74001a5..e79ab29 100644 Binary files a/images/cards.png and b/images/cards.png differ diff --git a/images/holds.png b/images/holds.png index 3c6fd04..67e3560 100644 Binary files a/images/holds.png and b/images/holds.png differ diff --git a/images/loans.png b/images/loans.png index 3c9373c..a4bf657 100644 Binary files a/images/loans.png and b/images/loans.png differ diff --git a/images/magazines.png b/images/magazines.png index c93a1cb..5a38ea7 100644 Binary files a/images/magazines.png and b/images/magazines.png differ diff --git a/images/search.png b/images/search.png index 13f05ec..0187764 100644 Binary files a/images/search.png and b/images/search.png differ diff --git a/images/settings.png b/images/settings.png index 38c35f4..373463a 100644 Binary files a/images/settings.png and b/images/settings.png differ diff --git a/translate.sh b/translate.sh index 1460ef2..220c142 100644 --- a/translate.sh +++ b/translate.sh @@ -1,5 +1,5 @@ if [[ -z "$1" ]]; then - version='0.1.7' + version='0.1.8' else version="$1" fi