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

Commit

Permalink
Merge pull request #259 from subspace/update-dependencies-and-version…
Browse files Browse the repository at this point in the history
…-bump

updated dependencies and bumped version
  • Loading branch information
ozgunozerk committed Jun 13, 2022
2 parents 7a66eb3 + 8bb74c6 commit 960a98c
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "subspace-desktop",
"version": "0.6.6",
"version": "0.6.7",
"private": true,
"description": "Subspace desktop",
"author": "Subspace Labs <https://subspace.network>",
Expand Down
62 changes: 31 additions & 31 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subspace-desktop"
version = "0.6.6"
version = "0.6.7"
description = "Subspace desktop"
authors = ["Subspace Labs <https://subspace.network>"]
license = "Apache-2.0"
Expand All @@ -13,7 +13,7 @@ tauri-build = { version = "1.0.0-rc.9", features = [] }

[dependencies]
anyhow = "1.0.44"
cirrus-runtime = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
cirrus-runtime = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
dirs = "4.0.0"
dotenv = "0.15.0"
event-listener-primitives = "2.0.1"
Expand All @@ -26,17 +26,17 @@ sc-client-api = { version = "4.0.0-dev", git = "https://github.com/subspace/subs
sc-executor = { version = "0.10.0-dev", git = "https://github.com/subspace/substrate", rev = "5f0aa1feb7250ac7b8c1b9928f87b2420b530e22", features = ["wasmtime"] }
sc-network = { version = "0.10.0-dev", git = "https://github.com/subspace/substrate", rev = "5f0aa1feb7250ac7b8c1b9928f87b2420b530e22" }
sc-service = { version = "0.10.0-dev", git = "https://github.com/subspace/substrate", rev = "5f0aa1feb7250ac7b8c1b9928f87b2420b530e22", features = ["wasmtime"] }
sc-subspace-chain-specs = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
sc-subspace-chain-specs = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
serde_json = "1.0.81"
serde = { version = "1.0.137", features = [ "derive" ] }
sp-core = { version = "6.0.0", git = "https://github.com/subspace/substrate", rev = "5f0aa1feb7250ac7b8c1b9928f87b2420b530e22" }
sp-panic-handler = { version = "4.0.0", git = "https://github.com/subspace/substrate", rev = "5f0aa1feb7250ac7b8c1b9928f87b2420b530e22" }
subspace-core-primitives = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
subspace-farmer = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
subspace-fraud-proof = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
subspace-runtime = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
subspace-service = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
subspace-solving = { git = "https://github.com/subspace/subspace", rev = "00670c9714949ec8f776e7f0467110945866457b" }
subspace-core-primitives = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
subspace-farmer = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
subspace-fraud-proof = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
subspace-runtime = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
subspace-service = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
subspace-solving = { git = "https://github.com/subspace/subspace", rev = "3c3a48f865cfe0a2510512bc75e4bae099e27aae" }
tokio = { version = "1.11.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.31"
tracing-subscriber = "0.3.11"
Expand Down
4 changes: 2 additions & 2 deletions src/components/mainMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ export default defineComponent({
async exportLogs() {
try {
const log_path = await util.getLogPath()
console.log("THIS IS LOG PATH:", log_path)
util.infoLogger("log path acquired:" + log_path)
await shellOpen(log_path)
} catch(error) {
console.error(error)
util.errorLogger(error)
}
},
async initMenu() {
Expand Down

0 comments on commit 960a98c

Please sign in to comment.