Skip to content

Commit

Permalink
Updated changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
ReFreezed committed Nov 16, 2021
1 parent b7675f3 commit c4889b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
LuaPreprocess

v1.16 (2021-11-16)
Library:
- Added preprocessor symbols (in the form of '$name').
- Added functions: startInterceptingOutput(), stopInterceptingOutput().
- Macros can use outputLua() and co. instead of returning code.
- Detecting errors such as !(x,y).

v1.15 (2021-08-01)
Library:
- Added functions: getOutputSoFar(), getOutputSizeSoFar(), getCurrentLineNumberInOutput().
Expand Down
6 changes: 3 additions & 3 deletions preprocess.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
local font = !!(isDeveloper and "loadDevFont()" or "loadUserFont()")
-- See the full documentation for additional features:
-- See the full documentation for additional features (like macros):
-- http://luapreprocess.refreezed.com/docs/extra-functionality/
----------------------------------------------------------------
Expand Down Expand Up @@ -124,7 +124,7 @@



local PP_VERSION = "1.15.0-dev"
local PP_VERSION = "1.16.0"

local MAX_DUPLICATE_FILE_INSERTS = 1000 -- @Incomplete: Make this a parameter for processFile()/processString().

Expand Down Expand Up @@ -1842,7 +1842,7 @@ end

-- stopInterceptingOutput()
-- luaString = stopInterceptingOutput( )
-- Stop intercepting output.
-- Stop intercepting output and retrieve collected code.
function metaFuncs.stopInterceptingOutput()
errorIfNotRunningMeta(2)

Expand Down

0 comments on commit c4889b5

Please sign in to comment.