diff --git a/license.md b/license.md index c143d85..ea1d9ee 100644 --- a/license.md +++ b/license.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) [2021] [HypherionMC] +Copyright 2022 HypherionMC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index d3c9fb5..87d833a 100644 --- a/package.json +++ b/package.json @@ -26,8 +26,8 @@ "@fortawesome/free-regular-svg-icons": "^5.15.4", "@fortawesome/free-solid-svg-icons": "^5.15.4", "@fortawesome/vue-fontawesome": "^2.0.2", - "@tauri-apps/api": "1.0.0-beta.8", - "@tauri-apps/cli": "1.0.0-beta.6", + "@tauri-apps/api": "^1.0.0-rc.2", + "@tauri-apps/cli": "^1.0.0-rc.7", "axios": "^0.21.4", "bootstrap": "^5.1.1", "bootstrap-vue": "^2.21.2", @@ -43,7 +43,7 @@ "devDependencies": { "@vue/cli-service": "~4.5.0", "brace": "^0.11.1", - "vue-cli-plugin-tauri": "~1.0.0-beta.6", + "vue-cli-plugin-tauri": "^1.0.0-rc.1", "vue-template-compiler": "^2.6.11", "vue2-ace-editor": "0.0.15" } diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c3e3327..f1f5f92 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -2,28 +2,25 @@ name = "simple-rpc-editor" version = "2.0.4" description = "Simple RPC Config Editor App" -authors = ["HypherionSA"] +authors = [ "HypherionSA" ] license = "MIT" repository = "https://github.com/hypherionmc/simple-rpc-editor/" default-run = "simple-rpc-editor" edition = "2018" build = "src/build.rs" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [build-dependencies] -tauri-build = { version = "1.0.0-beta.3" } +tauri-build = { version = "1.0.0-beta.3", features = [] } [dependencies] serde_json = "1.0" -serde = { version = "1.0", features = ["derive"] } -tauri = { version = "1.0.0-beta.5", features = ["api-all", "updater"] } +serde = { version = "1.0", features = [ "derive" ] } discord-rpc-client = { git = "https://github.com/lennartkloock/discord-rpc-client.rs.git", branch = "master" } + [dependencies.tauri] + version = "1.0.0-rc" +features = ["api-all", "updater"] + [features] default = [ "custom-protocol" ] custom-protocol = [ "tauri/custom-protocol" ] - -[profile.release.package.wry] -debug = true -debug-assertions = true diff --git a/src/components/ChangelogSplash.vue b/src/components/ChangelogSplash.vue index db3acfe..2330dcc 100644 --- a/src/components/ChangelogSplash.vue +++ b/src/components/ChangelogSplash.vue @@ -4,6 +4,7 @@
Version 2.0.4: * Fix "cannot recurse directory issue" +* Upgrade Tauri to 1.0-rc Version 2.0.3: * Added Drag and Drop Support for Loading Files