diff --git a/package.json b/package.json index 18dad66..020590b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "log-lottery", "private": true, - "version": "0.5.2", + "version": "0.5.3", "type": "module", "license": "MIT", "scripts": { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 91204f5..3f885aa 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "0.5.2" +version = "0.5.3" description = "A Tauri App" authors = ["you"] license = "" @@ -21,5 +21,5 @@ tauri-build = { version = "2.5.3", features = [] } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } log = "0.4" -tauri = { version = "2.9.4", features = [] } +tauri = { version = "2.9.4", features = ["devtools"] } tauri-plugin-log = "2" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 3c245a4..f8a207a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "log-lottery", - "version": "0.5.2", + "version": "0.5.3", "identifier": "to2026.xyz", "build": { "frontendDist": "../dist", diff --git a/src/views/Config/Person/PersonAll/useViewModel.ts b/src/views/Config/Person/PersonAll/useViewModel.ts index 71073ee..fefaf77 100644 --- a/src/views/Config/Person/PersonAll/useViewModel.ts +++ b/src/views/Config/Person/PersonAll/useViewModel.ts @@ -18,7 +18,7 @@ type IBasePersonConfig = Pick }) { const { t } = useI18n() - const baseUrl = import.meta.env.BASE_URL + const baseUrl = import.meta.env.BASE_URL.replace('./', '/') const toast = useToast() const worker: Worker | null = new ImportExcelWorker() const loading = inject(loadingKey) @@ -36,11 +36,11 @@ export function useViewModel({ exportInputFileRef }: { exportInputFileRef: Ref