Skip to content

Releases: defold/extension-lua-preprocessor

Handle empty files without errors

24 May 08:27

Choose a tag to compare

1.1.3

fix https://github.com/defold/extension-lua-preprocessor/issues/7

Plugin update

10 May 13:10

Choose a tag to compare

Including the new logging fix from 1.1.1

Logging fix

10 May 08:13
9dc1ace

Choose a tag to compare

Merge pull request #6 from defold/fix-missing-bob-verbose

Fix for using missing functionality in bob

Throw error if syntax is wrong

12 Apr 14:52
b955b9a

Choose a tag to compare

Make sure that plugin throws an exception and provide debug info to make sure developer doesn't miss some unexpected behavior because of typos.

Basic Lua preprocessor

02 Dec 20:34
4a517f3

Choose a tag to compare

This is the first release of the Lua preprocessor for Defold.
The following syntax supports:

-- Use one of the following keywords: RELEASE, DEBUG or HEADLESS
--#IF RELEASE
 my_lua.code_for_release()
--#ELSE
 my_lua.code_for_debug()
--#ENDIF