diff --git a/CHANGELOG.md b/CHANGELOG.md index 60a6e972..79460461 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,17 +5,17 @@ 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.3.1] ### Fixed -- Fixed a bug where VRChat accounts without 2FA enabled could not log in properly. -- Fixed a bug where the status bar would still a VRChat user name after logging out. +- A bug where VRChat accounts without 2FA enabled could not log in properly. +- A bug where the status bar would still a VRChat user name after logging out. ### Changed -- Made the update check run every week after application start, in case Oyasumi is left running for a long time. -- Made the update check rerun every 10 minutes until at least one update check has succeeded, in case Oyasumi is started while offline. +- Update check to run every week after application start, in case Oyasumi is left running for a long time. +- Update check to rerun every 10 minutes until at least one check has succeeded, in case Oyasumi is started while offline. ## [1.3.0] diff --git a/package.json b/package.json index f10b54be..562e8fd3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oyasumi", - "version": "1.3.0", + "version": "1.3.1", "author": "Raphiiko", "license": "MIT", "type": "module", diff --git a/src-elevated-sidecar/Cargo.lock b/src-elevated-sidecar/Cargo.lock index c59fa465..f2405b37 100644 --- a/src-elevated-sidecar/Cargo.lock +++ b/src-elevated-sidecar/Cargo.lock @@ -606,7 +606,7 @@ dependencies = [ [[package]] name = "oyasumi-elevated-sidecar" -version = "1.2.0" +version = "1.3.1" dependencies = [ "hyper", "lazy_static", @@ -623,7 +623,7 @@ dependencies = [ [[package]] name = "oyasumi-shared" -version = "1.2.0" +version = "1.3.1" dependencies = [ "openvr", "serde", diff --git a/src-elevated-sidecar/Cargo.toml b/src-elevated-sidecar/Cargo.toml index d7716b87..bfc530bd 100644 --- a/src-elevated-sidecar/Cargo.toml +++ b/src-elevated-sidecar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumi-elevated-sidecar" -version = "1.3.0" +version = "1.3.1" authors = ["Raphiiko"] license = "MIT" edition = "2021" diff --git a/src-shared/Cargo.toml b/src-shared/Cargo.toml index ecd135cf..06afb8f5 100644 --- a/src-shared/Cargo.toml +++ b/src-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumi-shared" -version = "1.3.0" +version = "1.3.1" authors = ["Raphiiko"] edition = "2021" license = "MIT" diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 2c17fc27..ac9ff493 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2219,7 +2219,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "oyasumi" -version = "1.3.0" +version = "1.3.1" dependencies = [ "chrono", "cronjob", @@ -2254,7 +2254,7 @@ dependencies = [ [[package]] name = "oyasumi-shared" -version = "1.3.0" +version = "1.3.1" dependencies = [ "openvr", "serde", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6da31a9e..bc38155c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oyasumi" -version = "1.3.0" +version = "1.3.1" description = "" authors = ["Raphiiko"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 930ce3e3..ec702b83 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -9,7 +9,7 @@ }, "package": { "productName": "Oyasumi", - "version": "1.3.0" + "version": "1.3.1" }, "tauri": { "allowlist": { @@ -108,7 +108,7 @@ "center": true, "theme": "Dark", "transparent": true, - "userAgent": "Oyasumi/1.3.0 (https://github.com/Raphiiko/Oyasumi)" + "userAgent": "Oyasumi/1.3.1 (https://github.com/Raphiiko/Oyasumi)" }, { "width": 500, @@ -120,7 +120,7 @@ "center": true, "theme": "Dark", "transparent": true, - "userAgent": "Oyasumi/1.3.0 (https://github.com/Raphiiko/Oyasumi)" + "userAgent": "Oyasumi/1.3.1 (https://github.com/Raphiiko/Oyasumi)" } ] }