Skip to content

Commit

Permalink
fixed a small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown6656 committed Mar 15, 2021
1 parent 5875d34 commit d64de4d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions new/AutoItInterpreter/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

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

using System.Reflection;
using System;

[assembly: AssemblyVersion("0.8.1765.7550")]
[assembly: AssemblyFileVersion("0.8.1765.7550")]
[assembly: AssemblyInformationalVersion("v.0.8.1765.7550, commit: 7dd57240b9cd34d27c6738167cf89eaad7096b25")]
[assembly: AssemblyVersion("0.8.1802.7550")]
[assembly: AssemblyFileVersion("0.8.1802.7550")]
[assembly: AssemblyInformationalVersion("v.0.8.1802.7550, commit: 2537a6166da588f6128ebd9f52fab1114a916cc7")]
[assembly: AssemblyCompany("Unknown6656")]
[assembly: AssemblyCopyright("Copyright © 2018 - 2021, Unknown6656")]
[assembly: AssemblyProduct("AutoIt-Interpreter by Unknown6656")]
Expand All @@ -35,11 +35,11 @@ public static class __module__
/// <summary>
/// The interpreter's current version.
/// </summary>
public static Version? InterpreterVersion { get; } = Version.Parse("0.8.1765.7550");
public static Version? InterpreterVersion { get; } = Version.Parse("0.8.1802.7550");
/// <summary>
/// The Git hash associated with the current build.
/// </summary>
public const string GitHash = "7dd57240b9cd34d27c6738167cf89eaad7096b25";
public const string GitHash = "2537a6166da588f6128ebd9f52fab1114a916cc7";
/// <summary>
/// The name of the GitHub repository associated with <see cref="RepositoryURL"/>.
/// </summary>
Expand All @@ -49,7 +49,7 @@ public static class __module__
/// </summary>
public const string RepositoryURL = "https://github.com/Unknown6656/AutoIt-Interpreter";
/// <summary>
/// The date and time of the current build (2021-03-15 01:03:01.683).
/// The date and time of the current build (2021-03-15 19:33:47.314).
/// </summary>
public static DateTime DateBuilt { get; } = DateTime.FromFileTimeUtc(0x01d7192e90a801deL);
public static DateTime DateBuilt { get; } = DateTime.FromFileTimeUtc(0x01d719c9bc8c3a13L);
}
2 changes: 1 addition & 1 deletion new/AutoItInterpreter/lang/lang-en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ strings:
thread_already_running: "The thread 0x{0:x4} is already executing a function."
too_many_args: "The function '{0}' expects at a maximum of {1} arguments, however, {2} arguments were given."
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."
undeclared_variable: "The variable '{0}' has not been declared previously to this line and can therefore not be used in this expression."
undeclared_variable: "The variable '{0}' has not been declared prior to this line and can therefore not be used in this expression."
unexpected_case: "Unexpected 'Case'-statement outside a 'Switch'- or 'Select'-block."
unexpected_close: "Unexpected statement '{0}': A '{1}'-statement must be opened before it can be closed."
unexpected_continuecase: "Unexpected 'ContinueCase'-statement outside a 'Switch'- or 'Select'-block."
Expand Down
4 changes: 2 additions & 2 deletions new/AutoItInterpreter/version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0.8.1765.7550
7dd57240b9cd34d27c6738167cf89eaad7096b25
0.8.1802.7550
2537a6166da588f6128ebd9f52fab1114a916cc7

0 comments on commit d64de4d

Please sign in to comment.