feat(mobile): add option to show asset owner name in asset list

This commit is contained in:
idubnori
2025-12-06 23:08:37 +09:00
parent 8416397589
commit f13a5ba418
13 changed files with 136 additions and 2 deletions
+2 -1
View File
@@ -9,7 +9,8 @@ enum Setting<T> {
autoPlayVideo<bool>(StoreKey.autoPlayVideo, true),
preferRemoteImage<bool>(StoreKey.preferRemoteImage, false),
advancedTroubleshooting<bool>(StoreKey.advancedTroubleshooting, false),
enableBackup<bool>(StoreKey.enableBackup, false);
enableBackup<bool>(StoreKey.enableBackup, false),
showOwnerName<bool>(StoreKey.showOwnerName, false);
const Setting(this.storeKey, this.defaultValue);
@@ -72,6 +72,7 @@ enum StoreKey<T> {
autoPlayVideo<bool>._(139),
albumGridView<bool>._(140),
showOwnerName<bool>._(141),
// Experimental stuff
photoManagerCustomFilter<bool>._(1000),