Skip to content

Commit 8b7e2f1

Browse files
committed
v1.9.7 release
1 parent 9148be0 commit 8b7e2f1

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Source/Module/Menu/TASHelperMenu.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,8 @@ private static EaseInSubMenu CreateMoreOptionsSubMenu(TextMenu menu) {
195195
subMenu.Add(new TextMenu.OnOff("Open Console In Tas".ToDialogText(), TasHelperSettings.EnableOpenConsoleInTas).Change(value => TasHelperSettings.EnableOpenConsoleInTas = value));
196196
subMenu.Add(new TextMenu.OnOff("Scrollable History Log".ToDialogText(), TasHelperSettings.EnableScrollableHistoryLog).Change(value => TasHelperSettings.EnableScrollableHistoryLog = value));
197197
TextMenu.Item betterInvincible;
198-
subMenu.Add(betterInvincible = new TextMenu.OnOff("Better Invincibility".ToDialogText(), TasHelperSettings.BetterInvincible).Change(value => { TasHelperSettings.BetterInvincible = value;
198+
subMenu.Add(betterInvincible = new TextMenu.OnOff("Better Invincibility".ToDialogText(), TasHelperSettings.BetterInvincible).Change(value => {
199+
TasHelperSettings.BetterInvincible = value;
199200
BetterInvincible.Invincible = false; // in case that value doesn't get reset for some unknown reason... yeah i have such bug report
200201
}));
201202
subMenu.AddDescription(menu, betterInvincible, "Better Invincible Description".ToDialogText());

Source/Module/WhatsNew.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public static void CreateUpdateLog() {
6161
AddLog("1.9.4", "MovementOvershootAssistant now supports Inverted Gravity and DreamTunnelDashState.");
6262
AddLog("1.9.5", "Support GhostModForTas.");
6363
AddLog("1.9.6", "Cassette Block Helper supports QuantumMechanics mod cassette blocks.");
64+
AddLog("1.9.7", "Some daily maintenance.");
6465
UpdateLogs.Sort((x, y) => new Version(y.Item1).CompareTo(new Version(x.Item1)));
6566
}
6667

everest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- Name: TASHelper
2-
Version: 1.9.6
2+
Version: 1.9.7
33
DLL: bin/Release/net4.5.2/TASHelper.dll
44
Dependencies:
55
- Name: Everest

0 commit comments

Comments
 (0)