Files
LockScreenWallpaper/plugins/build.rs
T
Christoph 789b58398a feat(import-progress): track and expose Immich import progress
This change introduces a cross-language import progress API for Immich
imports and exposes a new query command to report live progress. A
new ImportProgress model captures active state, totals, and bytes
downloaded, allowing consuming code to display import status to users.

- Adds ImportProgress data type and progress tracking during import
- Exposes get_immich_import_progress command in Android and Rust
- Updates permissions and schemas to include allow-get-immich-import-progress
2026-08-21 21:34:01 +02:00

27 lines
554 B
Rust

const COMMANDS: &[&str] = &[
"get_state",
"get_gallery",
"select_images",
"delete_image",
"get_image_ids",
"delete_images",
"set_image_crop",
"set_setting",
"set_interval",
"next_wallpaper",
"get_immich_connection",
"connect_immich",
"disconnect_immich",
"get_immich_albums",
"get_immich_assets",
"import_immich_assets",
"get_immich_import_progress",
];
fn main() {
tauri_plugin::Builder::new(COMMANDS)
.android_path("android")
.ios_path("ios")
.build();
}