Skip to content

Commit

Permalink
11.6.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
floyzi committed Feb 21, 2025
1 parent 9a85c2c commit 6c5c8f8
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 12 deletions.
Binary file modified Lib/MT.FGClient.dll
Binary file not shown.
Binary file modified Lib/ParsingUtils_Runtime.dll
Binary file not shown.
Binary file modified Lib/TheMultiplayerGuys.FGCommon.dll
Binary file not shown.
Binary file modified Lib/TheMultiplayerGuys.Utility.dll
Binary file not shown.
Binary file modified Lib/mvvmbindings.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Src/GUI/GUI_Util.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class GUI_LogEntry

public class GUI_Util
{
const string BundleName = "not_fgtoolsgui";
const string BundleName = "not_fgtoolsGUI";

const string GitHub = "github.com/floyzi/FGToolsMobile/";
const string Discord = "discord.gg/PEysxvSE3x";
Expand Down
2 changes: 1 addition & 1 deletion Src/GUI/ToolsMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class ToolsMenu
public const string JumpYModifier = "JumpYModifier";
public const string Watermark = "Watermark";
public const string DiveSens = "DiveSens";
public const string DisableMonitorCheck = "DisableMonitorCheck";
public static string DisableMonitorCheck => "DisableMonitorCheck";
public const string ToFinish = "ToFinish";
public const string DisableAFK = "DisableAFK";
public const string GravityChange = "GravityChange";
Expand Down
9 changes: 1 addition & 8 deletions Src/Logic/InternalTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,12 @@ public static string FormatException(Exception ex)
return LocalizationManager.LocalizedString("generic_exception", [ex.Message, ex.StackTrace]);
}

public static string CleanStr(string strIN, bool rpcFormat = false)
public static string CleanStr(string strIN)
{
string strOUT = Regex.Replace(strIN, @"<.*?>|\t|\s{2,}", " ");
strOUT = Regex.Replace(strOUT, @"(?<=<) | (?=>)", "");
strOUT = strOUT.Trim();
strOUT = Regex.Replace(strOUT, @"\s+", " ");
if (rpcFormat)
{
string[] words = strOUT.Split(' ');
for (int i = 0; i < words.Length; i++)
words[i] = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(words[i].ToLower());
strOUT = string.Join(" ", words);
}
return strOUT;
}
}
Expand Down
2 changes: 1 addition & 1 deletion Src/Logic/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static class BuildInfo
public const string Description = "NOT FallGuys level loader by @floyzi102 on twitter";
public const string Author = "Floyzi";
public const string Company = null;
public const string Version = "1.0.0";
public const string Version = "1.0.1";
public const string DownloadLink = null;
}

Expand Down
2 changes: 1 addition & 1 deletion Src/NOTFGTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<ErrorReport>prompt</ErrorReport>
<DefineConstants>
</DefineConstants>
<WarningLevel>4</WarningLevel>
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Cheats|AnyCPU'">
<OutputPath>Output\</OutputPath>
Expand Down

0 comments on commit 6c5c8f8

Please sign in to comment.