1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-21 01:22:08 +02:00

added setting for ignoring timezone

This commit is contained in:
gras 2024-05-09 21:40:18 +02:00
parent 73b60d0812
commit 32632668ae

View File

@ -1082,6 +1082,15 @@ export class ClientGalleryConfig {
})
enableDirectorySortingByDate: boolean = false;
@ConfigProperty({
tags: {
name: $localize`Ignore timestamp offsets`,
priority: ConfigPriority.advanced,
},
description: $localize`If enabled, timestamp offsets are ignored and the local time of photos are used for searching, sorting and grouping. If disabled, global time is used and pictures with no timestamp are assumed to be in UTC (offset +00:00).`
})
ignoreTimestampOffset: boolean = true;
@ConfigProperty({
tags: {
name: $localize`On scroll thumbnail prioritising`,