mirror of
https://github.com/immich-app/immich.git
synced 2026-06-12 19:11:52 -07:00
8132e8a38c
* feat: share with quality options * merge main * clean up * refactor * translation * translation * add settings and default behavior * fix: lint * cleanup * merge main --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
29 lines
642 B
Dart
29 lines
642 B
Dart
enum SortOrder {
|
|
asc,
|
|
desc;
|
|
|
|
SortOrder reverse() {
|
|
return this == SortOrder.asc ? SortOrder.desc : SortOrder.asc;
|
|
}
|
|
}
|
|
|
|
enum TextSearchType { context, filename, description, ocr }
|
|
|
|
enum AssetVisibilityEnum { timeline, hidden, archive, locked }
|
|
|
|
enum ActionSource { timeline, viewer }
|
|
|
|
enum ShareAssetType { original, preview }
|
|
|
|
enum CleanupStep { selectDate, scan, delete }
|
|
|
|
enum AssetKeepType { none, photosOnly, videosOnly }
|
|
|
|
enum AssetDateAggregation { start, end }
|
|
|
|
enum SlideshowLook { contain, cover, blurredBackground }
|
|
|
|
enum SlideshowDirection { forward, backward, shuffle }
|
|
|
|
enum PartnerDirection { sharedBy, sharedWith }
|