File tree Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 11Changelog
22LuaPreprocess
33
4+ v1.20 (2022-07-01)
5+ Library:
6+ - getOutputSoFar() can now take an output buffer argument.
7+ - Detecting duplicate names in dual code: !!x, x = ...
8+ - Fixed evaluate() sometimes raising an error instead of returning it.
9+ - Fixed issue with files not ending with a newline.
10+ - Fixed silly internal error when Lua 5.2+ was used.
11+ Command line program:
12+ - Added options: --version, --help.
13+ - Added "alldone" message.
14+ - --meta can now take a file path.
15+ - Fixed silly internal error when Lua 5.2+ was used.
16+ Repository:
17+ - Fixed test suite not working in Lua 5.2+. Oops!
18+
419v1.19 (2022-06-20)
520Library:
621- All uses of '!' now work in macros.
@@ -166,7 +181,7 @@ v1.3 (2019-01-05)
166181- Added concatTokens().
167182
168183v1.2 (2019-01-03)
169- - Added pp. processString().
184+ - Added processString().
170185
171186v1.1.1 (2019-01-02)
172187- (No info)
@@ -175,4 +190,4 @@ v1.1 (2018-12-22)
175190- (No info)
176191
177192v1.0 (2018-11-02)
178- - Initial release.
193+ - Initial release!
Original file line number Diff line number Diff line change 11#! /bin/sh
22_ = [[
33exec lua "$0" "$@"
4- ]]
4+ ]] and nil
55-- ==============================================================
66-- =
77-- = LuaPreprocess command line program
Original file line number Diff line number Diff line change 11--[[ ============================================================
22--=
3- --= LuaPreprocess v1.19-dev - preprocessing library
3+ --= LuaPreprocess v1.20 - preprocessing library
44--= by Marcus 'ReFreezed' Thunström
55--=
66--= License: MIT (see the bottom of this file)
131131
132132
133133
134- local PP_VERSION = " 1.19.0-dev "
134+ local PP_VERSION = " 1.20.0 "
135135
136136local MAX_DUPLICATE_FILE_INSERTS = 1000 -- @Incomplete: Make this a parameter for processFile()/processString().
137137
You can’t perform that action at this time.
0 commit comments