Merge tag '0.5.3' into develop

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
This commit is contained in:
Eliot Berriot 2018-02-27 23:10:48 +01:00
commit 48bd450efb
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
12 changed files with 25 additions and 9 deletions

View File

@ -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)
------------------

View File

@ -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('.')])

View File

@ -1 +0,0 @@
Added admin interface for radios, track files, favorites and import requests (#80)

View File

@ -1 +0,0 @@
Search now unaccent letters for queries like "The Dø" or "Björk", yielding more results (#81)

View File

@ -1 +0,0 @@
skip to next track properly on 40X errors (#86)

View File

@ -1 +0,0 @@
Now always load next radio track on last queue track ended (#87)

View File

@ -1 +0,0 @@
Now exclude tracks without file from radio candidates (#88)

View File

@ -1 +0,0 @@
Always use username in sidebar (#89)

View File

@ -1 +0,0 @@
Switched to towncrier for changelog management and compilation

View File

@ -1 +0,0 @@
Fixed broken import because of missing transaction