Skip to content
Snippets Groups Projects
Verified Commit ae651903 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge tag '0.7' into develop

0.7 (2018-03-21)
----------------

Features:

- Can now filter artists and albums with no listenable tracks (#114)
- Improve the style of the sidebar to make it easier to understand which tab is
  selected (#118)
- On artist page, albums are not sorted by release date, if any (#116)
- Playlists are here \o/ 🎉 (#3, #93, #94)
- Use django-cacheops to cache common ORM requests (#117)

Bugfixes:

- Fixed broken import request admin (#115)
- Fixed forced redirection to login event with
  API_AUTHENTICATION_REQUIRED=False (#119)
- Fixed position not being reseted properly when playing the same track
  multiple times in a row
- Fixed synchronized start/stop radio buttons for all custom radios (#103)
- Fixed typo and missing icon on homepage (#96)

Documentation:

- Up-to-date and complete development and contribution instructions in
  README.rst (#123)
parents 7093214b 3673f624
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,37 @@ Changelog
.. towncrier
0.6.1 (unreleased)
0.7 (2018-03-21)
----------------
Features:
- Can now filter artists and albums with no listenable tracks (#114)
- Improve the style of the sidebar to make it easier to understand which tab is
selected (#118)
- On artist page, albums are not sorted by release date, if any (#116)
- Playlists are here \o/ :tada: (#3, #93, #94)
- Use django-cacheops to cache common ORM requests (#117)
Bugfixes:
- Fixed broken import request admin (#115)
- Fixed forced redirection to login event with
API_AUTHENTICATION_REQUIRED=False (#119)
- Fixed position not being reseted properly when playing the same track
multiple times in a row
- Fixed synchronized start/stop radio buttons for all custom radios (#103)
- Fixed typo and missing icon on homepage (#96)
Documentation:
- Up-to-date and complete development and contribution instructions in
README.rst (#123)
0.6.1 (2018-03-06)
------------------
Features:
......
# -*- coding: utf-8 -*-
__version__ = '0.6.1'
__version__ = '0.7'
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])
Fixed synchronized start/stop radio buttons for all custom radios (#103)
Can now filter artists and albums with no listenable tracks (#114)
Fixed broken import request admin (#115)
On artist page, albums are not sorted by release date, if any (#116)
Use django-cacheops to cache common ORM requests (#117)
Improve the style of the sidebar to make it easier to understand which tab is selected (#118)
\ No newline at end of file
Fixed forced redirection to login event with API_AUTHENTICATION_REQUIRED=False (#119)
Up-to-date and complete development and contribution instructions in README.rst (#123)
Playlists are here \o/ :tada: (#3, #93, #94)
Fixed typo and missing icon on homepage (#96)
Fixed position not being reseted properly when playing the same track multiple times in a row
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment