File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 3
3
### Added
4
4
- ` EditorExportPlugin ` for minifying Lua scripts with ` LuaSrcDiet ` on
5
5
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.
7
7
8
8
### Changed
9
9
- Release builds' init Lua script are minified with ` LuaSrcDiet ` and libraries
10
10
are now ` strip ` ed, resulting in smaller dynamic libraries
11
11
- HGDN functions are now compiled with static visibility and unused GDNative
12
12
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* `
13
15
14
16
### Fixed
15
17
- ` PoolByteArray.extend ` when called with a string argument
Original file line number Diff line number Diff line change @@ -208,7 +208,9 @@ return MyClass
208
208
The API is documented using [ LDoc] ( https://stevedonovan.github.io/ldoc/manual/doc.md.html ) .
209
209
Documentation may be generated with the following command:
210
210
211
- # make docs
211
+ ``` sh
212
+ make docs
213
+ ```
212
214
213
215
214
216
## Building
@@ -252,8 +254,11 @@ make android-x86 \ # Android x86
252
254
NDK_TOOLCHAIN_BIN=/path/to/ndk/toolchains/llvm/prebuild/host_os-arch/bin
253
255
make android-x86_64 \ # Android x86_64
254
256
NDK_TOOLCHAIN_BIN=/path/to/ndk/toolchains/llvm/prebuild/host_os-arch/bin
257
+ ```
255
258
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
257
262
make plugin
258
263
```
259
264
You can’t perform that action at this time.
0 commit comments