Skip to content

Commit

Permalink
Update README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
gilzoide committed Nov 1, 2021
1 parent 63cb815 commit 1a66f35
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
```

Expand Down

0 comments on commit 1a66f35

Please sign in to comment.