-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
NEWS
50 lines (34 loc) · 1.51 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
UNRELEASED
- Add os.setlocale that only understands the C locale
- Fix incorrect length for certain tables
- Remove luai_apicheck
0.1.4 - 2018-11-28
- Fix bug where nil values are not removed from tables
0.1.3 - 2018-10-29
- Fix loading bytecode with empty string constant
- Fix missing luaopen_base export
- Use only C locale for string->number conversions
0.1.2 - 2018-04-22
- More node 6 compatibility fixes
- Use indirect eval to get reference to global environment
- Move test suite to jest
- Fixes for os.time and os.date normalisation
- Use own strftime code (drops strftime npm package dependency)
- Fix passing JavaScript strings to luaL_add(l)string
0.1.1 - 2018-04-03
- Fix node 6 compatibility
- Removed duplicate LUA_PATH entries
0.1.0 - 2018-03-31
- Fengari core implements Lua 5.3 in ES6
- Implements the Lua C API
- Lua standard library implemented on top of "C" API
- Works in node.js
- Works in browsers (including IE11+, Safari 8+, Chrome, Firefox and Edge)
- Lua test suite ported to JavaScript and passes (excluding items below)
- Known incompatability: garbage collector cannot be controlled
- Known incompatability: __gc not respected
- Known incompatability: __mode not respected
- Known incompatability: io library not available in browsers
- Known incompatability: io library unable to open new files
- Known incompatability: io library read functionality is not implemented
- Known incompatability: some os library functions are not implemented