Commit Graph

4071 Commits

Author SHA1 Message Date
Agate 280a0bfbf3 Merge branch 'update-supported-formats' into 'develop'
Document support for AIFF format

See merge request funkwhale/funkwhale!1243
2020-11-21 16:19:46 +01:00
Philipp Wolfer 52d7d9f073 Document support for AIFF format 2020-11-21 14:00:32 +01:00
Agate e27b7ed588 Merge branch 'aiff-format-support' into 'develop'
Support AIFF file format

Closes #1243

See merge request funkwhale/funkwhale!1241
2020-11-21 12:57:09 +01:00
Agate 780c1f538e Merge branch 'typo' into 'develop'
Typo in doc

See merge request funkwhale/funkwhale!1242
2020-11-21 12:55:50 +01:00
jovuit f80eb8f045 Typo in doc 2020-11-21 12:49:53 +01:00
Philipp Wolfer 9e5d168e8d Support AIFF file format
Fixes #1243
2020-11-21 12:13:09 +01:00
Agate f91abcbfe9 Merge branch 'update-playback-progress-on-pause' into 'develop'
Update playback position slider also when track is paused

Closes #1266

See merge request funkwhale/funkwhale!1239
2020-11-21 11:18:46 +01:00
Philipp Wolfer d67377afd4 Update playback position slider also when track is paused
Fixes the UI not updating when clicking the position slider while playback is paused.

Fixes #1266
2020-11-21 10:51:16 +01:00
Ciarán Ainsworth add226ba44 Merge branch 'fix-disable-plugins' into 'develop'
Fix disabling plugins

See merge request funkwhale/funkwhale!1240
2020-11-21 00:57:03 +01:00
Ciarán Ainsworth 9014c78238 Fixed plugins disable switch 2020-11-20 23:51:55 +00:00
Agate 79219fd695 Merge branch 'listenbrainz-plugin' into 'develop'
Added a ListenBrainz plugin

See merge request funkwhale/funkwhale!1238
2020-11-20 19:03:04 +01:00
Philipp Wolfer 0dc46ea36b Added a ListenBrainz plugin
Allows users to submit their listenings to ListenBrainz.org.
2020-11-20 19:03:04 +01:00
Agate 8ddc6f298b Merge branch 'update-media-metadata-on-init' into 'develop'
Update MediaSession metadata for initially loaded track

Closes #1252

See merge request funkwhale/funkwhale!1237
2020-11-20 18:58:38 +01:00
Philipp Wolfer 997b510ec6 Update MediaSession metadata for initially loaded track
The MediaSession metadata was only set on track change, but not for the track already set during load.

Fixes #1252
2020-11-20 10:12:03 +01:00
Agate 8c69b68806 Merge branch 'fix-import-index-violation' into 'develop'
Skip importing files that cause index violations

See merge request funkwhale/funkwhale!1236
2020-11-19 22:27:03 +01:00
Robert Kaye d4160f8635 Skip importing files that cause index violations 2020-11-19 22:27:03 +01:00
Agate fdf76fb150 Merge branch 'logarithmic-volume-slider' into 'develop'
Use logarithmic scale for volume slider.

Closes #1222

See merge request funkwhale/funkwhale!1235
2020-11-19 21:14:18 +01:00
Agate 853f218715 Merge branch 'upload_front' into 'develop'
Remove manual entry of Import Reference on front-end import (#1284)

Closes #1284

See merge request funkwhale/funkwhale!1233
2020-11-19 18:01:00 +01:00
jovuit 9d874073fa Remove manual entry of Import Reference on front-end import (#1284) 2020-11-19 18:01:00 +01:00
Agate 1ed2be509a Merge branch '1287' into 'develop'
Minimal wording enhancement

Closes #1287

See merge request funkwhale/funkwhale!1234
2020-11-19 17:57:11 +01:00
Philipp Wolfer 8d9e7ca52d Use logarithmic scale for volume slider.
Fixes #1222
2020-11-19 17:40:34 +01:00
jovuit fc95acf15a Minimal wording enhancement 2020-11-19 13:43:53 +01:00
Agate 800105e2e6 Merge branch '1269-subsonic-passphrase' into 'develop'
Replaced token password with passphrase

Closes #1269

See merge request funkwhale/funkwhale!1232
2020-11-15 21:44:23 +01:00
Fred Uggla 22f739a297 Replaced token password with passphrase 2020-11-15 21:44:23 +01:00
Agate f8d534797f Merge branch 'issue1236' into 'develop'
Remove API zip file after being extracted in non-docker upgrade doc (Fix #1236)

Closes #1236

See merge request funkwhale/funkwhale!1231
2020-11-15 16:52:23 +01:00
jovuit 069acdc5ac Remove zip file after being extracted in non-docker upgrade doc 2020-11-15 16:43:09 +01:00
Agate c71e2a31b4 Merge branch 'master' into develop 2020-10-31 13:03:11 +01:00
Agate 17b9317a85 Added missing contributors for 1.0.1 release 2020-10-31 13:02:38 +01:00
Agate 92d0290889 Merge branch 'master' into develop 2020-10-31 12:46:20 +01:00
Agate 4bd797e149 Merge branch 'master' into develop 2020-10-31 12:44:17 +01:00
Agate 68bc76bc9e Version bump and changelog for 1.0.1 2020-10-31 12:43:37 +01:00
Agate 61233a2119 Fixed requirements specifications 2020-10-25 18:56:52 +01:00
Kuba Orlik 7ee8e02b29 Fix feed formatting so it passes w3c validation
Feeds generated by Funkwhale do not pass validation with the [w3c
validator](https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fpodcast.midline.pl%2Fapi%2Fv1%2Fchannels%2FMidline%2Frss).
This commit addresses the problems identified during validation:

1. The `isPermalink` is not recognized -> changed it to
   `isPermaLink` (capital "L")

2. `itunes:summary` and `itunes:subtitle` are 256 characters after
   truncating, but the maximum is 255. The truncating function trims the
   text to 255 chars, but then adds `…`, so the text is one character
   too long

3. The tags within `itunes:keywords` are now separated with commas
   instead of spaces (https://validator.w3.org/feed/docs/warning/InvalidKeywords.html)
2020-10-25 18:56:52 +01:00
Cédric Schieli 055ae44aef Allow genre tags to be updated when rescanning files in-place 2020-10-25 18:56:52 +01:00
Agate ced49a4365 Merge branch 'fix-requirements' into 'develop'
Fixed requirements specifications

See merge request funkwhale/funkwhale!1230
2020-10-25 18:54:42 +01:00
Agate 1e09d9e6d4 Fixed requirements specifications 2020-10-25 18:49:06 +01:00
Agate d2ec3ccec3 Merge branch '1250-rss-w3c' into 'develop'
Resolve "The feed does not pass w3c validation"

Closes #1250

See merge request funkwhale/funkwhale!1229
2020-10-22 15:06:28 +02:00
Kuba Orlik 3a83290cc0 Fix feed formatting so it passes w3c validation
Feeds generated by Funkwhale do not pass validation with the [w3c
validator](https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fpodcast.midline.pl%2Fapi%2Fv1%2Fchannels%2FMidline%2Frss).
This commit addresses the problems identified during validation:

1. The `isPermalink` is not recognized -> changed it to
   `isPermaLink` (capital "L")

2. `itunes:summary` and `itunes:subtitle` are 256 characters after
   truncating, but the maximum is 255. The truncating function trims the
   text to 255 chars, but then adds `…`, so the text is one character
   too long

3. The tags within `itunes:keywords` are now separated with commas
   instead of spaces (https://validator.w3.org/feed/docs/warning/InvalidKeywords.html)
2020-10-22 15:06:28 +02:00
Agate 4252ae3444 Merge branch '1246-rescan-update-genre-tags' into 'develop'
Allow genre tags to be updated when rescanning files in-place

See merge request funkwhale/funkwhale!1225
2020-10-11 17:25:36 +02:00
Cédric Schieli 4845325612
Allow genre tags to be updated when rescanning files in-place 2020-10-11 17:12:39 +02:00
Agate 968e66eb46 Merge branch 'master' into develop 2020-10-04 18:37:45 +02:00
Ciarán Ainsworth aabcc3c524 Resolve 1228 multi-disc albums 2020-10-04 18:37:32 +02:00
Ciarán Ainsworth bab91c6d7c Merge branch '1228-multi-cd-albums-display-gets-chaotic-while-browsing-album-tracks' into 'develop'
Resolve "Multi-CD albums - display gets chaotic while browsing album tracks"

Closes #1228

See merge request funkwhale/funkwhale!1224
2020-10-01 13:46:58 +02:00
Ciarán Ainsworth 925768f1b3 Resolve 1228 multi-disc albums 2020-10-01 11:22:36 +01:00
Agate 007c151899 Merge branch 'master' into develop 2020-09-30 17:19:02 +02:00
Agate 0c5df9e6b2 Fixed broken uvicorn 2020-09-30 16:30:27 +02:00
Agate 6741873d72 Merge branch '1226-volume-play' into 'master'
Resolve "UI - allow to play / queue specific volume part of multi-cd / volumes album"

See merge request funkwhale/funkwhale!1222
2020-09-12 10:59:57 +02:00
Agate 10480a3ab6 Fix: #1226: Added controls to play volume of an album 2020-09-12 10:54:02 +02:00
Agate b8befde215 Fixed link to upgrade instructions 2020-09-09 18:05:03 +02:00
Agate 7dcf44f2fe Added missing contributors 2020-09-09 07:50:29 +02:00