diff --git a/CHANGELOG.md b/CHANGELOG.md index 53bee63d..eff98000 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/package.json b/package.json index 59265cb7..7d3de2b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oyasumi", - "version": "1.14.0", + "version": "1.14.1", "author": "Raphiiko", "license": "MIT", "type": "module", @@ -148,4 +148,4 @@ "git add" ] } -} +} \ No newline at end of file diff --git a/src-core/Cargo.lock b/src-core/Cargo.lock index ee2887a8..4a005d99 100644 --- a/src-core/Cargo.lock +++ b/src-core/Cargo.lock @@ -3012,8 +3012,7 @@ dependencies = [ [[package]] name = "ipgeolocate" version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03ef02a710095765c2af4fe51101c5177c17f910bb1d0d51aae1589e6da6d6cc" +source = "git+https://github.com/Raphiiko/ipgeolocate_oyasumi.git?rev=5f24925#5f24925b56d5645d5160facfb51f3197826b3b96" dependencies = [ "futures", "reqwest", @@ -4198,7 +4197,7 @@ dependencies = [ [[package]] name = "oyasumivr" -version = "1.14.0" +version = "1.14.1" dependencies = [ "async-recursion", "bluest", @@ -4271,7 +4270,7 @@ dependencies = [ [[package]] name = "oyasumivr-shared" -version = "1.14.0" +version = "1.14.1" dependencies = [ "winapi", ] diff --git a/src-core/Cargo.toml b/src-core/Cargo.toml index 72776d96..32fd3d54 100644 --- a/src-core/Cargo.toml +++ b/src-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumivr" -version = "1.14.0" +version = "1.14.1" description = "" authors = ["Raphiiko"] license = "MIT" @@ -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" diff --git a/src-core/tauri.conf.json b/src-core/tauri.conf.json index 985e2d17..4cf98d4e 100644 --- a/src-core/tauri.conf.json +++ b/src-core/tauri.conf.json @@ -9,7 +9,7 @@ }, "package": { "productName": "OyasumiVR", - "version": "1.14.0" + "version": "1.14.1" }, "tauri": { "allowlist": { @@ -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, @@ -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)" } ] } diff --git a/src-elevated-sidecar/Cargo.toml b/src-elevated-sidecar/Cargo.toml index 2247298c..4ef12dd1 100644 --- a/src-elevated-sidecar/Cargo.toml +++ b/src-elevated-sidecar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumivr-elevated-sidecar" -version = "1.14.0" +version = "1.14.1" authors = ["Raphiiko"] license = "MIT" edition = "2021" diff --git a/src-overlay-ui/package.json b/src-overlay-ui/package.json index 07b30494..d0b586dc 100644 --- a/src-overlay-ui/package.json +++ b/src-overlay-ui/package.json @@ -1,6 +1,6 @@ { "name": "oyasumivr-overlay-ui", - "version": "1.14.0", + "version": "1.14.1", "private": true, "scripts": { "dev": "vite dev", @@ -45,4 +45,4 @@ "rxjs": "^7.8.1", "tailwindcss-multi": "^0.4.6" } -} +} \ No newline at end of file diff --git a/src-shared-rust/Cargo.toml b/src-shared-rust/Cargo.toml index e86ca250..0d012195 100644 --- a/src-shared-rust/Cargo.toml +++ b/src-shared-rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumivr-shared" -version = "1.14.0" +version = "1.14.1" authors = ["Raphiiko"] edition = "2021" license = "MIT" diff --git a/src-shared-ts/package.json b/src-shared-ts/package.json index 70465b8a..b8875a92 100644 --- a/src-shared-ts/package.json +++ b/src-shared-ts/package.json @@ -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",