Skip to content

Commit 1a66f35

Browse files
committed
Update README and CHANGELOG
1 parent 63cb815 commit 1a66f35

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
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

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,9 @@ return MyClass
208208
The API is documented using [LDoc](https://stevedonovan.github.io/ldoc/manual/doc.md.html).
209209
Documentation 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
253255
make 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
257262
make plugin
258263
```
259264

0 commit comments

Comments
 (0)