Skip to content

Commit 92e909c

Browse files
committed
2.1.1 release
1 parent 204a709 commit 92e909c

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

Source/Gameplay/CustomInfoHelper.cs

+8-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ public static string Cutscene {
3333

3434
public static Microsoft.Xna.Framework.Input.Buttons GamePadPreviousState => GamePadData.PreviousState.Buttons.buttons;
3535

36-
public static Microsoft.Xna.Framework.Input.Buttons GamePadCurrentState => GamePadData.CurrentState.Buttons.buttons;
36+
public static Microsoft.Xna.Framework.Input.Buttons GamePadCurrentState => GamePadData.CurrentState.Buttons.buttons;
37+
38+
/*
39+
* crashes due to CelesteTAS renaming, so just hide them
3740
public static Vector2 MouseState => MouseButtons.Position;
3841
public static Vector2 MouseCursorPos => Vector2.Transform(new Vector2(MouseState.X, MouseState.Y), Matrix.Invert(Engine.ScreenMatrix));
3942
@@ -48,14 +51,16 @@ public static Vector2 TASMouseCursorPos {
4851
typeof(CenterCamera).GetMethodInfo("CenterTheCamera").Invoke(null, parameterless);
4952
return mouseScreenPosition / 6f;
5053
}
51-
}
54+
}
55+
*/
56+
5257
// sadly, Studio currently only support 320 * 180 (for sync consideration), though we can actually do much more beyond this
5358

5459
/*
5560
* GameInfo.Update(..) is called in Scene.AfterUpdate() (or in FreezeFrames), so string CustomInfo is not dynamically updated like InfoMouse in a single frame.
5661
* have to manually update CustomInfo (e.g. Right Click) if you add it to CustomInfo
5762
*/
58-
63+
5964

6065
public static float PlayerIntPositionX {
6166
get => playerInstance?.X ?? 0;

Source/Module/WhatsNew.cs

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public static void CreateUpdateLog() {
8686
AddLog("2.0.13", "Feature: Auto-Watch supports SwitchGate.");
8787
AddLog("2.0.14", "Feature: Add Spinner Drift Speed (in Hazard Countdown). (thanks @trans_alexa)", "Bugfix: Simplified Spinner doesn't handle old versions of XaphanHelper properly, and crash with latest XaphanHelper.");
8888
AddLog("2.1.0", "Remove: SimplifiedTrigger merges into CelesteTAS.", "Remove: BetterInvincible merges into CelesteTAS.", "Remove: OpenConsoleInTas merges into CelesteTAS.", "Remove: Scrollable Console temporarily removed.", "Refactor: Coz CelesteTAS refactors quite a lot.");
89+
AddLog("2.1.1", "Bugfix: fix a bug caused by CelesteTAS refactor.");
8990
UpdateLogs.Sort((x, y) => new Version(y.Item1).CompareTo(new Version(x.Item1)));
9091
}
9192

everest.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
- Name: TASHelper
2-
Version: 2.1.0
2+
Version: 2.1.1
33
DLL: bin/Release/net7.0/TASHelper.dll
44
Dependencies:
55
- Name: EverestCore
66
Version: 1.5034.0
77
- Name: CelesteTAS
8-
Version: 3.42.0
8+
Version: 3.43.1
99
- Name: SpeedrunTool
10-
Version: 3.20.0
10+
Version: 3.24.0

0 commit comments

Comments
 (0)