mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-03-15 14:38:29 +03:00
feat: updated changelog
This commit is contained in:
parent
747c7e3d65
commit
69bd93bd5e
2 changed files with 14 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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 {
|
|||
|
||||
"<ul>",
|
||||
"<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>",
|
||||
|
||||
"<p>Fixed</p>",
|
||||
|
@ -120,6 +123,9 @@ impl SimpleComponent for AboutDialog {
|
|||
|
||||
"<ul>",
|
||||
"<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>",
|
||||
].join("\n"),
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue