1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-02 03:37:54 +02:00

Add raw file tests #127.

If a given platform supports these files, these extensions will stay in the supportedFormats list otherwise, they get removed.
This commit is contained in:
Patrik J. Braun 2024-07-04 22:09:48 +02:00
parent 7e4a982201
commit 2ba1e11a21
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1266,7 +1266,7 @@ export class ClientPhotoConfig {
},
description: $localize`Photo formats that are supported. Browser needs to support these formats natively. Also sharp (libvips) package should be able to convert these formats.`,
})
supportedFormats: string[] = ['gif', 'jpeg', 'jpg', 'jpe', 'png', 'webp', 'svg', 'avif', 'heic'];
supportedFormats: string[] = ['gif', 'jpeg', 'jpg', 'jpe', 'png', 'webp', 'svg', 'avif', 'heic', 'dng', 'arw'];
}
@SubConfigClass({tags: {client: true}, softReadonly: true})