pinakes: import in parallel; various UI improvements

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I1eb47cd79cd4145c56af966f6756fe1d6a6a6964
This commit is contained in:
raf 2026-02-03 10:31:20 +03:00
commit 116fe7b059
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
42 changed files with 4316 additions and 316 deletions

View file

@ -35,6 +35,7 @@ async fn test_media_crud() {
description: Some("A test file".to_string()),
thumbnail_path: None,
custom_fields: HashMap::new(),
file_mtime: None,
created_at: now,
updated_at: now,
};
@ -113,6 +114,7 @@ async fn test_tags() {
description: None,
thumbnail_path: None,
custom_fields: HashMap::new(),
file_mtime: None,
created_at: now,
updated_at: now,
};
@ -165,6 +167,7 @@ async fn test_collections() {
description: None,
thumbnail_path: None,
custom_fields: HashMap::new(),
file_mtime: None,
created_at: now,
updated_at: now,
};
@ -212,6 +215,7 @@ async fn test_custom_fields() {
description: None,
thumbnail_path: None,
custom_fields: HashMap::new(),
file_mtime: None,
created_at: now,
updated_at: now,
};
@ -278,6 +282,7 @@ async fn test_search() {
description: None,
thumbnail_path: None,
custom_fields: HashMap::new(),
file_mtime: None,
created_at: now,
updated_at: now,
};
@ -409,6 +414,7 @@ async fn test_library_statistics_with_data() {
description: None,
thumbnail_path: None,
custom_fields: HashMap::new(),
file_mtime: None,
created_at: now,
updated_at: now,
};
@ -445,6 +451,7 @@ fn make_test_media(hash: &str) -> MediaItem {
description: None,
thumbnail_path: None,
custom_fields: HashMap::new(),
file_mtime: None,
created_at: now,
updated_at: now,
}