Skip to content

Commit 7787635

Browse files
committed
Version 2.11.3
1 parent 5bacbbd commit 7787635

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# axmol-2.11.3 (Feb 23, 2026)
2+
3+
## Bug fixes
4+
5+
- Fix cmake symlink path in gradle by @halx99
6+
- Fix Downloader storage issue, new options for wasm by @AlexandreK38 in [#3049](https://github.com/axmolengine/axmol/pull/3049)
7+
- Fix chipmunk2D debug draw issues, resize designSize, removed DrawInfo by @aismann in [#3050](https://github.com/axmolengine/axmol/pull/3050)
8+
- Fix omitted AudioEngine AudioProfile parameter in play2d by @theSlyest in [#3065](https://github.com/axmolengine/axmol/pull/3065)
9+
110
# axmol-2.11.2 (Jan 15, 2026)
211

312
## Bug fixes

cmake/Modules/AXBuildHelpers.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ macro(ax_setup_app_props app_name)
654654
# string(APPEND EMSCRIPTEN_LINK_FLAGS " -gsplit-dwarf")
655655

656656
if(AX_WASM_GENERATE_SYMBOL_FILE)
657-
string(APPEND EMSCRIPTEN_LINK_FLAGS "-g --emit-symbol-map")
657+
string(APPEND EMSCRIPTEN_LINK_FLAGS " -g --emit-symbol-map")
658658
endif()
659659

660660
if(NOT DEFINED _APP_RES_FOLDER)

core/axmolver.h.in

Lines changed: 1 addition & 1 deletion
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 11
8-
#define AX_VERSION_PATCH 2
8+
#define AX_VERSION_PATCH 3
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)