mirror of
https://github.com/UNITRONIX/BetterDesk.git
synced 2026-09-10 09:35:39 +00:00
6274790bba
Bring native Cliprdr/desktop file IPC from divergent orphan history onto current dev, including base64 coerce and FILEGROUPDESCRIPTOR flags matching RustDesk.
51 lines
1.9 KiB
Rust
51 lines
1.9 KiB
Rust
fn main() {
|
|
tauri_build::try_build(
|
|
tauri_build::Attributes::new().app_manifest(
|
|
tauri_build::AppManifest::new().commands(&[
|
|
"get_client_info",
|
|
"get_server_url",
|
|
"get_config",
|
|
"probe_server_url",
|
|
"discover_servers",
|
|
"set_server_url",
|
|
"set_tls_strict",
|
|
"set_ui_lang",
|
|
"get_system_locale",
|
|
"open_settings",
|
|
"sign_out",
|
|
"reset_client",
|
|
"open_session",
|
|
"close_current_window",
|
|
"desktop_pick_files",
|
|
"desktop_open_file",
|
|
"desktop_read_file_chunk",
|
|
"desktop_release_file_handles",
|
|
"desktop_pick_folder",
|
|
"desktop_list_directory",
|
|
"desktop_save_download",
|
|
"desktop_download_begin",
|
|
"desktop_download_write",
|
|
"desktop_download_finish",
|
|
"desktop_download_abort",
|
|
"desktop_mkdir_p",
|
|
"desktop_walk_paths",
|
|
"desktop_clipboard_sync",
|
|
"desktop_clipboard_format_data",
|
|
"desktop_clipboard_file_contents",
|
|
"desktop_clipboard_clear",
|
|
"desktop_clipboard_format_names",
|
|
"desktop_clipboard_sync_paths",
|
|
"desktop_clipboard_receive_begin",
|
|
"desktop_clipboard_receive_write",
|
|
"desktop_clipboard_receive_commit",
|
|
"desktop_clipboard_receive_abort",
|
|
"desktop_clipboard_lbutton_down",
|
|
"desktop_clipboard_prepare_ole_drag",
|
|
"desktop_clipboard_start_drag",
|
|
"desktop_open_paths",
|
|
]),
|
|
),
|
|
)
|
|
.expect("failed to run tauri build");
|
|
}
|