mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-03-15 14:38:29 +03:00
3.1.4
This commit is contained in:
parent
095966d451
commit
58743eca04
6 changed files with 12 additions and 24 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -5,19 +5,11 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [3.1.3]
|
||||
|
||||
### Added
|
||||
|
||||
- Added Spanish translations
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed compatibility with GE-Proton
|
||||
## [3.1.4]
|
||||
|
||||
### Changed
|
||||
|
||||
- Improved components downloading in initial setup
|
||||
- Removed commit hash from core/SDK versions in about window
|
||||
|
||||
## [3.1.2]
|
||||
|
||||
|
@ -80,7 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
<br>
|
||||
|
||||
[unreleased]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.1.3...HEAD
|
||||
[unreleased]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.1.4...HEAD
|
||||
[3.1.4]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.1.3...3.1.4
|
||||
[3.1.3]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.1.2...3.1.3
|
||||
[3.1.2]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.1.1...3.1.2
|
||||
[3.1.1]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.1.0...3.1.1
|
||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -31,7 +31,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-game-core"
|
||||
version = "1.3.11"
|
||||
version = "1.3.12"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bzip2",
|
||||
|
@ -54,7 +54,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-game-launcher"
|
||||
version = "3.1.3"
|
||||
version = "3.1.4"
|
||||
dependencies = [
|
||||
"anime-launcher-sdk",
|
||||
"anyhow",
|
||||
|
@ -76,7 +76,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "anime-launcher-sdk"
|
||||
version = "0.3.5"
|
||||
version = "0.3.6"
|
||||
dependencies = [
|
||||
"anime-game-core",
|
||||
"anyhow",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "anime-game-launcher"
|
||||
version = "3.1.3"
|
||||
version = "3.1.4"
|
||||
description = "Anime Game launcher"
|
||||
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
|
||||
license = "GPL-3.0"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 6bf720a1571ff7462e09e7ca2c0145d07933e3e4
|
||||
Subproject commit f6daddc4bc93e73384c4d6d6c9fc6f58598eba61
|
|
@ -2,14 +2,10 @@ use relm4::prelude::*;
|
|||
|
||||
use gtk::prelude::*;
|
||||
|
||||
use anime_launcher_sdk::{
|
||||
VERSION as SDK_VERSION,
|
||||
COMMIT_HASH as SDK_COMMIT_HASH
|
||||
};
|
||||
use anime_launcher_sdk::VERSION as SDK_VERSION;
|
||||
|
||||
use anime_launcher_sdk::anime_game_core::{
|
||||
VERSION as CORE_VERSION,
|
||||
COMMIT_HASH as CORE_COMMIT_HASH,
|
||||
curl_sys
|
||||
};
|
||||
|
||||
|
@ -80,8 +76,8 @@ impl SimpleComponent for AboutDialog {
|
|||
].join("\n"),
|
||||
|
||||
set_debug_info: &[
|
||||
format!("Anime Launcher SDK: {SDK_VERSION}-{}", &SDK_COMMIT_HASH[..6]),
|
||||
format!("Anime Game Core: {CORE_VERSION}-{}", &CORE_COMMIT_HASH[..6]),
|
||||
format!("Anime Launcher SDK: {SDK_VERSION}"),
|
||||
format!("Anime Game Core: {CORE_VERSION}"),
|
||||
String::new(),
|
||||
format!("curl: {}", CURL_INFO.version()),
|
||||
format!("SSL: {}", CURL_INFO.ssl_version().unwrap_or("?")),
|
||||
|
|
|
@ -552,7 +552,6 @@ impl SimpleAsyncComponent for GeneralApp {
|
|||
download_folder: CONFIG.game.wine.builds.clone(),
|
||||
groups: wine::get_groups(&CONFIG.components.path).unwrap_or_default()
|
||||
.into_iter()
|
||||
.filter(|group| !["wine-staging", "wine-staging-tkg"].contains(&group.name.as_str()))
|
||||
.map(|mut group| {
|
||||
group.versions = group.versions.into_iter().take(12).collect();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue