Skip to content

Commit 095d176

Browse files
committed
Update ChangeLog build profile comment
1 parent 28371ab commit 095d176

File tree

3 files changed

+59
-3
lines changed

3 files changed

+59
-3
lines changed

1k/build.profiles

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,9 @@ jdk=17.0.10~17.0.13+
3838

3939
# The android ndk version
4040
# as stable as possible @setup.ps1 @gradle @axmol-cmdline
41-
# for android 15 16KB page size support, ndk-r23d only available on ci.android.com, refer:
41+
# for android 15 16KB page size support, rquire ndk r23d/r25(available on ci.android.com) or r27+, refer:
4242
# - https://developer.android.com/about/versions/15/behavior-changes-all#16-kb
4343
# - https://developer.android.google.cn/about/versions/15/behavior-changes-all?hl=zh-cn#16-kb
44-
# Android 15 16KB page size only supported by ndk r23 r25 from ci.android.com or r27+
4544
# In China Mainland, please download from https://pan.baidu.com/s/1neJydxOGTT7aCQvLLwbicw?pwd=qqiq
4645
# to $AX_ROOT/cache/, then run `setup.ps1 -p android`
4746
ndk=r23d

3rdparty/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@
234234

235235
## webp
236236
- [![Upstream](https://img.shields.io/github/v/tag/webmproject/libwebp?label=Upstream)](https://github.com/webmproject/libwebp)
237-
- Version: 1.4.0
237+
- Version: 1.5.0
238238
- License: Google Inc
239239

240240
## xsxml

CHANGELOG.md

+57
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,60 @@
1+
## axmol-2.3.0 Jan.1 2025
2+
3+
### Significant changes relative to 2.2.x:
4+
5+
- Add android15 16KB page size support by @halx99 in https://github.com/axmolengine/axmol/pull/2268
6+
- Improve build profiles by @halx99 in https://github.com/axmolengine/axmol/pull/2273
7+
- Rename `org.axmol*` to `dev.axmol*` by @halx99 in https://github.com/axmolengine/axmol/pull/2272
8+
- Rename `glslcc` to `axslcc` by @halx99 in https://github.com/axmolengine/axmol/pull/2271
9+
- Add support to create a minmal `axmol-bs` package for common cross platform build purpose by @halx99
10+
- Add vs2022 preview support in 1kiss.ps1 by @halx99
11+
- Update libclang to 19.1.6 for luabinding generator by @halx99
12+
- Download package to `cache` instead `tools/external`
13+
14+
### Bug fixes
15+
16+
- Fix Label create with long string cause random crash in windows by @halx99
17+
- Fix DrawNode::drawPie(DrawMode::Line, thickness =1) draw a closed line (like DrawMode::Semi) wrong by @aismann in https://github.com/axmolengine/axmol/pull/2217
18+
- Fix for Android build issue by @rh101 in https://github.com/axmolengine/axmol/pull/2225
19+
- Fix media player by @ paulocoutinhox in https://github.com/axmolengine/axmol/pull/2257
20+
- Fix android class name paths incorrect by @rh101 in https://github.com/axmolengine/axmol/pull/2276
21+
- Fix renderer test case batching by @rh101 in https://github.com/axmolengine/axmol/pull/2291
22+
23+
### Improvements
24+
25+
- Improve DrawNode::drawPie() by @aismann in https://github.com/axmolengine/axmol/pull/2222
26+
- Metal: enable mipmap support by @smilediver in https://github.com/axmolengine/axmol/pull/2235
27+
- Add support for selecting all text in editbox via CTRL+A by @rh101 in https://github.com/axmolengine/axmol/pull/2238
28+
- Ensure that git ignores build folders created in test projects by @rh101 in https://github.com/axmolengine/axmol/pull/2247
29+
- Detect CTRL+A key combination to select all text in EditBox by @rh101 in https://github.com/axmolengine/axmol/pull/2251
30+
- Prevent excessive calls to deleteBackward method which may cause crashes on Android by @rh101 in https://github.com/axmolengine/axmol/pull/2248
31+
- Updated website. by @danialias in https://github.com/axmolengine/axmol/pull/2274
32+
- Make win32 messageBox always TOPMOST by @aismann in https://github.com/axmolengine/axmol/pull/2221
33+
- Add printLeaks call to alternative Win32 main method by @rh101 in https://github.com/axmolengine/axmol/pull/2278
34+
- Add printLeaks call in appropriate location to help developers by @rh101 in https://github.com/axmolengine/axmol/pull/2275
35+
- Remove TTF Font charCode 65535 limit by @halx99
36+
- Allow publish from specified commitish for ci
37+
38+
### sdks updates
39+
40+
- emsdk: 3.1.67 ==> 3.1.73
41+
- AGP: 8.4.0 ==> 8.7.3
42+
- gradle: 8.8.0 ==> 8.11.1
43+
- android target sdk: 34 ==> 35
44+
45+
### 3rdparty updates
46+
47+
- astcenc: 4.8.0 ==> 5.1.0
48+
- c-ares: 1.34.1 ==> 1.34.4
49+
- curl: 8.10.1 ==> 8.11.1
50+
- flatbuffers: 24.3.25 ==> 1.1.0-815e6e7
51+
- fmt: 11.0.1 ==> 11.1.1
52+
- oboe: 1.9.0 ==> 1.9.3
53+
- webp: 1.4.0 ==> 1.5.0
54+
- jpeg-turbo: 3.0.4 ==> 3.1.0
55+
- luajit: 2.1-97813fb ==> 2.1-f73e649
56+
- imgui: 1.90.6 ==> 1.91.6
57+
158
## axmol-2.2.1 Oct.22 2024
259

360
### Bug fixes

0 commit comments

Comments
 (0)