On
http://www.luaplayer.org you can get the new version 0.20. It is updated to Lua 5.1, there are some bugfixes and a new function for loading images from memory. I'll try to add pspgl the next week.
The changelog:
v0.20
==========
updated for gcc 4.1 and Lua 5.1. Some things you need to change for 5.1:
change table iteration code: "for i, value in someTable do" to "for i, value in ipairs(someTable) do" (but use "pairs" for tables like "t={foo=bar, foobar=99}" and "ipairs" for tables like "t={foo, bar}")
it's pure Lua 5.1: no binary operators and double as number type (e.g. now you can use one number for storing IP addresses)
Sound.load doesn't crash any more on invalid filenames
fixed problems with daylight saving time
Font:getTextSize fixed.
blit operation from screen to image works now,
and now you have an "image" with the text "hello"
TTF font plotting to images now sets the alpha value to opaque, so you can write e.g. something like this for buffering texts in images
new function Image.loadFromMemory for loading images from memory:
PNG and JPEG is supported and autodetected
image-to-image blitting now uses alpha full blending [Callum Bethune]
System.rename(oldName, newName) for renaming files and directories