diff --git a/CHANGELOG.md b/CHANGELOG.md
index 54a366f6..2355f6fd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,13 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## [3.5.0]
+## [3.5.1] (hotfix) - 16.04.2023
+
+### Fixed
+
+- Fixed telemetry checking
+
+## [3.5.0] - 16.04.2023
### Added
@@ -185,7 +191,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-[unreleased]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.5.0...next
+[unreleased]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.5.1...next
+[3.5.1]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.5.0...3.5.1
[3.5.0]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.4.1...3.5.0
[3.4.1]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.4.0...3.4.1
[3.4.0]: https://github.com/an-anime-team/an-anime-game-launcher/compare/3.3.0...3.4.0
diff --git a/Cargo.lock b/Cargo.lock
index 5f7c0ad6..1a2f67e7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -65,7 +65,7 @@ dependencies = [
[[package]]
name = "anime-game-launcher"
-version = "3.5.0"
+version = "3.5.1"
dependencies = [
"anime-launcher-sdk",
"anyhow",
@@ -87,8 +87,8 @@ dependencies = [
[[package]]
name = "anime-launcher-sdk"
-version = "1.0.1"
-source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.0.1#1d56514b71da92b827ec4162975a12e4bf9b13fc"
+version = "1.0.2"
+source = "git+https://github.com/an-anime-team/anime-launcher-sdk?tag=1.0.2#979ca46f5b4ba8961b0effa4e35ba8f8069c9607"
dependencies = [
"anime-game-core",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index 16df4b42..2f008d7b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "anime-game-launcher"
-version = "3.5.0"
+version = "3.5.1"
description = "Anime Game launcher"
authors = ["Nikita Podvirnyy "]
license = "GPL-3.0"
@@ -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.0.1"
+tag = "1.0.2"
features = ["all", "genshin"]
# path = "../anime-launcher-sdk" # ! for dev purposes only
diff --git a/src/ui/about.rs b/src/ui/about.rs
index 33bae89d..37dcf422 100644
--- a/src/ui/about.rs
+++ b/src/ui/about.rs
@@ -82,18 +82,10 @@ impl SimpleComponent for AboutDialog {
set_release_notes_version: &APP_VERSION,
set_release_notes: &[
- "Added
",
+ "Fixed
",
"",
- "- Added game sandboxing feature
",
- "- Added debugger to wine tools
",
- "
",
-
- "Changed
",
-
- "",
- "- Removed fractions displaying in components downloading progress bar
",
- "- Moved to upgraded launcher SDK
",
+ "- Fixed telemetry checking
",
"
",
].join("\n"),