Skip to content

Commit a9ccb34

Browse files
committed
Disable FTP command for now + Update version to 0.5.2
1 parent 68e20a1 commit a9ccb34

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Aura Operating System/Aura_OS/Kernel.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class Kernel : Sys.Kernel
2828

2929
Setup setup = new Setup();
3030
public static bool running;
31-
public static string version = "0.5.1";
31+
public static string version = "0.5.2";
3232
public static string revision = VersionInfo.revision;
3333
public static string current_directory = @"0:\";
3434
public static string langSelected = "en_US";
@@ -111,6 +111,9 @@ protected override void BeforeRun()
111111

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

114+
Console.WriteLine("Press any key to continue...");
115+
Console.ReadKey();
116+
114117
#region Installation Init
115118

116119
setup.InitSetup();

Aura Operating System/Aura_OS/Properties/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace Aura_OS
22
{
33
public class VersionInfo
44
{
5-
public static string revision = "261220211425";
5+
public static string revision = "120120221316";
66
}
77
}

Aura Operating System/Aura_OS/System/Shell/cmdIntr/CommandManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static void RegisterAllCommands()
4646
CMDs.Add(new CommandUdp(new string[] { "udp" }));
4747
CMDs.Add(new CommandDns(new string[] { "dns" }));
4848
CMDs.Add(new CommandWget(new string[] { "wget" }));
49-
CMDs.Add(new CommandFtp(new string[] { "ftp" }));
49+
//CMDs.Add(new CommandFtp(new string[] { "ftp" }));
5050
CMDs.Add(new CommandHttpServer(new string[] { "httpserver" }));
5151

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

0 commit comments

Comments
 (0)