Skip to content

Commit d64de4d

Browse files
committed
fixed a small typo
1 parent 5875d34 commit d64de4d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

new/AutoItInterpreter/AssemblyInfo.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

22
//////////////////////////////////////////////////////////////////////////
3-
// Auto-generated 2021-03-15 01:03:01.683 //
3+
// Auto-generated 2021-03-15 19:33:47.314 //
44
// ANY CHANGES TO THIS DOCUMENT WILL BE LOST UPON RE-GENERATION //
55
//////////////////////////////////////////////////////////////////////////
66

77
using System.Reflection;
88
using System;
99

10-
[assembly: AssemblyVersion("0.8.1765.7550")]
11-
[assembly: AssemblyFileVersion("0.8.1765.7550")]
12-
[assembly: AssemblyInformationalVersion("v.0.8.1765.7550, commit: 7dd57240b9cd34d27c6738167cf89eaad7096b25")]
10+
[assembly: AssemblyVersion("0.8.1802.7550")]
11+
[assembly: AssemblyFileVersion("0.8.1802.7550")]
12+
[assembly: AssemblyInformationalVersion("v.0.8.1802.7550, commit: 2537a6166da588f6128ebd9f52fab1114a916cc7")]
1313
[assembly: AssemblyCompany("Unknown6656")]
1414
[assembly: AssemblyCopyright("Copyright © 2018 - 2021, Unknown6656")]
1515
[assembly: AssemblyProduct("AutoIt-Interpreter by Unknown6656")]
@@ -35,11 +35,11 @@ public static class __module__
3535
/// <summary>
3636
/// The interpreter's current version.
3737
/// </summary>
38-
public static Version? InterpreterVersion { get; } = Version.Parse("0.8.1765.7550");
38+
public static Version? InterpreterVersion { get; } = Version.Parse("0.8.1802.7550");
3939
/// <summary>
4040
/// The Git hash associated with the current build.
4141
/// </summary>
42-
public const string GitHash = "7dd57240b9cd34d27c6738167cf89eaad7096b25";
42+
public const string GitHash = "2537a6166da588f6128ebd9f52fab1114a916cc7";
4343
/// <summary>
4444
/// The name of the GitHub repository associated with <see cref="RepositoryURL"/>.
4545
/// </summary>
@@ -49,7 +49,7 @@ public static class __module__
4949
/// </summary>
5050
public const string RepositoryURL = "https://github.com/Unknown6656/AutoIt-Interpreter";
5151
/// <summary>
52-
/// The date and time of the current build (2021-03-15 01:03:01.683).
52+
/// The date and time of the current build (2021-03-15 19:33:47.314).
5353
/// </summary>
54-
public static DateTime DateBuilt { get; } = DateTime.FromFileTimeUtc(0x01d7192e90a801deL);
54+
public static DateTime DateBuilt { get; } = DateTime.FromFileTimeUtc(0x01d719c9bc8c3a13L);
5555
}

new/AutoItInterpreter/lang/lang-en.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ strings:
192192
thread_already_running: "The thread 0x{0:x4} is already executing a function."
193193
too_many_args: "The function '{0}' expects at a maximum of {1} arguments, however, {2} arguments were given."
194194
too_many_array_items: "Array declaration '{0}' has too many items: The array was constrained to a size of {1} item(s), however, {2} array items have been specified during initialization."
195-
undeclared_variable: "The variable '{0}' has not been declared previously to this line and can therefore not be used in this expression."
195+
undeclared_variable: "The variable '{0}' has not been declared prior to this line and can therefore not be used in this expression."
196196
unexpected_case: "Unexpected 'Case'-statement outside a 'Switch'- or 'Select'-block."
197197
unexpected_close: "Unexpected statement '{0}': A '{1}'-statement must be opened before it can be closed."
198198
unexpected_continuecase: "Unexpected 'ContinueCase'-statement outside a 'Switch'- or 'Select'-block."

new/AutoItInterpreter/version.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
0.8.1765.7550
2-
7dd57240b9cd34d27c6738167cf89eaad7096b25
1+
0.8.1802.7550
2+
2537a6166da588f6128ebd9f52fab1114a916cc7

0 commit comments

Comments
 (0)