diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f85ef1..a117311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [0.2.2] - 2021-03-14 +### Changed +- Allow launching game clients and setup executables that do not have a `.exe` + extensions in their file name. + +### Fixed +- Fix wrong command-line arguments' order preventing SSO login to work correctly + (thanks to @waken22 and @vstumpf). + ## [0.2.1] - 2021-03-10 ### Added - Implement THOR archive generation in `gruf`. diff --git a/Cargo.lock b/Cargo.lock index 0770434..6ccea6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1310,7 +1310,7 @@ dependencies = [ [[package]] name = "rpatchur" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "bincode", diff --git a/README.md b/README.md index 2c44f24..dd3c273 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ Features * THOR patch format support * Drop-in replacement for the Thor patcher * Cross-platform (Windows, Linux, macOS) +* SSO login support (i.e., can act as a launcher) Known Limitations ----------------- diff --git a/rpatchur/Cargo.toml b/rpatchur/Cargo.toml index 098cbc0..766a198 100644 --- a/rpatchur/Cargo.toml +++ b/rpatchur/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpatchur" -version = "0.2.1" +version = "0.2.2" authors = ["LinkZ "] edition = "2018" build = "build.rs" @@ -9,7 +9,7 @@ description = "A customizable patcher for Ragnarok Online" [package.metadata.winres] FileDescription = "A customizable patcher for Ragnarok Online" ProductName = "RPatchur" -ProductVersion = "0.2.1" +ProductVersion = "0.2.2" LegalCopyright = "Copyright © 2020-2021 rpatchur developers" [target.'cfg(windows)'.build-dependencies]