feat: updated changelog

This commit is contained in:
Observer KRypt0n_ 2023-08-01 13:03:32 +02:00
parent 747c7e3d65
commit 69bd93bd5e
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2
2 changed files with 14 additions and 2 deletions

View file

@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Added new gamescope version compatibility - 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 ### Fixed
@ -18,6 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved pre-downloads state checking - 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 ## [3.7.6] - 15.07.2023

View file

@ -96,10 +96,10 @@ impl SimpleComponent for AboutDialog {
format!("Anime Launcher SDK: {SDK_VERSION}"), format!("Anime Launcher SDK: {SDK_VERSION}"),
format!("Anime Game Core: {CORE_VERSION}"), format!("Anime Game Core: {CORE_VERSION}"),
String::new(), 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!("libadwaita: {}.{}.{}", adw::major_version(), adw::minor_version(), adw::micro_version()),
format!("pango: {}", gtk::pango::version_string()), format!("pango: {}", gtk::pango::version_string()),
format!("cairo: {}", gtk::cairo::version_string()), format!("cairo: {}", gtk::cairo::version_string())
].join("\n"), ].join("\n"),
set_release_notes_version: &APP_VERSION, set_release_notes_version: &APP_VERSION,
@ -108,6 +108,9 @@ impl SimpleComponent for AboutDialog {
"<ul>", "<ul>",
"<li>Added new gamescope version compatibility</li>", "<li>Added new gamescope version compatibility</li>",
"<li>Added \"launcher behavior\" option</li>",
"<li>Added \"kill game process\" button when chosen behavior keeps launcher window open</li>",
"<li>Bundled some icons into the app for consistency across the systems</li>",
"</ul>", "</ul>",
"<p>Fixed</p>", "<p>Fixed</p>",
@ -120,6 +123,9 @@ impl SimpleComponent for AboutDialog {
"<ul>", "<ul>",
"<li>Improved pre-downloads state checking</li>", "<li>Improved pre-downloads state checking</li>",
"<li>Replaced translation functions by `tr!` macro</li>",
"<li>Reworked app resources structure</li>",
"<li>Improved game running status check (wasn't working properly with Chinese client)</li>",
"</ul>", "</ul>",
].join("\n"), ].join("\n"),