diff --git a/README.html b/README.html index 864f0d8c..4bd9f1d6 100644 --- a/README.html +++ b/README.html @@ -16,7 +16,7 @@ Getting Started with LuaJ -James Roseborough, Ian Farmer, Version 3.0-alpha3 +James Roseborough, Ian Farmer, Version 3.0-beta1

Copyright © 2009-2013 Luaj.org. @@ -119,7 +119,7 @@ in comparison with the standard C distribution. 16.794 11.274 Java - java -cp luaj-jse-3.0-alpha3.jar;bcel-5.2.jar lua -b fannkuch.lua 10 + java -cp luaj-jse-3.0-beta1.jar;bcel-5.2.jar lua -b fannkuch.lua 10 @@ -129,7 +129,7 @@ in comparison with the standard C distribution. 36.894 15.163 - java -cp luaj-jse-3.0-alpha3.jar lua -n fannkuch.lua 10 + java -cp luaj-jse-3.0-beta1.jar lua -n fannkuch.lua 10 lua 5.1.4 @@ -185,7 +185,7 @@ It is also faster than Java-lua implementations Jill, Kahlua, and Mochalua for a From the main distribution directory line type:

-	java -cp lib/luaj-jse-3.0-alpha3.jar lua examples/lua/hello.lua
+	java -cp lib/luaj-jse-3.0-beta1.jar lua examples/lua/hello.lua
 

@@ -197,7 +197,7 @@ You should see the following output: To see how luaj can be used to acccess most Java API's including swing, try:

-	java -cp lib/luaj-jse-3.0-alpha3.jar lua examples/lua/swingapp.lua
+	java -cp lib/luaj-jse-3.0-beta1.jar lua examples/lua/swingapp.lua
 

Compile lua source to lua bytecode

@@ -206,8 +206,8 @@ To see how luaj can be used to acccess most Java API's including swing, try: From the main distribution directory line type:
-	java -cp lib/luaj-jse-3.0-alpha3.jar luac examples/lua/hello.lua
-	java -cp lib/luaj-jse-3.0-alpha3.jar lua luac.out
+	java -cp lib/luaj-jse-3.0-beta1.jar luac examples/lua/hello.lua
+	java -cp lib/luaj-jse-3.0-beta1.jar lua luac.out
 

@@ -221,8 +221,8 @@ Luaj can compile lua sources or binaries directly to java bytecode if the bcel l

 	ant bcel-lib
-	java -cp "lib/luaj-jse-3.0-alpha3.jar;lib/bcel-5.2.jar" luajc -s examples/lua -d . hello.lua
-	java -cp "lib/luaj-jse-3.0-alpha3.jar;." lua -l hello
+	java -cp "lib/luaj-jse-3.0-beta1.jar;lib/bcel-5.2.jar" luajc -s examples/lua -d . hello.lua
+	java -cp "lib/luaj-jse-3.0-beta1.jar;." lua -l hello
 

@@ -233,7 +233,7 @@ but the compiled classes must be in the class path at runtime, unless runtime ji

Lua scripts can also be run directly in this mode without precompiling using the lua command with the -b option and providing the bcel library in the class path:

-	java -cp "lib/luaj-jse-3.0-alpha3.jar;lib/bcel-5.2.jar" lua -b examples/lua/hello.lua
+	java -cp "lib/luaj-jse-3.0-beta1.jar;lib/bcel-5.2.jar" lua -b examples/lua/hello.lua
 
@@ -258,7 +258,7 @@ A simple example may be found in

-You must include the library lib/luaj-jse-3.0-alpha3.jar in your class path. +You must include the library lib/luaj-jse-3.0-beta1.jar in your class path.

Run a script in a MIDlet

@@ -285,7 +285,7 @@ A simple example may be found in

-You must include the library lib/luaj-jme-3.0-alpha3.jar in your midlet jar. +You must include the library lib/luaj-jme-3.0-beta1.jar in your midlet jar.

An ant script to build and run the midlet is in @@ -313,7 +313,7 @@ The standard use of JSR-223 scripting engines may be used: All standard aspects of script engines including compiled statements should be supported.

-You must include the library lib/luaj-jse-3.0-alpha3.jar in your class path. +You must include the library lib/luaj-jse-3.0-beta1.jar in your class path.

A working example may be found in @@ -325,7 +325,7 @@ To compile and run it using Java 1.6 or higher:

 	javac examples/jse/ScriptEngineSample.java
-	java -cp "lib/luaj-jse-3.0-alpha3.jar;examples/jse" ScriptEngineSample
+	java -cp "lib/luaj-jse-3.0-beta1.jar;examples/jse" ScriptEngineSample
 

Excluding the lua bytecode compiler

@@ -506,7 +506,7 @@ The following lua script will open a swing frame on Java SE: See a longer sample in examples/lua/swingapp.lua for details, including a simple animation loop, rendering graphics, mouse and key handling, and image loading. Or try running it using:
-	java -cp lib/luaj-jse-3.0-alpha3.jar lua examples/lua/swingapp.lua
+	java -cp lib/luaj-jse-3.0-beta1.jar lua examples/lua/swingapp.lua
 

@@ -754,7 +754,7 @@ For JSE projects, add this dependency for the luaj-jse jar: <dependency> <groupId>org.luaj</groupId> <artifactId>luaj-jse</artifactId> - <version>3.0-alpha3</version> + <version>3.0-beta1</version> </dependency> while for JME projects, use the luaj-jme jar: @@ -762,7 +762,7 @@ while for JME projects, use the luaj-jme jar: <dependency> <groupId>org.luaj</groupId> <artifactId>luaj-jme</artifactId> - <version>3.0-alpha3</version> + <version>3.0-beta1</version> </dependency>