From 851afe923a7c6177ae3848766ee1cd4955b8991f Mon Sep 17 00:00:00 2001 From: Georg Krause <mail@georg-krause.net> Date: Wed, 10 Mar 2021 10:25:28 +0100 Subject: [PATCH] Version bump and changelog for 1.1 --- CHANGELOG | 86 +++++++++++++++++++++++++++++++++++ api/funkwhale_api/__init__.py | 2 +- 2 files changed, 87 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a4bd0232bc..67fd7debd4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,92 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog. .. towncrier +1.1 (unreleased) +---------------- + +Upgrade instructions are available at +https://docs.funkwhale.audio/admin/upgrading.html + +Enhancements: + +- Add number of tracks and discs of an album to API (#1238) +- Add spacing after "Play all" button in playlist view (!1271) +- Added a ListenBrainz plugin to submit listenings +- Added ability to choose fediverse addresses from channel subscription page/podcast screen (#1294) +- Added new search functions to allow users to more easily search for podcasts in the UI. +- Added padding to volume slider to ease mouse control (#1241) +- Logarithmic scale for volume slider (#1222) +- More user-friendly subsonic tokens (#1269) +- Remove manual entry of Import Reference on front-end import (#1284) +- Support AIFF file format (#1243) + + +Bugfixes: + +- "Add check for empty/null covers (#1281)" +- Added an album filter to fix problem where channel entries would show up in the wrong series (#1282) +- Avoid broken Faker version (#1323) +- Changed audio format detection to happen via sniffing and not file extensions (#1274) +- Changed default behaviour of channel entries to use channel artwork if no entry artwork available (#1289) +- Fix delete library modal closing immediately (#1272) +- Fix public shared remote library radio button being disabled (#1292) +- Fixed an issue that prevented disabling plugins +- Fixed an issue where channel albums don't show up in the album search (#1300) +- Fixed an issue where modals would prevent users being able to interact with channels (#1295) +- Update MediaSession metadata for initially loaded track (#1252) +- Update playback position slider also when track is paused (#1266) +- Fixed follows from Pleroma with custom Emoji as Tag by ignoring not supported tag types #1342 +- Update pleroma JSON-LD Schema (#1341) +- Pin twisted version to 20.3.0 + +Contributors to this release (development, documentation, reviews): + +Adam Novak +Agate +alemairebe +Alicia Blasco Leon +anonymous +Amaranthe +appzer0 +Arne +Asier Iturralde Sarasola +Christian Paul +Ciarán Ainsworth +Daniel +David +Dominik Danelski +Eorn le goéland +Eleos +Erik Duxstad +Esteban +Fred Uggla +Freyja Wildes +Georg Krause +ghose +hellekin +heyarne +interfect +Jess Jing +Johannes H. +jovuit +marzzzello +Meliurwen +Mehdi +Nitai Bezerra da Silva +Philipp Wolfer +Pierre Couy +Porrumentzio +Reg +Robert Kaye +Rubén Cabrera +Silver Fox +Snack Capt +SpcCw +Strom Lin +vicdorke +x + + 1.1-rc2 (2021-03-01) -------------------- diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 7cf8ade2fc..8c833768e4 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = "1.1-rc2" +__version__ = "1.1" __version_info__ = tuple( [ int(num) if num.isdigit() else num -- GitLab