From 69bd93bd5e7e3e3ee4c6e8e477ce93bcd25e97c8 Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Tue, 1 Aug 2023 13:03:32 +0200 Subject: [PATCH] feat: updated changelog --- CHANGELOG.md | 6 ++++++ src/ui/about.rs | 10 ++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42f3637..913db7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added new gamescope version compatibility +- Added "launcher behavior" option +- Added "kill game process" button when chosen behavior keeps launcher window open +- Bundled some icons into the app for consistency across the systems ### Fixed @@ -18,6 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Improved pre-downloads state checking +- Replaced translation functions by `tr!` macro +- Reworked app resources structure +- Improved game running status check (wasn't working properly with Chinese client) ## [3.7.6] - 15.07.2023 diff --git a/src/ui/about.rs b/src/ui/about.rs index 2984474..7c70665 100644 --- a/src/ui/about.rs +++ b/src/ui/about.rs @@ -96,10 +96,10 @@ impl SimpleComponent for AboutDialog { format!("Anime Launcher SDK: {SDK_VERSION}"), format!("Anime Game Core: {CORE_VERSION}"), String::new(), - format!("GTK: {}.{}.{}", gtk::major_version(), gtk::minor_version(), gtk::micro_version()), + format!("gtk: {}.{}.{}", gtk::major_version(), gtk::minor_version(), gtk::micro_version()), format!("libadwaita: {}.{}.{}", adw::major_version(), adw::minor_version(), adw::micro_version()), format!("pango: {}", gtk::pango::version_string()), - format!("cairo: {}", gtk::cairo::version_string()), + format!("cairo: {}", gtk::cairo::version_string()) ].join("\n"), set_release_notes_version: &APP_VERSION, @@ -108,6 +108,9 @@ impl SimpleComponent for AboutDialog { "", "

Fixed

", @@ -120,6 +123,9 @@ impl SimpleComponent for AboutDialog { "", ].join("\n"),