mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2024-11-22 04:40:06 +03:00
fix: fixed game launching on installs without launcher.bat
file
This commit is contained in:
parent
ac566f5ef2
commit
51e992d24d
4 changed files with 8 additions and 23 deletions
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed game launching on installs without `launcher.bat` file
|
||||
|
||||
## [3.7.5] - 14.07.2023
|
||||
|
||||
### Added
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -87,8 +87,8 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-launcher-sdk"
|
||||
version = "1.8.5"
|
||||
source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.8.5#cedb6f05b5749c3143a235a92ba78c458c4934a8"
|
||||
version = "1.8.6"
|
||||
source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.8.6#2740eae5b5832b371e2a2919e33c0decfbe6b8a1"
|
||||
dependencies = [
|
||||
"anime-game-core",
|
||||
"anyhow",
|
||||
|
|
|
@ -17,7 +17,7 @@ glib-build-tools = "0.17"
|
|||
|
||||
[dependencies.anime-launcher-sdk]
|
||||
git = "https://github.com/an-anime-team/anime-launcher-sdk"
|
||||
tag = "1.8.5"
|
||||
tag = "1.8.6"
|
||||
features = ["all", "genshin", "genshin-patch"]
|
||||
|
||||
# path = "../anime-launcher-sdk" # ! for dev purposes only
|
||||
|
|
|
@ -104,29 +104,10 @@ impl SimpleComponent for AboutDialog {
|
|||
|
||||
set_release_notes_version: &APP_VERSION,
|
||||
set_release_notes: &[
|
||||
"<p>Added</p>",
|
||||
|
||||
"<ul>",
|
||||
"<li>Added support to the new wishes url cache location</li>",
|
||||
"</ul>",
|
||||
|
||||
"<p>Fixed</p>",
|
||||
|
||||
"<ul>",
|
||||
"<li>Fixed telemetry disabling</li>",
|
||||
"</ul>",
|
||||
|
||||
"<p>Changed</p>",
|
||||
|
||||
"<ul>",
|
||||
"<li>Updated Italian</li>",
|
||||
"<li>Updated Hungarian</li>",
|
||||
"<li>Updated Japanese</li>",
|
||||
"<li>Updated Indonesian</li>",
|
||||
"<li>Updated Spanish</li>",
|
||||
"<li>Updated Turkish</li>",
|
||||
"<li>Updated Chinese</li>",
|
||||
"<li>Disabled patch applying for new installations</li>",
|
||||
"<li>Fixed game launching on installs without `launcher.bat` file</li>",
|
||||
"</ul>",
|
||||
].join("\n"),
|
||||
|
||||
|
|
Loading…
Reference in a new issue