Skip to content

Commit

Permalink
Merge pull request #27 from angelware-net/v2
Browse files Browse the repository at this point in the history
Updater
  • Loading branch information
kay-xr authored Jan 4, 2025
2 parents 66b2c6f + 6ee658a commit 2b18939
Show file tree
Hide file tree
Showing 8 changed files with 244 additions and 2 deletions.
20 changes: 20 additions & 0 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@
"type": "module",
"dependencies": {
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-http": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-store": "^2.2.0",
"@tauri-apps/plugin-stronghold": "^2.2.0",
Expand Down
169 changes: 169 additions & 0 deletions src-tauri/Cargo.lock

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

2 changes: 2 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ tauri-plugin-shell = "2.2.0"
tauri-plugin-notification = "2.2.0"
tauri-plugin-fs = "2"
tauri-plugin-os = "2"
tauri-plugin-process = "2"
tauri-plugin-dialog = "2"

[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-single-instance = "2"
Expand Down
2 changes: 2 additions & 0 deletions src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ mod web;
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
let builder = tauri::Builder::default()
.plugin(tauri_plugin_dialog::init())
.plugin(tauri_plugin_process::init())
.plugin(tauri_plugin_os::init())
.plugin(tauri_plugin_shell::init())
.plugin(tauri_plugin_fs::init())
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "spectre-vrc",
"version": "2.0.0-0",
"version": "2.0.0-1",
"identifier": "com.angelware.spectre",
"build": {
"frontendDist": "../build",
Expand Down Expand Up @@ -40,7 +40,7 @@
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDc4Q0I0NTA5RjdCQkZEMzQKUldRMC9idjNDVVhMZUFBdFM3Q21CcDR2b1BsVXNIaUhQd2xReEE0NlgxUldjZGo5bk5aQTh5aFgK",
"endpoints": [
"https://gist.githubusercontent.com/kay-xr/e3f809d00536399341af561836e3b7db/raw/33ffc046bd8749cbc93980f2e327e0a108eada2f/spectre.json"
"https://update.svrc.app/latest.json"
]
}
}
Expand Down
Loading

0 comments on commit 2b18939

Please sign in to comment.