mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-11-22 04:46:08 +03:00
1.0.0-rc2
From previous commits: - updated core library; this fixes getting available space on systems with lots of disks - added patch folder selection during initial setup - fixed error panicking when you're closing folder selection dialogue during initial setup - disabled mangohud if gamescope is enabled Reworked work with config file - now missing fields will be automatically filled; excess fields - removed. thanks to new code structure I can easily create new fields or rename old ones - improved `WineLang` enum; now launcher loads languages list dynamically from this enum so I can easily add support for new languages Initial setup changes - renamed "page_*" to some actual pages names - added voice packages selection page - made "Advanced" button working. It shows default paths selection page
This commit is contained in:
parent
bcdb0217ad
commit
7938da4b45
4 changed files with 29 additions and 2 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,3 +1,25 @@
|
|||
# 1.0.0-rc2
|
||||
|
||||
- updated core library;
|
||||
this fixes getting available space on systems with lots of disks
|
||||
- added patch folder selection during initial setup
|
||||
- fixed error panicking when you're closing folder selection dialogue
|
||||
during initial setup
|
||||
- disabled mangohud if gamescope is enabled
|
||||
|
||||
Reworked work with config file
|
||||
- now missing fields will be automatically filled;
|
||||
excess fields - removed.
|
||||
thanks to new code structure I can easily create
|
||||
new fields or rename old ones
|
||||
- improved `WineLang` enum; now launcher loads languages list dynamically
|
||||
from this enum so I can easily add support for new languages
|
||||
|
||||
Initial setup changes
|
||||
- renamed "page_*" to some actual pages names
|
||||
- added voice packages selection page
|
||||
- made "Advanced" button working. It shows default paths selection page
|
||||
|
||||
# 1.0.0-rc1
|
||||
|
||||
*(nothing changed)*
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -51,7 +51,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-game-launcher"
|
||||
version = "1.0.0-rc1"
|
||||
version = "1.0.0-rc2"
|
||||
dependencies = [
|
||||
"anime-game-core",
|
||||
"dirs",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "anime-game-launcher"
|
||||
version = "1.0.0-rc1"
|
||||
version = "1.0.0-rc2"
|
||||
description = "Anime Game launcher"
|
||||
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
|
||||
license = "GPL-3.0"
|
||||
|
|
|
@ -107,6 +107,11 @@ impl AppWidgets {
|
|||
"@nightany https://pinterest.com/pin/356206651788051017"
|
||||
]);
|
||||
|
||||
result.about.add_credit_section("An Anime Team", &[
|
||||
"@Marie https://gitlab.com/Maroxy",
|
||||
"@lane https://gitlab.com/lane__"
|
||||
]);
|
||||
|
||||
let curl_info = anime_game_core::curl_sys::Version::get();
|
||||
|
||||
result.about.set_system_information(Some(&[
|
||||
|
|
Loading…
Reference in a new issue