Merge pull request #404 from an-anime-team/next

Release 3.10.3
This commit is contained in:
Observer KRypt0n_ 2024-07-21 09:33:16 +02:00 committed by GitHub
commit 2c3559c0c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 24 deletions

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [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 ## [3.10.2] - 19.07.2024
### Added ### Added

4
Cargo.lock generated
View file

@ -107,8 +107,8 @@ dependencies = [
[[package]] [[package]]
name = "anime-launcher-sdk" name = "anime-launcher-sdk"
version = "1.16.7" version = "1.16.10"
source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.16.7#4589c81c27693643f3f73f8be6878f8f97c282d4" source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.16.10#0603733f2bd7efb38255e1d24f4a33e7137c88f3"
dependencies = [ dependencies = [
"anime-game-core", "anime-game-core",
"anyhow", "anyhow",

View file

@ -19,7 +19,7 @@ glib-build-tools = "0.20"
[dependencies.anime-launcher-sdk] [dependencies.anime-launcher-sdk]
git = "https://github.com/an-anime-team/anime-launcher-sdk" git = "https://github.com/an-anime-team/anime-launcher-sdk"
tag = "1.16.7" tag = "1.16.10"
features = ["all", "genshin"] features = ["all", "genshin"]
# path = "../anime-launcher-sdk" # ! for dev purposes only # path = "../anime-launcher-sdk" # ! for dev purposes only

View file

@ -95,30 +95,12 @@ impl SimpleComponent for AboutDialog {
set_release_notes_version: &APP_VERSION, set_release_notes_version: &APP_VERSION,
set_release_notes: &[ 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>", "<p>Fixed</p>",
"<ul>", "<ul>",
"<li>Fixed \"dwebp\" package name for fedora during initial setup</li>", "<li>Fixed \"game.log\" file overfilling at the start of the game</li>",
"</ul>", "<li>Fixed RAM filling with the buffered game logs</li>",
"<li>Fixed Discord RPC updates</li>",
"<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>",
"</ul>" "</ul>"
].join("\n"), ].join("\n"),