Skip to content

Commit fc3ee1e

Browse files
committed
Bump patch number
1 parent f04b380 commit fc3ee1e

File tree

11 files changed

+38
-20
lines changed

11 files changed

+38
-20
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ and this project (now) adheres to [Calendar Versioning](https://calver.org/#sche
77

88
## [Unreleased]
99

10+
## [25.6.5]
11+
1012
### Fixed
1113

1214
- Moved sidecar process logs to the correct log directory
15+
- Parsing of some cli parameters
1316

1417
## [25.6.4]
1518

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.4",
3+
"version": "25.6.5",
44
"author": "Raphiiko",
55
"license": "MIT",
66
"type": "module",

src-core/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-core/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"
3-
version = "25.6.4"
3+
version = "25.6.5"
44
description = ""
55
authors = ["Raphiiko"]
66
license = "MIT"

src-core/tauri.conf.json

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,15 @@
99
"active": true,
1010
"category": "Utility",
1111
"copyright": "Copyright (c) 2022 Raphiiko",
12-
"targets": ["nsis"],
13-
"resources": ["./openvr_api.dll", "./flags.toml", "./steam_api64.dll", "./resources/**/*"],
12+
"targets": [
13+
"nsis"
14+
],
15+
"resources": [
16+
"./openvr_api.dll",
17+
"./flags.toml",
18+
"./steam_api64.dll",
19+
"./resources/**/*"
20+
],
1421
"icon": [
1522
"icons/32x32.png",
1623
"icons/128x128.png",
@@ -60,7 +67,7 @@
6067
},
6168
"productName": "OyasumiVR",
6269
"mainBinaryName": "OyasumiVR",
63-
"version": "25.6.4",
70+
"version": "25.6.5",
6471
"identifier": "co.raphii.oyasumi",
6572
"plugins": {
6673
"cli": {
@@ -82,7 +89,10 @@
8289
"longDescription": "See developer notes for more information",
8390
"takesValue": true,
8491
"multiple": false,
85-
"possibleValues": ["release", "dev"]
92+
"possibleValues": [
93+
"release",
94+
"dev"
95+
]
8696
},
8797
{
8898
"name": "overlay-sidecar-mode",
@@ -91,13 +101,18 @@
91101
"longDescription": "See developer notes for more information",
92102
"takesValue": true,
93103
"multiple": false,
94-
"possibleValues": ["release", "dev"]
104+
"possibleValues": [
105+
"release",
106+
"dev"
107+
]
95108
}
96109
]
97110
},
98111
"deep-link": {
99112
"desktop": {
100-
"schemes": ["oyasumivr"]
113+
"schemes": [
114+
"oyasumivr"
115+
]
101116
}
102117
},
103118
"updater": {
@@ -124,7 +139,7 @@
124139
"skipTaskbar": true,
125140
"minimizable": false,
126141
"focus": true,
127-
"userAgent": "OyasumiVR/25.6.4 (https://github.com/Raphiiko/OyasumiVR)",
142+
"userAgent": "OyasumiVR/25.6.5 (https://github.com/Raphiiko/OyasumiVR)",
128143
"useHttpsScheme": false
129144
},
130145
{
@@ -140,7 +155,7 @@
140155
"theme": "Dark",
141156
"visible": false,
142157
"transparent": true,
143-
"userAgent": "OyasumiVR/25.6.4 (https://github.com/Raphiiko/OyasumiVR)",
158+
"userAgent": "OyasumiVR/25.6.5 (https://github.com/Raphiiko/OyasumiVR)",
144159
"useHttpsScheme": false
145160
}
146161
],
@@ -154,4 +169,4 @@
154169
"tooltip": "OyasumiVR"
155170
}
156171
}
157-
}
172+
}

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.4"
3+
version = "25.6.5"
44
authors = ["Raphiiko"]
55
license = "MIT"
66
edition = "2021"

src-overlay-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oyasumivr-overlay-ui",
3-
"version": "25.6.4",
3+
"version": "25.6.5",
44
"private": true,
55
"scripts": {
66
"dev": "vite dev",

src-shared-rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-shared-rust/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-shared"
3-
version = "25.6.4"
3+
version = "25.6.5"
44
authors = ["Raphiiko"]
55
edition = "2021"
66
license = "MIT"

0 commit comments

Comments
 (0)