diff --git a/Source/Gameplay/AutoWatchEntity/HelperClasses.cs b/Source/Gameplay/AutoWatchEntity/HelperClasses.cs index e386b88..91591b5 100644 --- a/Source/Gameplay/AutoWatchEntity/HelperClasses.cs +++ b/Source/Gameplay/AutoWatchEntity/HelperClasses.cs @@ -1,10 +1,10 @@ using Celeste.Mod.TASHelper.Utils; using Microsoft.Xna.Framework; using Monocle; -using System.Security.Cryptography; +using System.Diagnostics; using System.Runtime.CompilerServices; +using System.Security.Cryptography; using System.Text; -using System.Diagnostics; namespace Celeste.Mod.TASHelper.Gameplay.AutoWatchEntity; @@ -301,7 +301,7 @@ public static string DashCodeFlagGetCurrentCode(string baseFlag, int length, Lev return string.Join(",", list); } } - + } internal static class CoroutineFinder { diff --git a/Source/Module/WhatsNew.cs b/Source/Module/WhatsNew.cs index 627d663..fa16f02 100644 --- a/Source/Module/WhatsNew.cs +++ b/Source/Module/WhatsNew.cs @@ -82,6 +82,7 @@ public static void CreateUpdateLog() { AddLog("2.0.9", "Feature: SubMenus support Mod Options' Search Box.", "Bugfix: Predictor results are not cleared after loadstate.", "Change: Don't initialize predictor unless necessary."); // note items inside submenus can't be fetched, coz they are not items of the main menu. AddLog("2.0.10", "Bugfix: Predictor results are not cleared after re-run the tas."); AddLog("2.0.11", "Rewrite some codes to be compatible with ghost mod."); + AddLog("2.0.12", "Feature: Auto-Watch now decrypts Auroras Hashed DashCode Trigger", "Support Stunning Helper's hazards. (thanks @trans_alexa)"); UpdateLogs.Sort((x, y) => new Version(y.Item1).CompareTo(new Version(x.Item1))); } diff --git a/everest.yaml b/everest.yaml index 13c385a..68caf01 100644 --- a/everest.yaml +++ b/everest.yaml @@ -1,5 +1,5 @@ - Name: TASHelper - Version: 2.0.11 + Version: 2.0.12 DLL: bin/Release/net7.0/TASHelper.dll Dependencies: - Name: EverestCore