Skip to content

Commit

Permalink
(hopefully) fixed #178
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown6656 committed Mar 3, 2024
1 parent f684449 commit 52a8806
Show file tree
Hide file tree
Showing 4 changed files with 29 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 2024-03-03 23:45:50.388 //
// Auto-generated 2024-03-04 00:45:51.037 //
// ANY CHANGES TO THIS DOCUMENT WILL BE LOST UPON RE-GENERATION //
//////////////////////////////////////////////////////////////////////////

using System.Reflection;
using System;

[assembly: AssemblyVersion("0.8.2139.8607")]
[assembly: AssemblyFileVersion("0.8.2139.8607")]
[assembly: AssemblyInformationalVersion("v.0.8.2139.8607, commit: 6a7bc12e752a12dc23be3b5005d2e97f6347b08a")]
[assembly: AssemblyVersion("0.8.2143.8608")]
[assembly: AssemblyFileVersion("0.8.2143.8608")]
[assembly: AssemblyInformationalVersion("v.0.8.2143.8608, commit: f6844495676730fe50f2f614c8eb9d69eafdac30")]
[assembly: AssemblyCompany("Unknown6656")]
[assembly: AssemblyCopyright("Copyright © 2018 - 2024, 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.2139.8607");
public static Version? InterpreterVersion { get; } = Version.Parse("0.8.2143.8608");
/// <summary>
/// The Git hash associated with the current build.
/// </summary>
public const string GitHash = "6a7bc12e752a12dc23be3b5005d2e97f6347b08a";
public const string GitHash = "f6844495676730fe50f2f614c8eb9d69eafdac30";
/// <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 (2024-03-03 23:45:50.388).
/// The date and time of the current build (2024-03-04 00:45:51.037).
/// </summary>
public static DateTime DateBuilt { get; } = DateTime.FromFileTimeUtc(0x01da6dbc8a631bb7L);
public static DateTime DateBuilt { get; } = DateTime.FromFileTimeUtc(0x01da6dc4ec8a8b03L);
}
2 changes: 1 addition & 1 deletion new/AutoItInterpreter/AutoItInterpreter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<PackageReference Include="Lokad.ILPack" Version="0.2.0" />
<PackageReference Include="Octokit" Version="10.0.0" />
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
<PackageReference Include="Unknown6656.Core" Version="1.1.7" />
<PackageReference Include="Unknown6656.Core" Version="1.1.8" />
<PackageReference Include="Unknown6656.Generics" Version="0.9.12" />
</ItemGroup>
<ItemGroup>
Expand Down
18 changes: 18 additions & 0 deletions new/AutoItInterpreter/CommandLineInterface/MainProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,24 @@ public static class MainProgram
/// <returns>Return/exit code.</returns>
public static int Start(string[] argv)
{
if (!ConsoleExtensions.SupportsVTEscapeSequences)
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("""
.--------------------------------------------------.
| WARNING! |
| |
| Your terminal does NOT support VT100/ANSI escape |
| sequences. This WILL lead to a severely degraded |
| user experience. You have been warned. |
'--------------------------------------------------'

""");
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine("(Press any key to continue)");
Console.ReadKey(true);
}

RawCMDLineArguments = argv;

Stopwatch sw = new();
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.2139.8607
6a7bc12e752a12dc23be3b5005d2e97f6347b08a
0.8.2143.8608
f6844495676730fe50f2f614c8eb9d69eafdac30

0 comments on commit 52a8806

Please sign in to comment.