Browse Source

changed copyrights from Motion-Twin to Haxe Foundation

Nicolas Cannasse 13 years ago
parent
commit
51ea93d77e
3 changed files with 4 additions and 4 deletions
  1. 1 1
      main.ml
  2. 1 1
      std/tools/haxedoc/Main.hx
  3. 2 2
      std/tools/haxelib/Main.hx

+ 1 - 1
main.ml

@@ -673,7 +673,7 @@ and do_connect host port args =
 
 
 and init ctx =
 and init ctx =
 	let usage = Printf.sprintf
 	let usage = Printf.sprintf
-		"Haxe Compiler %d.%.2d - (c)2005-2012 Motion-Twin\n Usage : haxe%s -main <class> [-swf|-js|-neko|-php|-cpp|-cs|-java|-as3] <output> [options]\n Options :"
+		"Haxe Compiler %d.%.2d - (c)2005-2012 Haxe Foundation\n Usage : haxe%s -main <class> [-swf|-js|-neko|-php|-cpp|-cs|-java|-as3] <output> [options]\n Options :"
 		(version / 100) (version mod 100) (if Sys.os_type = "Win32" then ".exe" else "")
 		(version / 100) (version mod 100) (if Sys.os_type = "Win32" then ".exe" else "")
 	in
 	in
 	let com = ctx.com in
 	let com = ctx.com in

+ 1 - 1
std/tools/haxedoc/Main.hx

@@ -142,7 +142,7 @@ class Main {
 			}
 			}
 			parser.sort();
 			parser.sort();
 			if( parser.root.length == 0 ) {
 			if( parser.root.length == 0 ) {
-				Sys.println("Haxe Doc Generator 2.0 - (c)2006 Motion-Twin");
+				Sys.println("Haxe Doc Generator 2.0 - (c)2006-2012 Haxe Foundation");
 				Sys.println(" Usage : haxedoc [xml files] [-f filter]");
 				Sys.println(" Usage : haxedoc [xml files] [-f filter]");
 				Sys.exit(1);
 				Sys.exit(1);
 			}
 			}

+ 2 - 2
std/tools/haxelib/Main.hx

@@ -116,7 +116,7 @@ class ProgressIn extends haxe.io.Input {
 
 
 class Main {
 class Main {
 
 
-	static var VERSION = 103;
+	static var VERSION = 104;
 	static var REPNAME = "lib";
 	static var REPNAME = "lib";
 	static var SERVER = {
 	static var SERVER = {
 		host : "lib.haxe.org",
 		host : "lib.haxe.org",
@@ -200,7 +200,7 @@ class Main {
 	function usage() {
 	function usage() {
 		var vmin = Std.string(VERSION % 100);
 		var vmin = Std.string(VERSION % 100);
 		var ver = Std.int(VERSION/100) + "." + if( vmin.length == 1 ) "0"+vmin else vmin;
 		var ver = Std.int(VERSION/100) + "." + if( vmin.length == 1 ) "0"+vmin else vmin;
-		print("Haxe Library Manager "+ver+" - (c)2006 Motion-Twin");
+		print("Haxe Library Manager "+ver+" - (c)2006-2012 Haxe Foundation");
 		print(" Usage : haxelib [command] [options]");
 		print(" Usage : haxelib [command] [options]");
 		print(" Commands :");
 		print(" Commands :");
 		for( c in commands )
 		for( c in commands )