From 1a66f35692220e336d59a690a768a483ae842e08 Mon Sep 17 00:00:00 2001 From: gilzoide Date: Mon, 1 Nov 2021 11:34:24 -0300 Subject: [PATCH] Update README and CHANGELOG --- CHANGELOG.md | 4 +++- README.md | 9 +++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1446fd7..5e9f669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,15 @@ ### Added - `EditorExportPlugin` for minifying Lua scripts with `LuaSrcDiet` on release exports. Minification may be turned off with the - `Lua PluginScript/Export/Minify On Release Export` project setting. + `lua_pluginscript/export/minify_on_release_export` project setting. ### Changed - Release builds' init Lua script are minified with `LuaSrcDiet` and libraries are now `strip`ed, resulting in smaller dynamic libraries - HGDN functions are now compiled with static visibility and unused GDNative extensions are excluded, also resulting in smaller dynamic libraries +- Makefile targets for cross-compiling for Windows were renamed from + `cross-windows*` to `mingw-windows*` ### Fixed - `PoolByteArray.extend` when called with a string argument diff --git a/README.md b/README.md index bfce924..807fa0f 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,9 @@ return MyClass The API is documented using [LDoc](https://stevedonovan.github.io/ldoc/manual/doc.md.html). Documentation may be generated with the following command: - # make docs +```sh +make docs +``` ## Building @@ -252,8 +254,11 @@ make android-x86 \ # Android x86 NDK_TOOLCHAIN_BIN=/path/to/ndk/toolchains/llvm/prebuild/host_os-arch/bin make android-x86_64 \ # Android x86_64 NDK_TOOLCHAIN_BIN=/path/to/ndk/toolchains/llvm/prebuild/host_os-arch/bin +``` -# If you plan in using the export plugin, this is also required +If you plan in using the export plugin, the following is also required: + +```sh make plugin ```