mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-11-21 12:26:00 +03:00
commit
2c3559c0c5
4 changed files with 12 additions and 24 deletions
|
@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed `game.log` file overfilling at the start of the game
|
||||
- Fixed RAM filling with the buffered game logs
|
||||
- Fixed Discord RPC updates
|
||||
|
||||
## [3.10.2] - 19.07.2024
|
||||
|
||||
### Added
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -107,8 +107,8 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-launcher-sdk"
|
||||
version = "1.16.7"
|
||||
source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.16.7#4589c81c27693643f3f73f8be6878f8f97c282d4"
|
||||
version = "1.16.10"
|
||||
source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.16.10#0603733f2bd7efb38255e1d24f4a33e7137c88f3"
|
||||
dependencies = [
|
||||
"anime-game-core",
|
||||
"anyhow",
|
||||
|
|
|
@ -19,7 +19,7 @@ glib-build-tools = "0.20"
|
|||
|
||||
[dependencies.anime-launcher-sdk]
|
||||
git = "https://github.com/an-anime-team/anime-launcher-sdk"
|
||||
tag = "1.16.7"
|
||||
tag = "1.16.10"
|
||||
features = ["all", "genshin"]
|
||||
|
||||
# path = "../anime-launcher-sdk" # ! for dev purposes only
|
||||
|
|
|
@ -95,30 +95,12 @@ impl SimpleComponent for AboutDialog {
|
|||
|
||||
set_release_notes_version: &APP_VERSION,
|
||||
set_release_notes: &[
|
||||
"<p>Added</p>",
|
||||
|
||||
"<ul>",
|
||||
"<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>",
|
||||
"</ul>",
|
||||
|
||||
"<p>Fixed</p>",
|
||||
|
||||
"<ul>",
|
||||
"<li>Fixed \"dwebp\" package name for fedora during initial setup</li>",
|
||||
"</ul>",
|
||||
|
||||
"<p>Changed</p>",
|
||||
|
||||
"<ul>",
|
||||
"<li>Updated FPS unlocker version</li>",
|
||||
"<li>Changed background images processing logic</li>",
|
||||
"</ul>",
|
||||
|
||||
"<p>Removed</p>",
|
||||
|
||||
"<ul>",
|
||||
"<li>Removed \"xdelta3\" dependency</li>",
|
||||
"<li>Fixed \"game.log\" file overfilling at the start of the game</li>",
|
||||
"<li>Fixed RAM filling with the buffered game logs</li>",
|
||||
"<li>Fixed Discord RPC updates</li>",
|
||||
"</ul>"
|
||||
].join("\n"),
|
||||
|
||||
|
|
Loading…
Reference in a new issue