mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-02-16 07:11:26 +03:00
1.2.4
- updated components and the core library; fixed issue with an error message when the game's folder is empty From previous commits: - added new options to the fps unlocker
This commit is contained in:
parent
7d91714d30
commit
da37ea2103
5 changed files with 39 additions and 12 deletions
|
@ -1,3 +1,11 @@
|
|||
# 1.2.4
|
||||
|
||||
- updated components and the core library;
|
||||
fixed issue with an error message when the game's folder is empty
|
||||
|
||||
From previous commits:
|
||||
- added new options to the fps unlocker
|
||||
|
||||
# 1.2.3 (bugfix)
|
||||
|
||||
- fixed dxvk 2.0 version identification
|
||||
|
|
35
Cargo.lock
generated
35
Cargo.lock
generated
|
@ -31,11 +31,11 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-game-core"
|
||||
version = "1.3.1"
|
||||
version = "1.3.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bzip2",
|
||||
"cached",
|
||||
"cached 0.40.0",
|
||||
"curl",
|
||||
"flate2",
|
||||
"fs_extra",
|
||||
|
@ -52,11 +52,11 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-game-launcher"
|
||||
version = "1.2.3"
|
||||
version = "1.2.4"
|
||||
dependencies = [
|
||||
"anime-game-core",
|
||||
"anyhow",
|
||||
"cached",
|
||||
"cached 0.41.0",
|
||||
"dirs",
|
||||
"glib-build-tools",
|
||||
"gtk4",
|
||||
|
@ -286,6 +286,25 @@ dependencies = [
|
|||
"tokio",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cached"
|
||||
version = "0.41.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ec6d20b3d24b6c74e2c5331d2d3d8d1976a9883c7da179aa851afa4c90d62e36"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"async_once",
|
||||
"cached_proc_macro",
|
||||
"cached_proc_macro_types",
|
||||
"futures",
|
||||
"hashbrown",
|
||||
"instant",
|
||||
"lazy_static",
|
||||
"once_cell",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cached_proc_macro"
|
||||
version = "0.15.0"
|
||||
|
@ -1278,9 +1297,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ntapi"
|
||||
version = "0.3.7"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
|
||||
checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc"
|
||||
dependencies = [
|
||||
"winapi",
|
||||
]
|
||||
|
@ -1958,9 +1977,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "sysinfo"
|
||||
version = "0.26.1"
|
||||
version = "0.27.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "621609553b14bca49448b3c97e625d7187980cc2a42fd169b4c3b306dcc4a7e9"
|
||||
checksum = "ccb297c0afb439440834b4bcf02c5c9da8ec2e808e70f36b0d8e815ff403bd24"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"core-foundation-sys",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "anime-game-launcher"
|
||||
version = "1.2.3"
|
||||
version = "1.2.4"
|
||||
description = "Anime Game launcher"
|
||||
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
|
||||
license = "GPL-3.0"
|
||||
|
@ -31,4 +31,4 @@ wait_not_await = "0.2.1"
|
|||
lazy_static = "1.4.0"
|
||||
anyhow = "1.0"
|
||||
md5 = "0.7"
|
||||
cached = { version = "0.40", features = ["proc_macro"] }
|
||||
cached = { version = "0.41", features = ["proc_macro"] }
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 12daa5b81916f4a9cd34e68d8347a64459aeac3f
|
||||
Subproject commit ea02d1c482da9701f4a5517f05e3e2ad68b71295
|
|
@ -1 +1 @@
|
|||
Subproject commit 66d33ab5309335678ba5568561fba66919894e11
|
||||
Subproject commit 5580f7be0fbdfba677ec32b2fd7d11cb762edebf
|
Loading…
Add table
Reference in a new issue