Merge branch 'main' into next

This commit is contained in:
Nikita Podvirnyi 2024-06-17 15:56:28 +02:00
commit 84b2e3844c
No known key found for this signature in database
GPG key ID: 859D416E5142AFF3
4 changed files with 5 additions and 3 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.5.5] - 08.05.2024
### Added ### Added
- List missing dependencies on non-standard distros during initial setup - List missing dependencies on non-standard distros during initial setup

2
Cargo.lock generated
View file

@ -1476,7 +1476,7 @@ dependencies = [
[[package]] [[package]]
name = "honkers-railway-launcher" name = "honkers-railway-launcher"
version = "1.5.4" version = "1.5.5"
dependencies = [ dependencies = [
"anime-launcher-sdk", "anime-launcher-sdk",
"anyhow", "anyhow",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "honkers-railway-launcher" name = "honkers-railway-launcher"
version = "1.5.4" version = "1.5.5"
description = "The Honkers Railway launcher" description = "The Honkers Railway launcher"
authors = ["Nikita Podvirnyi <krypt0nn@vk.com>"] authors = ["Nikita Podvirnyi <krypt0nn@vk.com>"]
homepage = "https://github.com/an-anime-team/the-honkers-railway-launcher" homepage = "https://github.com/an-anime-team/the-honkers-railway-launcher"

View file

@ -34,7 +34,7 @@ pub fn get_background_info() -> anyhow::Result<Background> {
.iter() .iter()
.find(|game| { .find(|game| {
match game["game"]["biz"].as_str() { match game["game"]["biz"].as_str() {
Some(biz) => biz.starts_with("hk4e_"), Some(biz) => biz.starts_with("hkrpg_"),
_ => false _ => false
} }
}) })