Skip to content

Commit

Permalink
Ok
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen2k6 committed Sep 25, 2022
1 parent 4f6dc0a commit 1564173
Show file tree
Hide file tree
Showing 25 changed files with 42 additions and 6 deletions.
Binary file modified GoOS/.vs/GoOS/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified GoOS/.vs/GoOS/v17/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion GoOS/GoOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<ISOFile>bin\Debug\net5.0\GoOS.iso</ISOFile>
<CompileVBEMultiboot>False</CompileVBEMultiboot>
<ExtractMapFile>False</ExtractMapFile>
<VMwareEdition>Workstation</VMwareEdition>
<VMwareEdition>Player</VMwareEdition>
<VMware_StackCorruptionDetectionEnabled>True</VMware_StackCorruptionDetectionEnabled>
<VMware_StackCorruptionDetectionLevel>MethodFooters</VMware_StackCorruptionDetectionLevel>
<VMware_Description>Use VMware Player or Workstation to deploy and debug.</VMware_Description>
Expand Down
14 changes: 9 additions & 5 deletions GoOS/Kernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ namespace GoOS

public class Kernel : Sys.Kernel
{
//Vars for OS
public string version = "1.4";
public string BuildType = "Release";


//GoOS Core
public void print(string str)
{
Expand Down Expand Up @@ -172,12 +177,12 @@ protected override void BeforeRun()
textcolour(ConsoleColor.DarkRed);
write(" GGGGG GG GGGGGGGGGGGGGGGGGGG ");
textcolour(ConsoleColor.White);
write("Version 1.4");
write("Version "+version);
log(ConsoleColor.Green, "");
textcolour(ConsoleColor.Magenta);
write(" GGGGG GG GGGGGGGGGGGGGGGGGGG ");
textcolour(ConsoleColor.White);
write("Development Channel");
write("Welcome to GoOS");
log(ConsoleColor.Green, "");
//Ok now continue
log(ConsoleColor.DarkMagenta, " GGGGGG GGGG GGGGGGGGGGGGGGGGGG ");
Expand Down Expand Up @@ -239,9 +244,8 @@ protected override void Run()
log(ConsoleColor.Magenta, "Goplex Operating System");
log(ConsoleColor.Blue, "GoOS is owned by Goplex Studios.");
log(ConsoleColor.Red, "SYSTEM INFOMATION:");
log(ConsoleColor.Red, "GoOS Version 1.4");
log(ConsoleColor.Red, "Owen2k6 Api version: 0.15");
log(ConsoleColor.Red, "Branch: Development");
log(ConsoleColor.Red, "GoOS Version "+version);
log(ConsoleColor.Red, "Build Type: "+BuildType);
log(ConsoleColor.White, "Copyright 2022 (c) Owen2k6");
}
else if (input == "help")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v1.0", FrameworkDisplayName = "")]
24 changes: 24 additions & 0 deletions GoOS/obj/Debug/netcoreapp1.0/GoOS.AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("GoOS")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Use VMware Player or Workstation to deploy and debug.")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("GoOS")]
[assembly: System.Reflection.AssemblyTitleAttribute("GoOS")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

// Generated by the MSBuild WriteCodeFragment class.

1 change: 1 addition & 0 deletions GoOS/obj/Debug/netcoreapp1.0/GoOS.AssemblyInfoInputs.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a9f3b31e23a8113e3090d6431524a6110561e87c
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = GoOS
build_property.ProjectDir = D:\Git\GoOS-Source\GoOS\
Binary file added GoOS/obj/Debug/netcoreapp1.0/GoOS.assets.cache
Binary file not shown.
Binary file not shown.
Empty file.

0 comments on commit 1564173

Please sign in to comment.