diff --git a/CHANGELOG b/CHANGELOG index 4ce156e06db3305d6bfca16822fea1a588f73dd3..f2705739c095e2246ebb93d9c982998eb7a57138 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,30 @@ Changelog .. towncrier +0.5.3 (2018-02-27) +------------------ + +Features: + +- Added admin interface for radios, track files, favorites and import requests (#80) +- Added basic instance stats on /about (#82) +- Search now unaccent letters for queries like "The Dø" or "Björk" yielding more results (#81) + + +Bugfixes: + +- Always use username in sidebar (#89) +- Click event outside of player icons (#83) +- Fixed broken import because of missing transaction +- Now always load next radio track on last queue track ended (#87) +- Now exclude tracks without file from radio candidates (#88) +- skip to next track properly on 40X errors (#86) + + +Other: + +- Switched to towncrier for changelog management and compilation + 0.5.2 (2018-02-26) ------------------ diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 2df7e2034219375fac6f0dffd0865f54d6c4f589..03e434591bb102570ca35cf6602834153901412d 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.5.2' +__version__ = '0.5.3' __version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')]) diff --git a/changes/changelog.d/82.feature b/changes/changelog.d/.gitkeep similarity index 100% rename from changes/changelog.d/82.feature rename to changes/changelog.d/.gitkeep diff --git a/changes/changelog.d/80.feature b/changes/changelog.d/80.feature deleted file mode 100644 index 16591a9108d022489c1aee138e7ee730aa1016ec..0000000000000000000000000000000000000000 --- a/changes/changelog.d/80.feature +++ /dev/null @@ -1 +0,0 @@ -Added admin interface for radios, track files, favorites and import requests (#80) diff --git a/changes/changelog.d/81.feature b/changes/changelog.d/81.feature deleted file mode 100644 index 56c44d3ccad16a257003a471b15cc1aa574a748a..0000000000000000000000000000000000000000 --- a/changes/changelog.d/81.feature +++ /dev/null @@ -1 +0,0 @@ -Search now unaccent letters for queries like "The Dø" or "Björk", yielding more results (#81) diff --git a/changes/changelog.d/83.bugfix b/changes/changelog.d/83.bugfix deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/changes/changelog.d/86.bugfix b/changes/changelog.d/86.bugfix deleted file mode 100644 index c02a1997c0aae58d0f26ccbc68fbdf69803c9bc0..0000000000000000000000000000000000000000 --- a/changes/changelog.d/86.bugfix +++ /dev/null @@ -1 +0,0 @@ -skip to next track properly on 40X errors (#86) diff --git a/changes/changelog.d/87.bugfix b/changes/changelog.d/87.bugfix deleted file mode 100644 index 534ddc60a07d09ccdb408fbbf0e8d56335da8b11..0000000000000000000000000000000000000000 --- a/changes/changelog.d/87.bugfix +++ /dev/null @@ -1 +0,0 @@ -Now always load next radio track on last queue track ended (#87) diff --git a/changes/changelog.d/88.bugfix b/changes/changelog.d/88.bugfix deleted file mode 100644 index d2f707b4467eecdb86d787841fec538648c393b9..0000000000000000000000000000000000000000 --- a/changes/changelog.d/88.bugfix +++ /dev/null @@ -1 +0,0 @@ -Now exclude tracks without file from radio candidates (#88) diff --git a/changes/changelog.d/89.bugfix b/changes/changelog.d/89.bugfix deleted file mode 100644 index 5338e87dbe2b41530f386f26d5361bebe1871906..0000000000000000000000000000000000000000 --- a/changes/changelog.d/89.bugfix +++ /dev/null @@ -1 +0,0 @@ -Always use username in sidebar (#89) diff --git a/changes/changelog.d/changelog.misc b/changes/changelog.d/changelog.misc deleted file mode 100644 index 46516abc7e5b6b54963db2e9f1ed38e45eaf43c9..0000000000000000000000000000000000000000 --- a/changes/changelog.d/changelog.misc +++ /dev/null @@ -1 +0,0 @@ -Switched to towncrier for changelog management and compilation diff --git a/changes/changelog.d/transaction-import.bugfix b/changes/changelog.d/transaction-import.bugfix deleted file mode 100644 index 0efe3f000da2c5de0f809032c318170bd8601c3c..0000000000000000000000000000000000000000 --- a/changes/changelog.d/transaction-import.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed broken import because of missing transaction