Updated Penlight to latest.

Updated SubLua to latest.
Upreved for release.
This commit is contained in:
RJP Computing 2015-09-16 10:50:30 -05:00
parent b9483ad9f2
commit dbd62061bd
8 changed files with 292 additions and 283 deletions

View File

@ -25,8 +25,8 @@
;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
; -- General Installer configuration ; -- General Installer configuration
#define MyAppVer "5.1.4.47" #define MyAppVer "5.1.4.48"
#define MyAppDisplayVer "5.1.4-47" #define MyAppDisplayVer "5.1.4-48"
#define MyAppName "Lua" #define MyAppName "Lua"
#define MyAppDisplayName "Lua for Windows" #define MyAppDisplayName "Lua for Windows"
#define MyAppPublisher "The Lua for Windows Project and Lua and Tecgraf, PUC-Rio" #define MyAppPublisher "The Lua for Windows Project and Lua and Tecgraf, PUC-Rio"

View File

@ -75,6 +75,7 @@ C header files/libraries/etc. for building C module
|[Oil](http://oil.luaforge.net)|0.4-beta| It is a simple, efficient and flexible object request broker written in the Lua language.| |[Oil](http://oil.luaforge.net)|0.4-beta| It is a simple, efficient and flexible object request broker written in the Lua language.|
|[LuaJSON](http://github.com/harningt/luajson)|1.2.2| JSON parser/encoder for Lua Parses JSON using LPEG for speed and flexibility. Depending on parser/encoder options, various values are preserved as best as possible.| |[LuaJSON](http://github.com/harningt/luajson)|1.2.2| JSON parser/encoder for Lua Parses JSON using LPEG for speed and flexibility. Depending on parser/encoder options, various values are preserved as best as possible.|
|[SubLua](https://sourceforge.net/projects/subcpp/)|1.8.10| Subversion binding.| |[SubLua](https://sourceforge.net/projects/subcpp/)|1.8.10| Subversion binding.|
|[30Log](https://github.com/Yonaba/30log)|1.0.0| 30 lines library for object orientation in Lua.|
## History ## ## History ##
@ -279,3 +280,7 @@ C header files/libraries/etc. for building C module
* Updated Penlight to 1.3.2. * Updated Penlight to 1.3.2.
* Updated SubLua to 1.8.10. * Updated SubLua to 1.8.10.
* **WARNING**: Moved all downloads and code hosting to GitHub. Older releases will not function when Google Code is shut down. Make sure to upgrade. * **WARNING**: Moved all downloads and code hosting to GitHub. Older releases will not function when Google Code is shut down. Make sure to upgrade.
**5.1.4-48** 16/September/2015 - 34rd release
* Added 30Log v1.0.0 - 30 lines library for object orientation in Lua
* Updated SubLua to 1.8.11.

View File

@ -1,4 +1,8 @@
=================== Lua For Windows =================== =================== Lua For Windows ===================
09/16/2015 Version 5.1.4-48
+ Added 30Log v1.0.0 - 30 lines library for object orientation in Lua
^ Updated SubLua to 1.8.11.
03/18/2015 Version 5.1.4-47 03/18/2015 Version 5.1.4-47
^ Updated stdlib to release 28. ^ Updated stdlib to release 28.
^ Updated Penlight to 1.3.2. ^ Updated Penlight to 1.3.2.

Binary file not shown.

0
files/docs/SubLua/ldoc.lua Normal file → Executable file
View File

View File

@ -11,7 +11,7 @@ local unpack = rawget(_G,'unpack') or rawget(table,'unpack')
local collisions = {} local collisions = {}
local utils = { local utils = {
_VERSION = "1.3.2", _VERSION = "1.2.1",
lua51 = compat.lua51, lua51 = compat.lua51,
setfenv = compat.setfenv, setfenv = compat.setfenv,
getfenv = compat.getfenv, getfenv = compat.getfenv,