Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
geigi committed Sep 7, 2018
1 parent 3700d25 commit a0906a6
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 2 deletions.
12 changes: 11 additions & 1 deletion cozy/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
"""
Expand Down Expand Up @@ -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):
Expand Down
12 changes: 12 additions & 0 deletions data/com.github.geigi.cozy.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@
<url type="donation">https://www.patreon.com/geigi</url>
<update_contact>[email protected]</update_contact>
<releases>
<release version="0.6.1" timestamp="1536329525">
<description>
<ul>
<li>Improved artwork image quality</li>
<li>The book overview now supports multiple disks in audiobooks</li>
<li>The file not found window will only open when the file is on the internal drive</li>
<li>Fixed a typo</li>
<li>Support for elementaryOS 5.0</li>
<li>Updated translations</li>
</ul>
</description>
</release>
<release version="0.6.0" timestamp="1528790604">
<description>
<ul>
Expand Down
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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.
Expand Down
9 changes: 9 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="https://www.patreon.com/bePatron?u=8147127"> Patreon</a> :)

# 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
Expand Down Expand Up @@ -83,6 +91,7 @@ To the contributors on GitHub:
- worldofpeace
- camellan
- jnbr
- grenade

The translators:
- camellan
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('cozy',
version: '0.6.0',
version: '0.6.1',
meson_version: '>= 0.40.0')

project_name = 'cozy'
Expand Down

0 comments on commit a0906a6

Please sign in to comment.