File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11Changelog
22LuaPreprocess
33
4+ v1.16 (2021-11-16)
5+ Library:
6+ - Added preprocessor symbols (in the form of '$name').
7+ - Added functions: startInterceptingOutput(), stopInterceptingOutput().
8+ - Macros can use outputLua() and co. instead of returning code.
9+ - Detecting errors such as !(x,y).
10+
411v1.15 (2021-08-01)
512Library:
613- Added functions: getOutputSoFar(), getOutputSizeSoFar(), getCurrentLineNumberInOutput().
Original file line number Diff line number Diff line change 6060
6161 local font = !!(isDeveloper and "loadDevFont()" or "loadUserFont()")
6262
63- -- See the full documentation for additional features:
63+ -- See the full documentation for additional features (like macros) :
6464 -- http://luapreprocess.refreezed.com/docs/extra-functionality/
6565
6666----------------------------------------------------------------
124124
125125
126126
127- local PP_VERSION = " 1.15.0-dev "
127+ local PP_VERSION = " 1.16.0 "
128128
129129local MAX_DUPLICATE_FILE_INSERTS = 1000 -- @Incomplete: Make this a parameter for processFile()/processString().
130130
@@ -1842,7 +1842,7 @@ end
18421842
18431843-- stopInterceptingOutput()
18441844-- luaString = stopInterceptingOutput( )
1845- -- Stop intercepting output.
1845+ -- Stop intercepting output and retrieve collected code .
18461846function metaFuncs .stopInterceptingOutput ()
18471847 errorIfNotRunningMeta (2 )
18481848
You can’t perform that action at this time.
0 commit comments