commit 689b5bbb5aa7d0b2a984457478db601446091577
parent b42934cce3ea3565b3ce388601ea8f93c821d481
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date: Sun, 10 May 2015 10:23:58 +0200
Updated ChangeLog and tagging 1.01 release
Diffstat:
3 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -0,0 +1,12 @@
+AngiGo 1.01 (2015-05-10)
+
+- 'Set mode' and 'Reset mode' sequences are now skipped
+- Modified the ANSI sequence parser to use switch
+- Documentation update: adding cross compilation instructions
+- Relicensed under the BSD 3-Clause license
+
+
+
+AnsiGo 1.00 (2012-02-19)
+
+- Initial release
diff --git a/ansi.go b/ansi.go
@@ -1,8 +1,8 @@
-// AnsiGo 1.00 (c) by Frederic Cambus 2012-2015
+// AnsiGo 1.01 (c) by Frederic Cambus 2012-2015
// http://www.github.com/fcambus/ansigo
//
// Created: 2012/02/14
-// Last Updated: 2015/03/29
+// Last Updated: 2015/05/10
//
// AnsiGo is released under the BSD 3-Clause license.
// See LICENSE file for details.
diff --git a/ansigo.go b/ansigo.go
@@ -1,8 +1,8 @@
-// AnsiGo 1.00 (c) by Frederic Cambus 2012-2015
+// AnsiGo 1.01 (c) by Frederic Cambus 2012-2015
// http://www.github.com/fcambus/ansigo
//
// Created: 2012/02/14
-// Last Updated: 2015/03/29
+// Last Updated: 2015/05/10
//
// AnsiGo is released under the BSD 3-Clause license.
// See LICENSE file for details.
@@ -21,7 +21,7 @@ import (
func main() {
- fmt.Println("-------------------------------------------------------------------------------\n AnsiGo 1.00 (c) by Frederic CAMBUS 2012-2015\n-------------------------------------------------------------------------------\n")
+ fmt.Println("-------------------------------------------------------------------------------\n AnsiGo 1.01 (c) by Frederic CAMBUS 2012-2015\n-------------------------------------------------------------------------------\n")
// Check input parameters and show usage
if len(os.Args) != 2 {