Skip to content

Commit

Permalink
Merge pull request #40 from KSP2Community/dev
Browse files Browse the repository at this point in the history
0.11.1 Hotfix
  • Loading branch information
cheese3660 authored Feb 21, 2024
2 parents 40515c0 + 1070fae commit 98fae07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin_template/swinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Patch Manager",
"description": "A mod for generic patching needs similar to KSP 1's Module Manager.",
"source": "https://github.com/KSP2Community/PatchManager",
"version": "0.11.0",
"version": "0.11.1",
"version_check": "https://raw.githubusercontent.com/KSP2Community/PatchManager/main/plugin_template/swinfo.json",
"ksp2_version": {
"min": "0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/PatchManager.SassyPatching/Utility/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static Coordinate GetCoordinate(this ParserRuleContext @this) =>
new(@this.Start.TokenSource.SourceName, @this.Start.Line, @this.Start.Column);

public static bool MatchesPattern(this string @this, string pattern) =>
Regex.IsMatch(@this, pattern.Replace("*", ".*").Replace("?", ".?"));
Regex.IsMatch(@this, $"^{pattern.Replace("*", ".*").Replace("?", ".?")}$");

public static string Escape(this string @this) => JsonConvert.ToString(@this);

Expand Down

0 comments on commit 98fae07

Please sign in to comment.