Skip to content

Commit

Permalink
Merge pull request #49 from an-anime-team/next
Browse files Browse the repository at this point in the history
Release 1.7.1
  • Loading branch information
krypt0nn committed Aug 3, 2024
2 parents cd966d5 + 5f4b2b0 commit 0547a10
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 30 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fixed background picture URI

## [1.7.0] - 02.08.2024

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/background.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub fn get_background_info() -> anyhow::Result<Background> {
.iter()
.find(|game| {
match game["game"]["biz"].as_str() {
Some(biz) => biz.starts_with("hkrpg_"),
Some(biz) => biz.starts_with("bh3_"),
_ => false
}
})
Expand Down
30 changes: 1 addition & 29 deletions src/ui/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,38 +100,10 @@ impl SimpleComponent for AboutDialog {

set_release_notes_version: &APP_VERSION,
set_release_notes: &[
"<p>Added</p>",

"<ul>",
"<li>List missing dependencies on non-standard distros during initial setup</li>",
"<li>Handle dwebp re-coding errors</li>",
"<li>Added \"Indonesia\" wine language option</li>",
"<li>Added writing of the game's output to the \"game.log\" file in the launcher's folder</li>",
"<li>Respect root \".version\" file for game version parsing</li>",
"</ul>",

"<p>Fixed</p>",

"<ul>",
"<li>Fixed Italian localization breaking the launcher</li>",
"<li>Fixed Discord RPC updates</li>",
"</ul>",

"<p>Changed</p>",

"<ul>",
"<li>Support new game API</li>",
"<li>Updated desktop file entry to include \"hl\" keyword</li>",
"<li>Localized \"force-grab-cursor\" to Ukrainian</li>",
"<li>Changed background images processing logic</li>",
"<li>Prioritize parsed game version over the API response</li>",
"</ul>",

"<p>Removed</p>",

"<ul>",
"<li>Removed \"xdelta3\" dependency</li>",
"<li>Removed migrate installation feature</li>",
"<li>Fixed background picture URI</li>",
"</ul>"
].join("\n"),

Expand Down

0 comments on commit 0547a10

Please sign in to comment.