Skip to content

Commit

Permalink
Merge branch 'release/1.14.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Oct 1, 2024
2 parents ad1fd94 + cb283b6 commit 82aa6bf
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 17 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.14.1]

### Fixed

- A dependency crashing OyasumiVR when attempting to calculate the sunrise/sunset times.

## [1.14.0]

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oyasumi",
"version": "1.14.0",
"version": "1.14.1",
"author": "Raphiiko",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -148,4 +148,4 @@
"git add"
]
}
}
}
7 changes: 3 additions & 4 deletions src-core/Cargo.lock

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

7 changes: 5 additions & 2 deletions src-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oyasumivr"
version = "1.14.0"
version = "1.14.1"
description = ""
authors = ["Raphiiko"]
license = "MIT"
Expand Down Expand Up @@ -92,10 +92,13 @@ regex = "1.10.2"
hidapi = "2.6.0"
steamlocate = "1.2.1"
discord-sdk = "0.3.6"
ipgeolocate = "0.3.6"
public-ip = "0.2.2"
suncalc = "0.4.0"

[dependencies.ipgeolocate]
git = "https://github.com/Raphiiko/ipgeolocate_oyasumi.git"
rev = "5f24925"

[dependencies.oyasumivr_oscquery]
git = "https://github.com/Raphiiko/oyasumivr_oscquery.git"
rev = "2949a3f"
Expand Down
6 changes: 3 additions & 3 deletions src-core/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"package": {
"productName": "OyasumiVR",
"version": "1.14.0"
"version": "1.14.1"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -201,7 +201,7 @@
"center": true,
"theme": "Dark",
"transparent": true,
"userAgent": "OyasumiVR/1.14.0 (https://github.com/Raphiiko/OyasumiVR)"
"userAgent": "OyasumiVR/1.14.1 (https://github.com/Raphiiko/OyasumiVR)"
},
{
"width": 700,
Expand All @@ -216,7 +216,7 @@
"skipTaskbar": true,
"minimizable": false,
"alwaysOnTop": true,
"userAgent": "OyasumiVR/1.14.0 (https://github.com/Raphiiko/OyasumiVR)"
"userAgent": "OyasumiVR/1.14.1 (https://github.com/Raphiiko/OyasumiVR)"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion src-elevated-sidecar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oyasumivr-elevated-sidecar"
version = "1.14.0"
version = "1.14.1"
authors = ["Raphiiko"]
license = "MIT"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions src-overlay-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oyasumivr-overlay-ui",
"version": "1.14.0",
"version": "1.14.1",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down Expand Up @@ -45,4 +45,4 @@
"rxjs": "^7.8.1",
"tailwindcss-multi": "^0.4.6"
}
}
}
2 changes: 1 addition & 1 deletion src-shared-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oyasumivr-shared"
version = "1.14.0"
version = "1.14.1"
authors = ["Raphiiko"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src-shared-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "src-shared-ts",
"description": "Shared typescript code for Oyasumi modules",
"scripts": {},
"version": "1.14.0",
"version": "1.14.1",
"author": "Raphiiko",
"license": "MIT",
"type": "module",
Expand Down

0 comments on commit 82aa6bf

Please sign in to comment.