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 33### Added
44- ` EditorExportPlugin ` for minifying Lua scripts with ` LuaSrcDiet ` on
55 release exports. Minification may be turned off with the
6- ` Lua PluginScript/Export/Minify On Release Export ` project setting.
6+ ` lua_pluginscript/export/minify_on_release_export ` project setting.
77
88### Changed
99- Release builds' init Lua script are minified with ` LuaSrcDiet ` and libraries
1010 are now ` strip ` ed, resulting in smaller dynamic libraries
1111- HGDN functions are now compiled with static visibility and unused GDNative
1212 extensions are excluded, also resulting in smaller dynamic libraries
13+ - Makefile targets for cross-compiling for Windows were renamed from
14+ ` cross-windows* ` to ` mingw-windows* `
1315
1416### Fixed
1517- ` PoolByteArray.extend ` when called with a string argument
Original file line number Diff line number Diff line change @@ -208,7 +208,9 @@ return MyClass
208208The API is documented using [ LDoc] ( https://stevedonovan.github.io/ldoc/manual/doc.md.html ) .
209209Documentation may be generated with the following command:
210210
211- # make docs
211+ ``` sh
212+ make docs
213+ ```
212214
213215
214216## Building
@@ -252,8 +254,11 @@ make android-x86 \ # Android x86
252254 NDK_TOOLCHAIN_BIN=/path/to/ndk/toolchains/llvm/prebuild/host_os-arch/bin
253255make android-x86_64 \ # Android x86_64
254256 NDK_TOOLCHAIN_BIN=/path/to/ndk/toolchains/llvm/prebuild/host_os-arch/bin
257+ ```
255258
256- # If you plan in using the export plugin, this is also required
259+ If you plan in using the export plugin, the following is also required:
260+
261+ ``` sh
257262make plugin
258263```
259264
You can’t perform that action at this time.
0 commit comments