From a0906a694cc82e7ed98900ee4f5a903bdd7d88ad Mon Sep 17 00:00:00 2001 From: Julian Geywitz Date: Fri, 7 Sep 2018 16:15:46 +0200 Subject: [PATCH] Version bump --- cozy/db.py | 12 +++++++++++- data/com.github.geigi.cozy.appdata.xml | 12 ++++++++++++ debian/changelog | 11 +++++++++++ docs/README.md | 9 +++++++++ meson.build | 2 +- 5 files changed, 44 insertions(+), 2 deletions(-) diff --git a/cozy/db.py b/cozy/db.py index 4f8de6fc..39cd0bcb 100644 --- a/cozy/db.py +++ b/cozy/db.py @@ -368,7 +368,14 @@ def update_db_6(): import shutil shutil.rmtree(tools.get_cache_dir()) - + +def update_db_7(): + """ + Update database to v7. + """ + import cozy.artwork_cache as artwork_cache + artwork_cache.delete_artwork_cache() + Settings.update(version=7).execute() def update_db(): """ @@ -398,6 +405,9 @@ def update_db(): if version < 6: update_db_6() + if version < 7: + update_db_7() + # thanks to oleg-krv def get_book_duration(book): diff --git a/data/com.github.geigi.cozy.appdata.xml b/data/com.github.geigi.cozy.appdata.xml index 8dee97b0..46911695 100644 --- a/data/com.github.geigi.cozy.appdata.xml +++ b/data/com.github.geigi.cozy.appdata.xml @@ -53,6 +53,18 @@ https://www.patreon.com/geigi cozy@geigi.de + + +
    +
  • Improved artwork image quality
  • +
  • The book overview now supports multiple disks in audiobooks
  • +
  • The file not found window will only open when the file is on the internal drive
  • +
  • Fixed a typo
  • +
  • Support for elementaryOS 5.0
  • +
  • Updated translations
  • +
+
+
    diff --git a/debian/changelog b/debian/changelog index 99cd09b2..ed718af4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +com.github.geigi.cozy (0.6.1) UNSTABLE; urgency=low + + * Improved artwork image quality + * The book overview now supports multiple disks in audiobooks + * The file not found window will only open when the file is on the internal drive + * Fixed a typo + * Support for elementaryOS 5.0 + * Updated translations + + -- Julian Geywitz Wed, 07 Sep 2018 16:00:14 +0200 + com.github.geigi.cozy (0.6.0) UNSTABLE; urgency=low * Offline Mode! If your audiobooks are on an external or network drive, you can switch the download button to keep a local cached copy of the book to listen to on the go. To enable this feature you have to set your storage location to external in the settings. diff --git a/docs/README.md b/docs/README.md index c76b43b0..14974927 100644 --- a/docs/README.md +++ b/docs/README.md @@ -41,6 +41,14 @@ If you prefer a custom repository - for Ubuntu, Debian, openSUSE and Fedora ther If you like this project, consider supporting me on Patreon :) # Changelog +## 0.6.1 +- Improved artwork image quality +- The book overview now supports multiple disks in audiobooks +- The file not found window will only open when the file is on the internal drive +- Fixed a typo +- Support for elementaryOS 5.0 +- Updated translations + ## 0.6.0 - **Offline Mode!** If your audiobooks are on an external or network drive, you can switch the download button to keep a local cached copy of the book to listen to on the go. To enable this feature you have to set your storage location to external in the settings. - Detect online/offline storage devices @@ -83,6 +91,7 @@ To the contributors on GitHub: - worldofpeace - camellan - jnbr +- grenade The translators: - camellan diff --git a/meson.build b/meson.build index ca475be8..7c99abdb 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('cozy', - version: '0.6.0', + version: '0.6.1', meson_version: '>= 0.40.0') project_name = 'cozy'