We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5e1938 commit b07627bCopy full SHA for b07627b
2 files changed
EZCode/EZCode.cs
@@ -24,7 +24,7 @@ public class EzCode
24
/// <summary>
25
/// Directory of the script playing
26
/// </summary>
27
- public static string Version { get; } = "2.1.6";
+ public static string Version { get; } = "2.1.7";
28
29
/// The Official EZCode Icon
30
Installer/Install.cs
@@ -42,7 +42,7 @@ public static void DownloadMain()
42
try
43
{
44
string type = "";
45
- string realTag = "2.0.2";
+ string realTag = $"{EZCode.EzCode.Version}";
46
string releaseTag = type != "" ? $"v{realTag}_{type.ToLower()}" : $"v{realTag}";
47
string releaseTitle = type != "" ? $"v{realTag}_{type}" : $"v{realTag}";
48
0 commit comments