From 8ed6722a4bbec79598d79fdde40a664c15f90fd4 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Mon, 13 Oct 2025 17:38:32 +0200 Subject: [PATCH] docs(previews): mp3 preview provider is no longer enabled by default Signed-off-by: Daniel Kesselberg --- config/config.sample.php | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index a1abf15c3be85..4c697192da39e 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1386,16 +1386,14 @@ /** * Previews * - * Nextcloud supports previews of image files, the covers of MP3 files, and text - * files. These options control enabling and disabling previews, and thumbnail - * size. + * Nextcloud supports generating previews for various file types, such as images, audio files, and text files. + * These options control enabling and disabling previews, and thumbnail size. */ /** * By default, Nextcloud can generate previews for the following filetypes: * * - Image files - * - Covers of MP3 files * - Text documents * * Valid values are ``true``, to enable previews, or @@ -1510,21 +1508,21 @@ * The following providers are disabled by default due to performance or privacy * concerns: * + * - ``OC\Preview\EMF`` * - ``OC\Preview\Font`` * - ``OC\Preview\HEIC`` * - ``OC\Preview\Illustrator`` - * - ``OC\Preview\Movie`` + * - ``OC\Preview\MP3`` * - ``OC\Preview\MSOffice2003`` * - ``OC\Preview\MSOffice2007`` * - ``OC\Preview\MSOfficeDoc`` + * - ``OC\Preview\Movie`` * - ``OC\Preview\PDF`` * - ``OC\Preview\Photoshop`` * - ``OC\Preview\Postscript`` - * - ``OC\Preview\StarOffice`` * - ``OC\Preview\SVG`` + * - ``OC\Preview\StarOffice`` * - ``OC\Preview\TIFF`` - * - ``OC\Preview\EMF`` - * * * Defaults to the following providers: * @@ -1533,11 +1531,11 @@ * - ``OC\Preview\JPEG`` * - ``OC\Preview\Krita`` * - ``OC\Preview\MarkDown`` - * - ``OC\Preview\MP3`` * - ``OC\Preview\OpenDocument`` * - ``OC\Preview\PNG`` * - ``OC\Preview\TXT`` * - ``OC\Preview\XBitmap`` + * */ 'enabledPreviewProviders' => [ 'OC\Preview\BMP', @@ -1545,7 +1543,6 @@ 'OC\Preview\JPEG', 'OC\Preview\Krita', 'OC\Preview\MarkDown', - 'OC\Preview\MP3', 'OC\Preview\OpenDocument', 'OC\Preview\PNG', 'OC\Preview\TXT',