aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-08-09 16:07:01 -0400
committerAlee <alee14498@gmail.com>2018-08-09 16:07:01 -0400
commit55cf7f5d9cedb22ec8e10d625df3c1f890ff6fb9 (patch)
tree2def82e57b1f75d5fc01702ed7a8c2e35cf48b41
parenta5a3956afe5d28fd7acffe56c60cc195918d7f83 (diff)
downloadbits-UI-55cf7f5d9cedb22ec8e10d625df3c1f890ff6fb9.tar.gz
bits-UI-55cf7f5d9cedb22ec8e10d625df3c1f890ff6fb9.tar.bz2
bits-UI-55cf7f5d9cedb22ec8e10d625df3c1f890ff6fb9.zip
fixed the startup and added the version number
-rw-r--r--LICENSE2
-rw-r--r--README.md6
-rw-r--r--startup6
-rw-r--r--startup.lua2
4 files changed, 12 insertions, 4 deletions
diff --git a/LICENSE b/LICENSE
index 94a9ed0..20d40b6 100644
--- a/LICENSE
+++ b/LICENSE
@@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
-<http://www.gnu.org/philosophy/why-not-lgpl.html>.
+<http://www.gnu.org/philosophy/why-not-lgpl.html>. \ No newline at end of file
diff --git a/README.md b/README.md
index 53e97a4..cc4629b 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,5 @@
-# BitsOS \ No newline at end of file
+# bitsOS
+An operating system for ComputerCraft
+
+# Plans
+- Make the OS modular \ No newline at end of file
diff --git a/startup b/startup
new file mode 100644
index 0000000..c7a341c
--- /dev/null
+++ b/startup
@@ -0,0 +1,6 @@
+local version = "1.0 Alpha 1"
+
+term.clear()
+term.setCursorPos(1,1)
+print("Starting up bitsOS ".. version .."...")
+sleep(3) \ No newline at end of file
diff --git a/startup.lua b/startup.lua
deleted file mode 100644
index a6e9a31..0000000
--- a/startup.lua
+++ /dev/null
@@ -1,2 +0,0 @@
-term.clear()
-print("Starting up bitsOS...") \ No newline at end of file