feat(mobile): add ability to force view original videos (#15094)

This commit is contained in:
Ovidijus R 2025-01-06 22:29:47 +02:00 committed by GitHub
parent 1f0ffd634a
commit a13b7b364e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 26 additions and 3 deletions

View file

@ -63,6 +63,11 @@ enum AppSettingsEnum<T> {
logLevel<int>(StoreKey.logLevel, null, 5), // Level.INFO = 5
preferRemoteImage<bool>(StoreKey.preferRemoteImage, null, false),
loopVideo<bool>(StoreKey.loopVideo, "loopVideo", true),
loadOriginalVideo<bool>(
StoreKey.loadOriginalVideo,
"loadOriginalVideo",
false,
),
mapThemeMode<int>(StoreKey.mapThemeMode, null, 0),
mapShowFavoriteOnly<bool>(StoreKey.mapShowFavoriteOnly, null, false),
mapIncludeArchived<bool>(StoreKey.mapIncludeArchived, null, false),