feat: update to tauri 2.0.0-alpha.9 (#372)

This commit is contained in:
Lucas Fernandes Nogueira
2023-05-18 11:39:46 -03:00
committed by GitHub
parent 717ae67097
commit 3c9771e287
36 changed files with 163 additions and 288 deletions
+1 -29
View File
@@ -1,4 +1,4 @@
import { invoke, transformCallback } from "@tauri-apps/api/tauri";
import { invoke, Channel } from "@tauri-apps/api/tauri";
interface CheckOptions {
/**
@@ -23,34 +23,6 @@ interface UpdateResponse {
body?: string;
}
// TODO: use channel from @tauri-apps/api on v2
class Channel<T = unknown> {
id: number;
// @ts-expect-error field used by the IPC serializer
private readonly __TAURI_CHANNEL_MARKER__ = true;
#onmessage: (response: T) => void = () => {
// no-op
};
constructor() {
this.id = transformCallback((response: T) => {
this.#onmessage(response);
});
}
set onmessage(handler: (response: T) => void) {
this.#onmessage = handler;
}
get onmessage(): (response: T) => void {
return this.#onmessage;
}
toJSON(): string {
return `__CHANNEL__:${this.id}`;
}
}
type DownloadEvent =
| { event: "Started"; data: { contentLength?: number } }
| { event: "Progress"; data: { chunkLength: number } }
+1 -1
View File
@@ -27,6 +27,6 @@
"tslib": "^2.5.0"
},
"dependencies": {
"@tauri-apps/api": "^1.2.0"
"@tauri-apps/api": "2.0.0-alpha.4"
}
}
@@ -17,7 +17,6 @@ fn main() {
// It must be the last parameter used in the command line and must not contain any quotes, even if the path contains spaces.
// Only absolute paths are supported.
// NOTE: we only need this because this is an integration test and we don't want to install the app in the programs folder
// TODO mutate plugin config
updater = updater.installer_args(vec![format!(
"/D={}",
tauri::utils::platform::current_exe()