Skip to content

Commit c4889b5

Browse files
committed
Updated changelog.
1 parent b7675f3 commit c4889b5

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Changelog.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
LuaPreprocess
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+
411
v1.15 (2021-08-01)
512
Library:
613
- Added functions: getOutputSoFar(), getOutputSizeSoFar(), getCurrentLineNumberInOutput().

preprocess.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
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
----------------------------------------------------------------
@@ -124,7 +124,7 @@
124124

125125

126126

127-
local PP_VERSION = "1.15.0-dev"
127+
local PP_VERSION = "1.16.0"
128128

129129
local 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.
18461846
function metaFuncs.stopInterceptingOutput()
18471847
errorIfNotRunningMeta(2)
18481848

0 commit comments

Comments
 (0)