Skip to content

Commit ce4ab8f

Browse files
committed
Merge branch 'steam-beta'
2 parents 45c54fe + e4dfc0e commit ce4ab8f

File tree

16 files changed

+139
-136
lines changed

16 files changed

+139
-136
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project (now) adheres to [Calendar Versioning](https://calver.org/#scheme).
77

8+
## [25.6.10]
9+
10+
### Fixed
11+
12+
- Fixed overlay sidecar not running on some systems (.net 8 downgrade)
13+
- Fixed Pulsoid account linking for new installs (restored schema registration)
14+
815
## [25.6.9]
916

1017
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oyasumi",
3-
"version": "25.6.9",
3+
"version": "25.6.10",
44
"author": "Raphiiko",
55
"license": "MIT",
66
"type": "module",

scripts/mdns-sidecar-post-build.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

scripts/overlay-sidecar-post-build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import copy from 'recursive-copy';
33
import { rimraf } from 'rimraf';
44

55
async function main() {
6-
const coreSourceDirectory = 'src-overlay-sidecar/bin/Release/net9.0/win-x64/publish';
6+
const coreSourceDirectory = 'src-overlay-sidecar/bin/Release/net8.0-windows/win-x64/publish';
77
const coreTargetDirectory = 'src-core/resources/dotnet-sidecars';
88
await mkdirp(coreTargetDirectory);
99
await copy(coreSourceDirectory, coreTargetDirectory, { overwrite: true });

src-core/Cargo.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oyasumivr"
3-
version = "25.6.9"
3+
version = "25.6.10"
44
description = ""
55
authors = ["Raphiiko"]
66
license = "MIT"
@@ -62,7 +62,7 @@ system_shutdown = "4.0.1"
6262
tauri-plugin-aptabase = { git = "https://github.com/aptabase/tauri-plugin-aptabase", rev = "7cc36ccce0052352bda7272a4acb25a214c4b804" }
6363
tauri-plugin-cli = "2.4.0"
6464
tauri-plugin-clipboard-manager = "2.3.0"
65-
tauri-plugin-deep-link = "2.4.0"
65+
tauri-plugin-deep-link = "2.4.1"
6666
tauri-plugin-dialog = "2.3.0"
6767
tauri-plugin-fs = "2.4.0"
6868
tauri-plugin-http = { version = "2.5.0", features = ["unsafe-headers"] }
@@ -71,7 +71,7 @@ tauri-plugin-notification = "2.3.0"
7171
tauri-plugin-opener = "2.4.0"
7272
tauri-plugin-process = "2.3.0"
7373
tauri-plugin-shell = "2.3.0"
74-
tauri-plugin-single-instance = { version = "2.3.0", features = ["deep-link"] }
74+
tauri-plugin-single-instance = { version = "2.3.2", features = ["deep-link"] }
7575
tauri-plugin-store = "2.3.0"
7676
tempfile = "3.20.0"
7777
time = "0.3.41"

src-core/src/main.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub use grpc::models as Models;
2929

3030
use cronjob::CronJob;
3131
use globals::{APTABASE_APP_KEY, FLAGS, TAURI_APP_HANDLE};
32-
use log::{info, warn, LevelFilter};
32+
use log::{error, info, warn, LevelFilter};
3333
use oyasumivr_shared::windows::is_elevated;
3434
use serde_json::json;
3535
use tauri::{plugin::TauriPlugin, Manager, Wry};
@@ -231,6 +231,13 @@ async fn app_setup(app_handle: tauri::AppHandle) {
231231
.unwrap();
232232
// Get dependencies
233233
let cache_dir = app_handle.path().app_cache_dir().unwrap();
234+
// Register deep link schemas if needed
235+
{
236+
use tauri_plugin_deep_link::DeepLinkExt;
237+
if let Err(e) = app_handle.deep_link().register_all() {
238+
error!("[Core] Failed to register deep link schemas: {}", e);
239+
}
240+
}
234241
// Initialize utility module
235242
utils::init();
236243
// Initialize Steam module

src-core/tauri.conf.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
},
6868
"productName": "OyasumiVR",
6969
"mainBinaryName": "OyasumiVR",
70-
"version": "25.6.9",
70+
"version": "25.6.10",
7171
"identifier": "co.raphii.oyasumi",
7272
"plugins": {
7373
"cli": {
@@ -139,7 +139,7 @@
139139
"skipTaskbar": true,
140140
"minimizable": false,
141141
"focus": true,
142-
"userAgent": "OyasumiVR/25.6.9 (https://github.com/Raphiiko/OyasumiVR)",
142+
"userAgent": "OyasumiVR/25.6.10 (https://github.com/Raphiiko/OyasumiVR)",
143143
"useHttpsScheme": false
144144
},
145145
{
@@ -155,7 +155,7 @@
155155
"theme": "Dark",
156156
"visible": false,
157157
"transparent": true,
158-
"userAgent": "OyasumiVR/25.6.9 (https://github.com/Raphiiko/OyasumiVR)",
158+
"userAgent": "OyasumiVR/25.6.10 (https://github.com/Raphiiko/OyasumiVR)",
159159
"useHttpsScheme": false
160160
}
161161
],

src-elevated-sidecar/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-elevated-sidecar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oyasumivr-elevated-sidecar"
3-
version = "25.6.9"
3+
version = "25.6.10"
44
authors = ["Raphiiko"]
55
license = "MIT"
66
edition = "2021"

0 commit comments

Comments
 (0)