diff options
| author | ComputeLinux <[email protected]> | 2016-07-23 11:28:52 -0700 |
|---|---|---|
| committer | ComputeLinux <[email protected]> | 2016-07-23 11:28:52 -0700 |
| commit | 33e16f05c7779b521e39e99cb94d2f645e8b144a (patch) | |
| tree | 1edce771c5d826fabc70a352704889153bef5a08 | |
| parent | 6864162d533e7e1c55064c3fc5076cc204b119af (diff) | |
| download | shiftos-c--33e16f05c7779b521e39e99cb94d2f645e8b144a.tar.gz shiftos-c--33e16f05c7779b521e39e99cb94d2f645e8b144a.tar.bz2 shiftos-c--33e16f05c7779b521e39e99cb94d2f645e8b144a.zip | |
Fix something
| -rw-r--r-- | source/WindowsFormsApplication1/Apps/Terminal.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/WindowsFormsApplication1/Apps/Terminal.cs b/source/WindowsFormsApplication1/Apps/Terminal.cs index 7ca4a01..f00efd8 100644 --- a/source/WindowsFormsApplication1/Apps/Terminal.cs +++ b/source/WindowsFormsApplication1/Apps/Terminal.cs @@ -58,7 +58,9 @@ namespace ShiftOS tmrshutdown.Tick += new EventHandler(tmrshutdown_Tick); if (Hacking == false) { - WriteLine("ShiftOS Alpha. (C) ShiftOS Contributors."); + WriteLine("ShiftOS v" + ProductVersion + ""); + WriteLine("Copyright 2014-2016 ShiftOS Developers."); + WriteLine("Type 'credits' in terminal to show credits."); WriteLine(prefix); } txtterm.Select(txtterm.TextLength, 0); @@ -1637,7 +1639,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o /// <param name="args">String[] args</param> public void cmd_about(String[] args) { - API.CreateInfoboxSession("About ShiftOS", "ShiftOS Version " + ProductVersion + "\n Copyright 2014-2016 ShiftOS Dev Team \n Type 'credits' in Terminal to Show Credits", infobox.InfoboxMode.Info); + API.CreateInfoboxSession("About ShiftOS", "ShiftOS v" + ProductVersion + "\n Copyright 2014-2016 ShiftOS Developers. \n Type 'credits' in terminal to show credits.", infobox.InfoboxMode.Info); } // HISTACOM REFERENCES, DO NOT REMOVE, CRUCIAL FOR SECRET STORY ARC |
