Skip to content

Commit

Permalink
Merge pull request #7 from dre-bk201/dev
Browse files Browse the repository at this point in the history
Testing app updater
  • Loading branch information
dre-bk201 authored Oct 22, 2023
2 parents b7508d1 + 2e4e96e commit d99742c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SmartOrganizer",
"private": true,
"version": "0.9.0",
"version": "0.9.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
14 changes: 9 additions & 5 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ tauri-build = { version = "1.4.0", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.4.1", features = [ "updater", "clipboard-write-text", "window-set-fullscreen", "os-all",
tauri = { version = "1.4.1", features = [
"updater",
"clipboard-write-text",
"window-set-fullscreen",
"os-all",
"dialog-open",
"dialog-save",
"window-close",
Expand Down Expand Up @@ -63,8 +67,8 @@ assert_fs = "*"
custom-protocol = ["tauri/custom-protocol"]

[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "SmartOrganizer",
"version": "0.9.0"
"version": "0.9.1"
},
"tauri": {
"updater": {
Expand Down

0 comments on commit d99742c

Please sign in to comment.