Merge branch 'master' into develop

This commit is contained in:
Agate 2020-09-30 17:19:02 +02:00
commit 007c151899
5 changed files with 17 additions and 12 deletions

View File

@ -14,7 +14,7 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
---------------- ----------------
Upgrade instructions are available at Upgrade instructions are available at
https://docs.funkwhale.audio/index.html https://docs.funkwhale.audio/admin/upgrading.html
Dropped python 3.5 support [manual action required, non-docker only] Dropped python 3.5 support [manual action required, non-docker only]
@ -134,21 +134,22 @@ Contributors to this release (translation, development, documentation, reviews,
- anonymous - anonymous
- appzer0 - appzer0
- Arne - Arne
- Bheesham Persaud
- Ciarán Ainsworth - Ciarán Ainsworth
- Creak
- Daniele Lira Mereb - Daniele Lira Mereb
- dulz - dulz
- Francesc Galí - Francesc Galí
- ghose - ghose
- Kalle Anka
- mekind - mekind
- Meliurwen
- Puri - Puri
- Quentin PAGÈS - Quentin PAGÈS
- Raphaël Ventura - Raphaël Ventura
- Simon Arlott
- Slimane Selyan Amiri - Slimane Selyan Amiri
- SpcCw
- Stefano Pigozzi - Stefano Pigozzi
- Sébastien de Melo - Sébastien de Melo
- Ventura Pérez García
- vicdorke - vicdorke
- Xosé M - Xosé M
@ -157,7 +158,7 @@ Contributors to this release (translation, development, documentation, reviews,
------------------- -------------------
Upgrade instructions are available at Upgrade instructions are available at
https://docs.funkwhale.audio/index.html https://docs.funkwhale.audio/admin/upgrading.html
Enhancements: Enhancements:
@ -189,7 +190,7 @@ Contributors to this release (development, documentation, reviews):
------------------- -------------------
Upgrade instructions are available at Upgrade instructions are available at
https://docs.funkwhale.audio/index.html https://docs.funkwhale.audio/admin/upgrading.html
Features: Features:
@ -565,7 +566,7 @@ Contributors to this release (translation, development, documentation, reviews,
------------------- -------------------
Upgrade instructions are available at Upgrade instructions are available at
https://docs.funkwhale.audio/index.html https://docs.funkwhale.audio/admin/upgrading.html
Denormalized audio permission logic in a separate table to enhance performance Denormalized audio permission logic in a separate table to enhance performance
@ -630,7 +631,7 @@ Contributors to this release (translation, development, documentation, reviews,
----------------- -----------------
Upgrade instructions are available at Upgrade instructions are available at
https://docs.funkwhale.audio/index.html https://docs.funkwhale.audio/admin/upgrading.html
Support for genres via tags Support for genres via tags
@ -955,7 +956,7 @@ Contributors to this release (translation, development, documentation, reviews,
------------------- -------------------
Upgrade instructions are available at Upgrade instructions are available at
https://docs.funkwhale.audio/index.html https://docs.funkwhale.audio/admin/upgrading.html
Enhancements: Enhancements:

View File

@ -41,7 +41,7 @@ raven~=6.10
python-magic~=0.4 python-magic~=0.4
channels~=2.4 channels~=2.4
channels_redis~=3.0 channels_redis~=3.0
uvicorn~=0.11 uvicorn[standard]~=0.12
gunicorn~=20.0 gunicorn~=20.0
cryptography~=2.9 cryptography~=2.9

View File

@ -0,0 +1 @@
Added controls to play volume of an album (#1226)

View File

@ -1,6 +1,6 @@
Upgrade instructions are available at Upgrade instructions are available at
https://docs.funkwhale.audio/index.html https://docs.funkwhale.audio/admin/upgrading.html
{% for section, _ in sections.items() %} {% for section, _ in sections.items() %}
{% if sections[section] %} {% if sections[section] %}

View File

@ -9,6 +9,7 @@
<template v-else-if="discs && discs.length > 1"> <template v-else-if="discs && discs.length > 1">
<div v-for="(tracks, discNumber) in discs" :key="discNumber"> <div v-for="(tracks, discNumber) in discs" :key="discNumber">
<div class="ui hidden divider"></div> <div class="ui hidden divider"></div>
<play-button class="right floated mini inverted vibrant" :tracks="tracks"></play-button>
<translate <translate
tag="h3" tag="h3"
:translate-params="{number: discNumber + 1}" :translate-params="{number: discNumber + 1}"
@ -52,6 +53,7 @@ import ChannelEntries from '@/components/audio/ChannelEntries'
import AlbumEntries from '@/components/audio/AlbumEntries' import AlbumEntries from '@/components/audio/AlbumEntries'
import Pagination from "@/components/Pagination" import Pagination from "@/components/Pagination"
import PaginationMixin from "@/components/mixins/Pagination" import PaginationMixin from "@/components/mixins/Pagination"
import PlayButton from "@/components/audio/PlayButton"
export default { export default {
props: ["object", "libraries", "discs", "isSerie", "artist", "page", "paginateBy", "totalTracks"], props: ["object", "libraries", "discs", "isSerie", "artist", "page", "paginateBy", "totalTracks"],
@ -60,7 +62,8 @@ export default {
AlbumEntries, AlbumEntries,
ChannelEntries, ChannelEntries,
TrackTable, TrackTable,
Pagination Pagination,
PlayButton
}, },
data() { data() {
return { return {