From 0c1a2b76c16be40171a65d57f9712393b7052275 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Mon, 21 May 2018 20:38:49 +0200 Subject: [PATCH] Fix #106 and #213: better web uploader, that supports Flac files --- changes/changelog.d/106.bugfix | 1 + changes/changelog.d/213.bugfix | 9 +++++++ .../components/library/import/FileUpload.vue | 14 +++++++--- front/src/components/library/import/Main.vue | 26 +++++++++++++++++-- 4 files changed, 45 insertions(+), 5 deletions(-) create mode 100644 changes/changelog.d/106.bugfix create mode 100644 changes/changelog.d/213.bugfix diff --git a/changes/changelog.d/106.bugfix b/changes/changelog.d/106.bugfix new file mode 100644 index 000000000..ff0f61609 --- /dev/null +++ b/changes/changelog.d/106.bugfix @@ -0,0 +1 @@ +File-upload importer should now work properly, assuming files are tagged (#106) diff --git a/changes/changelog.d/213.bugfix b/changes/changelog.d/213.bugfix new file mode 100644 index 000000000..d6ff593b9 --- /dev/null +++ b/changes/changelog.d/213.bugfix @@ -0,0 +1,9 @@ +File-upload import now supports Flac files (#213) + +Flac files imports via upload +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +You have nothing to do to benefit from this, however, since Flac files +tend to be a lot bigger than other files, you may want to increase the +``client_max_body_size`` value in your Nginx configuration if you plan +to upload flac files. diff --git a/front/src/components/library/import/FileUpload.vue b/front/src/components/library/import/FileUpload.vue index 9a4b820e3..7aa8adac0 100644 --- a/front/src/components/library/import/FileUpload.vue +++ b/front/src/components/library/import/FileUpload.vue @@ -1,6 +1,10 @@