Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Upped tauri
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed May 16, 2022
1 parent 67e8114 commit b0d6420
Show file tree
Hide file tree
Showing 9 changed files with 245 additions and 434 deletions.
481 changes: 146 additions & 335 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/holochain_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ portpicker = "0.1.1"
serde = {version = "1", features = ["derive"]}
serde-enum-str = "0.2"
serde_yaml = "0.8"
tauri = {version = "=1.0.0-rc.7", features = ["api-all", "gtk-tray", "system-tray", "wry"], default-features = false}
tauri = {version = "=1.0.0-rc.10", features = ["api-all", "gtk-tray", "system-tray"]}
thiserror = "1.0.30"
url2 = "0.0.6"
2 changes: 1 addition & 1 deletion crates/holochain_web_app_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log = "0.4.14"
portpicker = "0.1.1"
serde = {version = "1", features = ["derive"]}
serde_yaml = "0.8"
tauri = {version = "=1.0.0-rc.7", features = ["api-all", "gtk-tray", "system-tray", "wry"], default-features = false}
tauri = {version = "=1.0.0-rc.10", features = ["api-all", "gtk-tray", "system-tray"]}
thiserror = "1.0.30"
url2 = "0.0.6"
zip = "0.5.0"
2 changes: 1 addition & 1 deletion crates/lair_keystore_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ async-trait = "0.1.52"
log = "0.4.14"
serde = {version = "1", features = ["derive"]}
serde-enum-str = "0.2"
tauri = {version = "=1.0.0-rc.7", features = ["api-all", "gtk-tray", "system-tray", "wry"], default-features = false}
tauri = {version = "=1.0.0-rc.10", features = ["api-all", "gtk-tray", "system-tray"]}
thiserror = "1.0.30"
url2 = "0.0.6"
176 changes: 88 additions & 88 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "launcher",
"version": "0.4.5",
"version": "0.4.6",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:ui\" \"sleep 7 && npm tauri dev\"",
Expand All @@ -23,7 +23,7 @@
"@material/mwc-textarea": "^0.25.1",
"@material/mwc-textfield": "^0.25.1",
"@msgpack/msgpack": "^2.7.1",
"@tauri-apps/api": "1.0.0-rc.4",
"@tauri-apps/api": "1.0.0-rc.5",
"@webcomponents/scoped-custom-element-registry": "^0.0.5",
"array-flat-polyfill": "^1.0.1",
"blob-polyfill": "^5.0.20210201",
Expand All @@ -35,7 +35,7 @@
"vuex": "^4.0.0-0"
},
"devDependencies": {
"@tauri-apps/cli": "1.0.0-rc.9",
"@tauri-apps/cli": "1.0.0-rc.10",
"@types/jest": "^24.0.19",
"@types/lodash-es": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^4.18.0",
Expand Down
6 changes: 3 additions & 3 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ edition = "2018"
license = ""
name = "holochain-launcher"
repository = ""
version = "0.4.5"
version = "0.4.6"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = {version = "=1.0.0-rc.6", features = [] }
tauri-build = {version = "=1.0.0-rc.8", features = [] }

[dependencies]
holochain_manager = {path = "../crates/holochain_manager"}
Expand All @@ -35,7 +35,7 @@ serde = {version = "1", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
sysinfo = "0.23.5"
tauri = {version = "=1.0.0-rc.7", features = ["api-all", "gtk-tray", "system-tray", "wry"], default-features = false}
tauri = {version = "=1.0.0-rc.10", features = ["api-all", "gtk-tray", "system-tray"] }
thiserror = "1.0.30"
url = "2.2.2"
url2 = "0.0.6"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "Holochain Launcher",
"version": "0.4.5"
"version": "0.4.6"
},
"build": {
"distDir": "target/webpack_dist",
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
<div class="column" style="width: 512px" v-else-if="holochainVersions">
<div class="column">
<span> Holochain Launcher v0.4.5 </span>
<span> Holochain Launcher v0.4.6 </span>
<span
style="margin-top: 8px"
v-for="version in holochainVersions"
Expand Down

0 comments on commit b0d6420

Please sign in to comment.