Skip to content

Commit

Permalink
Disable FTP command for now + Update version to 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Jan 12, 2022
1 parent 68e20a1 commit a9ccb34
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Aura Operating System/Aura_OS/Kernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class Kernel : Sys.Kernel

Setup setup = new Setup();
public static bool running;
public static string version = "0.5.1";
public static string version = "0.5.2";
public static string revision = VersionInfo.revision;
public static string current_directory = @"0:\";
public static string langSelected = "en_US";
Expand Down Expand Up @@ -111,6 +111,9 @@ protected override void BeforeRun()

System.CustomConsole.WriteLineOK("Aura successfully started!");

Console.WriteLine("Press any key to continue...");
Console.ReadKey();

#region Installation Init

setup.InitSetup();
Expand Down
2 changes: 1 addition & 1 deletion Aura Operating System/Aura_OS/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ namespace Aura_OS
{
public class VersionInfo
{
public static string revision = "261220211425";
public static string revision = "120120221316";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static void RegisterAllCommands()
CMDs.Add(new CommandUdp(new string[] { "udp" }));
CMDs.Add(new CommandDns(new string[] { "dns" }));
CMDs.Add(new CommandWget(new string[] { "wget" }));
CMDs.Add(new CommandFtp(new string[] { "ftp" }));
//CMDs.Add(new CommandFtp(new string[] { "ftp" }));
CMDs.Add(new CommandHttpServer(new string[] { "httpserver" }));

CMDs.Add(new CommandVersion(new string[] { "version", "ver" }));
Expand Down

0 comments on commit a9ccb34

Please sign in to comment.