Skip to content

Commit dd2fc15

Browse files
committed
Release 1.1.8
1 parent c13285c commit dd2fc15

4 files changed

Lines changed: 12 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [1.1.8] - 2025-12-23
8+
9+
### Changed
10+
11+
- Removed legacy Harmony patches for cursor methods not present in current game versions to reduce log noise.
12+
13+
---
14+
715
## [1.1.7] - 2025-12-23
816

917
### Added

StarControl/Patches/Patcher.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,24 +43,12 @@ public static void PatchAll(IManifest mod)
4343
prefix: new(typeof(GamePatches), nameof(GamePatches.DrawHud_Prefix)),
4444
postfix: new(typeof(GamePatches), nameof(GamePatches.DrawHud_Postfix))
4545
);
46-
TryPatch(
47-
harmony,
48-
typeof(Game1),
49-
"shouldDrawMouseCursor",
50-
postfix: new(typeof(InputPatches), nameof(InputPatches.ShouldDrawMouseCursor_Postfix))
51-
);
5246
TryPatch(
5347
harmony,
5448
typeof(Game1),
5549
"drawMouseCursor",
5650
prefix: new(typeof(InputPatches), nameof(InputPatches.DrawMouseCursor_Prefix))
5751
);
58-
TryPatch(
59-
harmony,
60-
typeof(Game1),
61-
"drawMouseCursorIgnoreAction",
62-
prefix: new(typeof(InputPatches), nameof(InputPatches.DrawMouseCursor_Prefix))
63-
);
6452
TryPatch(
6553
harmony,
6654
typeof(InputState),

StarControl/StarControl.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<PropertyGroup>
33
<AssemblyName>StarControl</AssemblyName>
44
<RootNamespace>StarControl</RootNamespace>
5-
<Version>1.1.7</Version>
6-
<AssemblyVersion>1.1.7.0</AssemblyVersion>
7-
<FileVersion>1.1.7.0</FileVersion>
5+
<Version>1.1.8</Version>
6+
<AssemblyVersion>1.1.8.0</AssemblyVersion>
7+
<FileVersion>1.1.8.0</FileVersion>
88
<ModFolderName>Star Control - CustomisationPlus</ModFolderName>
99
<TargetFramework>net6.0</TargetFramework>
1010
<LangVersion>Latest</LangVersion>

StarControl/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://smapi.io/schemas/manifest.json",
33
"Name": "Star Control - CustomisationPlus",
44
"Author": "nnnextra (forked from focustense)",
5-
"Version": "1.1.7",
5+
"Version": "1.1.8",
66
"Description": "Radial menus for toolbar, designed to be used with controllers",
77
"UniqueID": "focustense.StarControl",
88
"EntryDll": "StarControl.dll",

0 commit comments

Comments
 (0)