Skip to content

Commit

Permalink
3.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
krypt0nn committed Jun 19, 2023
1 parent 3eb7421 commit 67ba65a
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 33 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.7.4] (hotfix) - 19.06.2023

### Fixed

- Fixed main patch applying

## [3.7.3] - 18.06.2023

### Added
Expand Down Expand Up @@ -317,7 +323,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.7.3...next
[unreleased]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.7.4...next
[3.7.4]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.7.3...3.7.4
[3.7.3]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.7.2...3.7.3
[3.7.2]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.7.1...3.7.2
[3.7.1]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.7.0...3.7.1
Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "anime-game-launcher"
version = "3.7.3"
version = "3.7.4"
description = "Anime Game launcher"
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
license = "GPL-3.0"
Expand All @@ -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.2"
tag = "1.8.4"
features = ["all", "genshin", "genshin-patch"]

# path = "../anime-launcher-sdk" # ! for dev purposes only
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ lazy_static::lazy_static! {
/// Path to `debug.log` file. Standard is `$HOME/.local/share/anime-game-launcher/debug.log`
pub static ref DEBUG_FILE: PathBuf = LAUNCHER_FOLDER.join("debug.log");

/// Path to `background` file. Standard is `$HOME/.cache/anime-game-launcher/background`
/// Path to `background` file. Standard is `$HOME/.local/share/anime-game-launcher/background`
pub static ref BACKGROUND_FILE: PathBuf = LAUNCHER_FOLDER.join("background");

/// Path to `.keep-background` file. Used to mark launcher that it shouldn't update background picture
Expand Down
12 changes: 2 additions & 10 deletions src/ui/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,10 @@ impl SimpleComponent for AboutDialog {

set_release_notes_version: &APP_VERSION,
set_release_notes: &[
"<p>Added</p>",
"<p>Fixed</p>",

"<ul>",
"<li>Added telemetry disabling state support</li>",
"<li>Added Discord RPC icons updating</li>",
"</ul>",

"<p>Changed</p>",

"<ul>",
"<li>Replaced xlua patch by \"disable mhypbase\" option</li>",
"<li>Returned back old background file path</li>",
"<li>Fixed main patch applying</li>",
"</ul>",
].join("\n"),

Expand Down

0 comments on commit 67ba65a

Please sign in to comment.