diff --git a/package-lock.json b/package-lock.json index 4fd6bce..d5fde2a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pomodoro", - "version": "3.5.0", + "version": "3.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pomodoro", - "version": "3.5.0", + "version": "3.6.0", "dependencies": { "@tauri-apps/api": "^2.0.3", "@tauri-apps/plugin-autostart": "^2.0.0", diff --git a/package.json b/package.json index e04f61c..2762f2b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pomodoro", "private": true, - "version": "3.5.0", + "version": "3.6.0", "type": "module", "scripts": { "start": "tauri dev", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index ce06161..175ce68 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -89,7 +89,7 @@ checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8" [[package]] name = "app" -version = "3.5.0" +version = "3.6.0" dependencies = [ "anyhow", "cargo-bump", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 48ec844..d724b82 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "3.5.0" +version = "3.6.0" description = "Pomodoro timer app" authors = ["G07cha"] license = "MIT" @@ -32,6 +32,10 @@ tauri-plugin-positioner = { version = "2.0.2", features = ["tray-icon"] } tauri-nspanel = { git = "https://github.com/ahkohd/tauri-nspanel", branch = "v2" } monitor = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" } +[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies] +tauri-plugin-autostart = "2" +tauri-plugin-updater = "2" + [dev-dependencies] cargo-bump = "1.1.0" serial_test = "3.1.1" @@ -50,7 +54,3 @@ codegen-units = 1 # Compile crates one after another so the compiler can optimiz lto = true # Enables link to optimizations opt-level = "s" # Optimize for binary size strip = true # Remove debug symbols - -[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies] -tauri-plugin-autostart = "2" -tauri-plugin-updater = "2"