diff --git a/CHANGELOG.md b/CHANGELOG.md index 61a0e69a..81b08973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,15 @@ 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.2.2] + +### Fixed +- Fixed issue where the main window would load before the app was ready, due to a bug in a new version of the `tao` crate. ## [1.2.1] ### Fixed + - Updated Tauri dependencies to new 1.2 release. - Properly send user agent to VRChat API when connecting the websocket. - Updated various dependencies to their latest version. diff --git a/package-lock.json b/package-lock.json index 242f806b..04cdfce5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "oyasumi", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "oyasumi", - "version": "1.2.1", + "version": "1.2.2", "license": "MIT", "dependencies": { "@angular/animations": "^14.2.9", diff --git a/package.json b/package.json index 3e78cdf2..a962b49a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oyasumi", - "version": "1.2.1", + "version": "1.2.2", "author": "Raphiiko", "license": "MIT", "type": "module", @@ -74,4 +74,4 @@ "prettier": "^2.7.1", "typescript": "^4.8.4" } -} +} \ No newline at end of file diff --git a/src-elevated-sidecar/Cargo.toml b/src-elevated-sidecar/Cargo.toml index 7e3971d3..a7ab2dbb 100644 --- a/src-elevated-sidecar/Cargo.toml +++ b/src-elevated-sidecar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumi-elevated-sidecar" -version = "1.2.1" +version = "1.2.2" authors = ["Raphiiko"] license = "MIT" edition = "2021" diff --git a/src-shared/Cargo.toml b/src-shared/Cargo.toml index 97abdb31..0192564f 100644 --- a/src-shared/Cargo.toml +++ b/src-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumi-shared" -version = "1.2.1" +version = "1.2.2" authors = ["Raphiiko"] edition = "2021" license = "MIT" diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 85381247..ecfb7d39 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1997,7 +1997,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "oyasumi" -version = "1.2.1" +version = "1.2.2" dependencies = [ "chrono", "cronjob", @@ -2026,7 +2026,7 @@ dependencies = [ [[package]] name = "oyasumi-shared" -version = "1.2.1" +version = "1.2.2" dependencies = [ "openvr", "serde", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index ffc2cc67..387313af 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumi" -version = "1.2.1" +version = "1.2.2" description = "" authors = ["Raphiiko"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b71e8571..83e948bf 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -9,7 +9,7 @@ }, "package": { "productName": "Oyasumi", - "version": "1.2.1" + "version": "1.2.2" }, "tauri": { "allowlist": { @@ -105,7 +105,7 @@ "center": true, "theme": "Dark", "transparent": true, - "userAgent": "Oyasumi/1.2.1 (https://github.com/Raphiiko/Oyasumi)" + "userAgent": "Oyasumi/1.2.2 (https://github.com/Raphiiko/Oyasumi)" }, { "width": 500, @@ -117,7 +117,7 @@ "center": true, "theme": "Dark", "transparent": true, - "userAgent": "Oyasumi/1.2.1 (https://github.com/Raphiiko/Oyasumi)" + "userAgent": "Oyasumi/1.2.2 (https://github.com/Raphiiko/Oyasumi)" } ] }