From dfe852f69bf19dd93b1a482f5a6003155c6033b9 Mon Sep 17 00:00:00 2001 From: Garritt McCune Date: Wed, 14 Nov 2018 18:13:28 -0600 Subject: [PATCH] Added version history to the shell source file. --- src/shell.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/shell.c b/src/shell.c index fa9a2d0..18a4152 100644 --- a/src/shell.c +++ b/src/shell.c @@ -1,3 +1,13 @@ +/* + Version History + + 0.0.0.1: Intial Release + + 0.0.1.2: Added support for the backspace key. + + 0.0.2.0: Fixed a bug allowing the user to delete all screen + content by simply holding the backspace key. +*/ #include "../include/shell.h" #include "../include/scrn.h" #include "../include/system.h" @@ -47,7 +57,7 @@ void execmd() } if(strcmp(commandbuffer, "version")) { - puts("\nInteractive Shell Version 0.0.1.2\n"); + puts("\nInteractive Shell Version 0.0.2.0\n"); } else if(strcmp(commandbuffer,"cls")) {