Merge branch 'master' into develop

plugins-v3
Agate 2020-06-11 10:45:57 +02:00
commit b853f38c74
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6B501DFD73514E14
23 zmienionych plików z 53 dodań i 22 usunięć

Wyświetl plik

@ -10,6 +10,57 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
.. towncrier
0.21.1 (2020-06-11)
-------------------
Upgrade instructions are available at
https://docs.funkwhale.audio/index.html
Features:
- Support a --watch mode with ``import_files`` to automatically add, update and remove files when filesystem is updated (#721)
Enhancements:
- Added new channels widget on pod landing page (#1113)
- Fix HTML <title> not including instance name in some situations (#1107)
- Make URL-building logic more resilient against reverse proxy misconfiguration (#1085)
- Removed unused masonry dependency (#1112)
- Support for specifying itunes:email and itunes:name in channels for compatibiliy with third-party platforms (#1154)
- Updated the /api/v1/libraries endpoint to support listing public libraries from other users/pods (#1151)
Bugfixes:
- Added safeguard to ensure local uploads are never purged from cache (#1086)
- Ensure firefox password manager dont autofill username in search bar (#1090)
- Ensure player doesn't disappear when last queue track is removed manually (#1092)
- Ensure tracks linked to skipped upload can be pruned (#1011)
- Fix playlist modal only listing 50 first playlists (#1087)
- Fixed a wording issue on artist channel page (#1117)
- Fixed crash on python 3.5 with cli importer (#1155)
- Fixed issue when displaying starred tracks on subsonic (#1082)
- Fixed mimetype detection issue that broke transcoding on some tracks (#1093). Run ``python manage.py fix_uploads --mimetype`` to set proper mimetypes on existing uploads.
- Fixed page not refreshing when switching between My Library and Explore sections (#1091)
- Fixed recursive CLI importing crashing under Python 3.5 (#1148, #1147)
- Fixed wrong album and track count in admin artist API (#1096)
- Include tracks by album artist when filtering by artist on /api/v1/tracks (#1078)
Small API breaking change in ``/api/v1/libraries``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
To allow easier crawling of public libraries on a pod,we had to make a slight breaking change
to the behaviour of ``GET /api/v1/libraries``.
Before, it returned only libraries owned by the current user.
Now, it returns all the accessible libraries (including ones from other users and pods).
If you are consuming the API via a third-party client and need to retrieve your libraries,
use the ``scope`` parameter, like this: ``GET /api/v1/libraries?scope=me``
0.21 "Agate" (2020-04-24)
-------------------------

Wyświetl plik

@ -761,7 +761,7 @@ To make a new 3.4 release::
nano CHANGELOG
# Set the `__version__` variable to $NEXT_RELEASE
nano nano api/funkwhale_api/__init__.py
nano api/funkwhale_api/__init__.py
# commit
git add .

Wyświetl plik

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "0.21"
__version__ = "0.21.1"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num

Wyświetl plik

@ -1 +0,0 @@
Ensure tracks linked to skipped upload can be pruned (#1011)

Wyświetl plik

@ -1 +0,0 @@
Fixed recursive CLI importing crashing under Python 3.5 (#1148, #1147)

Wyświetl plik

@ -1 +0,0 @@
Include tracks by album artist when filtering by artist on /api/v1/tracks (#1078)

Wyświetl plik

@ -1 +0,0 @@
Fixed issue when displaying starred tracks on subsonic (#1082)

Wyświetl plik

@ -1 +0,0 @@
Make URL-building logic more resilient against reverse proxy misconfiguration (#1085)

Wyświetl plik

@ -1 +0,0 @@
Added safeguard to ensure local uploads are never purged from cache (#1086)

Wyświetl plik

@ -1 +0,0 @@
Fix playlist modal only listing 50 first playlists (#1087)

Wyświetl plik

@ -1 +0,0 @@
Ensure firefox password manager dont autofill username in search bar (#1090)

Wyświetl plik

@ -1 +0,0 @@
Fixed page not refreshing when switching between My Library and Explore sections (#1091)

Wyświetl plik

@ -1 +0,0 @@
Ensure player doesn't disappear when last queue track is removed manually (#1092)

Wyświetl plik

@ -1 +0,0 @@
Fixed mimetype detection issue that broke transcoding on some tracks (#1093). Run ``python manage.py fix_uploads --mimetype`` to set proper mimetypes on existing uploads.

Wyświetl plik

@ -1 +0,0 @@
Fixed wrong album and track count in admin artist API (#1096)

Wyświetl plik

@ -1 +0,0 @@
Fix HTML <title> not including instance name in some situations (#1107)

Wyświetl plik

@ -1 +0,0 @@
Removed unused masonry dependency (#1112)

Wyświetl plik

@ -1 +0,0 @@
Added new channels widget on pod landing page (#1113)

Wyświetl plik

@ -1 +0,0 @@
Fixed a wording issue on artist channel page (#1117)

Wyświetl plik

@ -1 +0,0 @@
Updated the /api/v1/libraries endpoint to support listing public libraries from other users/pods (#1151)

Wyświetl plik

@ -1 +0,0 @@
Support for specifying itunes:email and itunes:name in channels for compatibiliy with third-party platforms (#1154)

Wyświetl plik

@ -1 +0,0 @@
Fixed crash on python 3.5 with cli importer (#1155)

Wyświetl plik

@ -1 +0,0 @@
Support a --watch mode with ``import_files`` to automatically add, update and remove files when filesystem is updated (#721)