mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-04-03 15:33:28 +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]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed game launching on installs without `launcher.bat` file
|
||||||
|
|
||||||
## [3.7.5] - 14.07.2023
|
## [3.7.5] - 14.07.2023
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -87,8 +87,8 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anime-launcher-sdk"
|
name = "anime-launcher-sdk"
|
||||||
version = "1.8.5"
|
version = "1.8.6"
|
||||||
source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.8.5#cedb6f05b5749c3143a235a92ba78c458c4934a8"
|
source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.8.6#2740eae5b5832b371e2a2919e33c0decfbe6b8a1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anime-game-core",
|
"anime-game-core",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -17,7 +17,7 @@ glib-build-tools = "0.17"
|
||||||
|
|
||||||
[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.8.5"
|
tag = "1.8.6"
|
||||||
features = ["all", "genshin", "genshin-patch"]
|
features = ["all", "genshin", "genshin-patch"]
|
||||||
|
|
||||||
# path = "../anime-launcher-sdk" # ! for dev purposes only
|
# 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_version: &APP_VERSION,
|
||||||
set_release_notes: &[
|
set_release_notes: &[
|
||||||
"<p>Added</p>",
|
|
||||||
|
|
||||||
"<ul>",
|
|
||||||
"<li>Added support to the new wishes url cache location</li>",
|
|
||||||
"</ul>",
|
|
||||||
|
|
||||||
"<p>Fixed</p>",
|
"<p>Fixed</p>",
|
||||||
|
|
||||||
"<ul>",
|
"<ul>",
|
||||||
"<li>Fixed telemetry disabling</li>",
|
"<li>Fixed game launching on installs without `launcher.bat` file</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>",
|
|
||||||
"</ul>",
|
"</ul>",
|
||||||
].join("\n"),
|
].join("\n"),
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue