From 9d7729640e5e316fc8e7c51c22eb86e24b49a0f6 Mon Sep 17 00:00:00 2001 From: Benedict Etzel Date: Thu, 29 Aug 2024 20:14:24 +0200 Subject: [PATCH] v1.31.5 --- CHANGELOG.md | 2 +- Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj | 4 ++-- Hearthstone Deck Tracker/Utility/ConfigManager.cs | 6 +++++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 509bc9f7d..d13e47bd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## **Release v1.31.4 - 2024-08-29** +## **Release v1.31.5 - 2024-08-29** **Updated for Hearthstone 30.2.2** **Overlay**: diff --git a/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj b/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj index 0a4181207..826063f6c 100644 --- a/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj +++ b/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj @@ -11,8 +11,8 @@ en Hearthstone Deck Tracker Copyright © HearthSim 2024 - 1.31.4 - 1.31.4 + 1.31.5 + 1.31.5 true x86 x86 diff --git a/Hearthstone Deck Tracker/Utility/ConfigManager.cs b/Hearthstone Deck Tracker/Utility/ConfigManager.cs index aaacff614..d122744b6 100644 --- a/Hearthstone Deck Tracker/Utility/ConfigManager.cs +++ b/Hearthstone Deck Tracker/Utility/ConfigManager.cs @@ -37,7 +37,11 @@ public static void Run() } // Logic to silently skip hotfix releases to fix some regressions that players haven't noticed yet - private static readonly (Version, Version)[] SilentUpgrades = { (new(1, 31, 2), new(1, 31, 3)) }; + private static readonly (Version, Version)[] SilentUpgrades = + { + (new(1, 31, 2), new(1, 31, 3)), + (new(1, 31, 4), new(1, 31, 5)) + }; public static bool ShouldShowUpdateNotes() { if(UpdatedVersion == null)