Skip to content

Commit 11f0c5f

Browse files
committed
Version 2.3.2
1 parent d391778 commit 11f0c5f

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## axmol-2.3.2 Jan.21 2025
2+
3+
## Bug fixes
4+
5+
- Fix bit op error on lua < 5.4 by @halx99
6+
- Fix luajit luaL_openlibs crash on android by @halx99
7+
- Fix setup.ps1 Error in parsing PowerShell and OS versions by @halx99
8+
- Fix cpp template scene listeners leaked by @halx99
9+
10+
## Improvements
11+
12+
- Fix clang19 compile warnings
13+
- Improve 7z cmdline compatibility
14+
- DrawNode: new method: drawColoredTriangle(const Vec2* vertices3, const Color4B* color3) by @aismann in https://github.com/axmolengine/axmol/pull/2305
15+
- Committing luabindings for commit 5c84ccd by @axmol-bot in https://github.com/axmolengine/axmol/pull/2307
16+
- Correctly load resources that exist in a different folder to TMX file by @rh101 in https://github.com/axmolengine/axmol/pull/2316
17+
- Update DevSetup.md for Android by @rh101 in https://github.com/axmolengine/axmol/pull/2319
18+
- Add support for the creation of layers that are set to invisible in tilemap by @rh101 in https://github.com/axmolengine/axmol/pull/2321
19+
- Committing luabindings for commit 2212048 by @axmol-bot in https://github.com/axmolengine/axmol/pull/2323
20+
- Issue Template: Add Documentation_report.md by @aismann in https://github.com/axmolengine/axmol/pull/2326
21+
- Use correct color type to fix debug drawing in PhysicsWorld by @rh101 in https://github.com/axmolengine/axmol/pull/2334
22+
- Committing luabindings for commit 3da481f by @axmol-bot in https://github.com/axmolengine/axmol/pull/2335
23+
- Add more fine-grained callbacks supports for MenuItem by @MartinLutherSu in https://github.com/axmolengine/axmol/pull/2342
24+
25+
### 3rdparty updates
26+
27+
- libpng: 1.6.44 ==> 1.6.45
28+
- fmt: 11.1.1 ==> 11.1.2
29+
130
## axmol-2.3.1 Jan.5 2025
231

332
### Bug fixes

core/axmolver.h.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// 00 03 08 00
66
#define AX_VERSION_MAJOR 2
77
#define AX_VERSION_MINOR 3
8-
#define AX_VERSION_PATCH 1
8+
#define AX_VERSION_PATCH 2
99

1010
/* Define axmol version helper macros */
1111
#define AX_VERSION_MAKE(a, b, c) ((a << 16) | (b << 8) | (c & 0xff))

0 commit comments

Comments
 (0)