Nicolas Cannasse 19 years ago
parent
commit
d3f6b8f514
2 changed files with 8 additions and 2 deletions
  1. 7 1
      doc/CHANGES.txt
  2. 1 1
      main.ml

+ 7 - 1
doc/CHANGES.txt

@@ -1,4 +1,4 @@
-2006-03-??: beta 4
+2006-04-02: beta 4
 	fixed javascript events case
 	fixed invalid use of physeq
 	fixed + type inference
@@ -22,6 +22,12 @@
 	fixed Reflect fields, added documentation, added Class
 	added javascript closures, fixed null closures on flash and Neko
 	added javascript __init__ statics and js.XMLHttpRequest
+	added neko.Stack
+	fixed bug in Std.ord
+	convert neko string to haxe string on catch
+	automaticaly creates empty clips for classes extending flash.MovieClip
+	unify stack : several meaningful unification errors
+	added cast operation and keyword
 
 2006-03-11: beta 3
 	javascript generator

+ 1 - 1
main.ml

@@ -86,7 +86,7 @@ let base_defines = Hashtbl.copy Parser.defines
 
 let rec init argv argv_start =
 try	
-	let usage = "Haxe Compiler Beta 3 - (c)2005-2006 Motion-Twin\n Usage : haxe.exe [options] <class names...>\n Options :" in
+	let usage = "Haxe Compiler Beta 4 - (c)2005-2006 Motion-Twin\n Usage : haxe.exe [options] <class names...>\n Options :" in
 	let base_path = normalize_path (try Extc.executable_path() with _ -> "./") in
 	let classes = ref [([],"Std")] in
 	let target = ref No in