Releases: Foxbud/aermdk
Releases · Foxbud/aermdk
Version 20211225
Changes
- Demoted all compiler errors regarding unused values to warnings in
CMakeLists.txt
. - Added
RoomStart
andRoomEnd
options toObj Event Listener
snippet in.vscode/aermdk.code-snippets
. - Corrected deprecated use of
roomChangeListener
member ofAERModDef
struct inREADME.md
.
Version 20211206
Changes
- Fixed bug caused by missing double quotes in
Clean Launch
task of.vscode/tasks.json
resulting in incorrect interpretation of paths containing spaces. - Changed incorrect usage of
CMAKE_VISIBILITY_INLINES_HIDDEN
property toVISIBILITY_INLINES_HIDDEN
inCMakeLists.txt
.
Version 20211128
Changes
- Fixed bug caused by uses of workspace root directory not being quoted in
Prepare Launch
task of.vscode/tasks.json
resulting in space-containing paths failing to launch and creating extraneous directories in workspace root directory.
Version 20211126
Changes
- Added
mdk.version
to.vscode/settings.json
. - Changed use of deprecated declarations from an error into a warning.
Version 20211120
Changes
- Added
ms-vscode.cmake-tools
tounwantedRecommendations
in.vscode/extensions.json
. - Decreased optimization level of release builds to
-O2
.
Version 20211030
Changes
- Fixed issue in
CMakeLists.txt
resulting inACKNOWLEDGMENTS
directory not getting packaged. - Updated
Obj Event Listener
snippet to use latestevent->handle
signature.
Version 20210611
Changes
- Fix a compatibility issue in
CMakeLists.txt
that prevented it from working on slightly older versions of CMake. - Removed comments from
.vscode/settings.json
since JSON doesn't technically support them. - Added 32-bit support as a requirement in
README.md
.
Version 20210606
Changes
- Fixed incorrect information in default
LICENSE.txt
.
Version 20210529
Changes
- Corrected outdated information in
README.md
. - Moved definitions of
authors
andminimum_mre_version
fromModInfo.json.in
toCMakeLists.txt
. - Updated license to reflect new location of
authors
definition. - Updated code snippets to be compatible with the latest version of the MRE.
- Removed trailing newline at the end of several files.
Version 20210515
Changes
- Refactored
CMakeLists.txt
into being the definitive source of some mod information. This relaxes the minimum required CMake version from3.19
to3.12
. - Changed clang-format style from
LLVM
toChromium
. - Added
mre.error.promote_unhandled
with defaulttrue
toaer_config.toml.in
. - Updated
Check/Handle Error
snippet to use new MRE error handling system. - Simplified
Get/Draw Inst AABB
snippet intoGet Inst AABB
. - Fixed bug in
Obj Event Listener
snippet.