diff --git a/CHANGELOG.md b/CHANGELOG.md index dae59c8..bbfa75e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.5.5] - 08.05.2024 + ### Added - List missing dependencies on non-standard distros during initial setup diff --git a/Cargo.lock b/Cargo.lock index ccd139b..93a28e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1476,7 +1476,7 @@ dependencies = [ [[package]] name = "honkers-railway-launcher" -version = "1.5.4" +version = "1.5.5" dependencies = [ "anime-launcher-sdk", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index ae019c6..ce469d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "honkers-railway-launcher" -version = "1.5.4" +version = "1.5.5" description = "The Honkers Railway launcher" authors = ["Nikita Podvirnyi "] homepage = "https://github.com/an-anime-team/the-honkers-railway-launcher" diff --git a/src/background.rs b/src/background.rs index a36f71a..1a446e4 100644 --- a/src/background.rs +++ b/src/background.rs @@ -34,7 +34,7 @@ pub fn get_background_info() -> anyhow::Result { .iter() .find(|game| { match game["game"]["biz"].as_str() { - Some(biz) => biz.starts_with("hk4e_"), + Some(biz) => biz.starts_with("hkrpg_"), _ => false } })