From f68805e436257f34139861e57a1c8e5c80256bb1 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Sun, 6 May 2018 16:41:07 +0200 Subject: [PATCH 01/32] Missing date in changelog --- CHANGELOG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 82c867bf8..d1014cab1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,7 +10,7 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog. .. towncrier -0.11 (unreleased) +0.11 (2018-05-06) ----------------- Upgrade instructions are available at https://docs.funkwhale.audio/upgrading.html From 0232335ad93e520dd86080c7de9b205fa34f4c53 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Sun, 6 May 2018 16:54:01 +0200 Subject: [PATCH 02/32] Typo --- deploy/env.prod.sample | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/env.prod.sample b/deploy/env.prod.sample index 4b27595af..42659a0da 100644 --- a/deploy/env.prod.sample +++ b/deploy/env.prod.sample @@ -48,9 +48,9 @@ FUNKWHALE_URL=https://yourdomain.funwhale # EMAIL_CONFIG=consolemail:// # output emails to console (the default) # EMAIL_CONFIG=dummymail:// # disable email sending completely # On a production instance, you'll usually want to use an external SMTP server: -# EMAIL_CONFIG=smtp://user@:password@youremail.host:25' -# EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465' -# EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587' +# EMAIL_CONFIG=smtp://user@:password@youremail.host:25 +# EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465 +# EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587 # The email address to use to send systme emails. By default, we will # DEFAULT_FROM_EMAIL=noreply@yourdomain From 60608c039044c54c9f4e0f68f834c9edbef07e73 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Sun, 6 May 2018 22:45:14 +0200 Subject: [PATCH 03/32] See #191: removed docker note on front-end setup part --- docs/installation/index.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/installation/index.rst b/docs/installation/index.rst index a3e11529b..76ee9a892 100644 --- a/docs/installation/index.rst +++ b/docs/installation/index.rst @@ -74,11 +74,6 @@ We also maintain an installation guide for Debian 9. Frontend setup --------------- -.. note:: - - You do not need to do this if you are deploying using Docker, as frontend files - are already included in the funkwhale docker image. - Files for the web frontend are purely static and can simply be downloaded, unzipped and served from any webserver: .. parsed-literal:: From c70dc9b778ce3f124cea0610359330cfc19655a6 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Sun, 6 May 2018 23:50:09 +0200 Subject: [PATCH 04/32] Fix #99 and #156: Play button now play tracks immediately instead of appending them to the queue --- changes/changelog.d/99.enhancement | 1 + front/src/components/audio/PlayButton.vue | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 changes/changelog.d/99.enhancement diff --git a/changes/changelog.d/99.enhancement b/changes/changelog.d/99.enhancement new file mode 100644 index 000000000..3b5666ac4 --- /dev/null +++ b/changes/changelog.d/99.enhancement @@ -0,0 +1 @@ +Play button now play tracks immediately instead of appending them to the queue (#99, #156) diff --git a/front/src/components/audio/PlayButton.vue b/front/src/components/audio/PlayButton.vue index 14d381ca1..2662f30b3 100644 --- a/front/src/components/audio/PlayButton.vue +++ b/front/src/components/audio/PlayButton.vue @@ -2,7 +2,7 @@