Skip to content

Commit 67fe6d8

Browse files
v2.4.1 : Fixed Font Error
1 parent 13159fd commit 67fe6d8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

EZCode/EZCode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class EzCode
2323
/// <summary>
2424
/// Directory of the script playing
2525
/// </summary>
26-
public static string Version { get; } = "2.4.0";
26+
public static string Version { get; } = "2.4.1";
2727

2828
#region Variables_and_Initializers
2929
/// <summary>
@@ -4694,7 +4694,7 @@ async Task<Control> Change(Control _control, string[] _parts, int index, bool te
46944694
}
46954695
catch
46964696
{
4697-
ErrorText(parts, ErrorTypes.custom, custom: $"Expected a number greater greater than zero for font size value");
4697+
ErrorText(parts, ErrorTypes.custom, custom: $"Expected a number greater greater than zero for font size value", id: "ex26");
46984698
}
46994699
if (Enum.TryParse(char.ToUpper(seperator[2][0]) + seperator[2].Substring(1).ToLower(), out FontStyle parsedFontStyle))
47004700
{

EZCode/EZCode.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<Title>EZCode WinForms Programming Language</Title>
8-
<Version>2.4.0</Version>
8+
<Version>2.4.1</Version>
99
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1010
<Description>EZCode is a easy to ue programming language for WinForms and can help speed up your development process. Go to https://ez-code.web.app</Description>
1111
<Copyright>Copyright © 2023</Copyright>

0 commit comments

Comments
 (0)