Skip to content

Commit 9e106da

Browse files
authored
Prepare release v2.1.4 (#2037)
1 parent 1c33176 commit 9e106da

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

1k/1kiss.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ $manifest = @{
205205
cmake = '3.23.0+';
206206
ninja = '1.10.0+';
207207
python = '3.8.0+';
208-
jdk = '11.0.23+';
208+
jdk = '17.0.10+'; # jdk17+ works for android cmdlinetools 7.0+
209209
emsdk = '3.1.53+';
210210
cmdlinetools = '7.0+'; # android cmdlinetools
211211
}
@@ -225,7 +225,7 @@ $cmake_generators = @{
225225
$channels = @{}
226226

227227
# refer to: https://developer.android.com/studio#command-line-tools-only
228-
$cmdlinetools_rev = '11076708'
228+
$cmdlinetools_rev = '11076708' # 12.0
229229

230230
$android_sdk_tools = @{
231231
'build-tools' = '34.0.0'

1k/manifest.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99

1010
# add or overwrite tool version like follow
1111
if ($Global:is_axmol_app -or $Global:is_axmol_engine) {
12-
$manifest['nuget'] = '5.5.1' # since 5.6.0, require .net 4.0
12+
$manifest['nuget'] = '5.5.1' # since 5.6.0, requires .net 4.0
1313
$manifest['glslcc'] = '1.9.5+'
1414
$manifest['cmake'] = '3.29.3+'
1515
$manifest['emsdk'] = '3.1.63+'
1616
$manifest['jdk'] = '17.0.10+'
1717
}
1818

1919
# android sdk tools
20-
$android_sdk_tools['build-tools'] = '34.0.0' # match with AGP, current 8.2.1 android studio 2023.1.1
20+
$android_sdk_tools['build-tools'] = '34.0.0' # match with AGP-8.2.1+, android studio 2023.1.1+
2121
$android_sdk_tools['platforms'] = 'android-34'

3rdparty/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
## c-ares
2424
- [![Upstream](https://img.shields.io/github/v/release/c-ares/c-ares?label=Upstream)](https://github.com/c-ares/c-ares)
25-
- Version: 1.29.0
25+
- Version: 1.32.2
2626
- License: MIT
2727

2828
## Chipmunk2D
@@ -174,7 +174,7 @@
174174

175175
## OpenSSL
176176
- [![Upstream](https://img.shields.io/github/v/tag/openssl/openssl?label=Upstream)](https://github.com/openssl/openssl)
177-
- Version: 3.0.13
177+
- Version: 3.3.1
178178
- License: Apache-2.0
179179

180180
## png

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
- Use new logging system for audio by @halx99
5959
- Update DrawNodeV2 0.94 by @aismann in https://github.com/axmolengine/axmol/pull/2008
6060
- Ensure the RenderTexture reference is valid on threaded saveToFile task completion by @rh101 in https://github.com/axmolengine/axmol/pull/2024
61+
- Some warning and other minor fixes by @smilediver in https://github.com/axmolengine/axmol/pull/2038
6162

6263

6364
### sdks & tools updates
@@ -68,12 +69,15 @@
6869

6970
### 3rdparty Updates
7071

72+
- openssl: 3.0.13 ==> 3.3.1
7173
- Clipper2: 1.3.0 ==> 1.4.0
7274
- simdjson: 3.9.2 ==> 3.9.5
7375
- fmtlib: 10.2.1 ==> 11.0.1
7476
- yasio: 4.2.2 ==> 4.2.3
7577
- oboe: 1.8.1 ==> 1.9.0
7678
- plainlua: 5.4.6 ==> 5.4.7
79+
- c-ares: 1.29.0 ==> 1.32.2
80+
- luajit: 2.1-d06beb0 ==> 2.1-04dca79
7781

7882
## axmol-2.1.3 May.26 2024
7983

manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"versions": {
3-
"1kdist": "v86",
3+
"1kdist": "v88",
44
"oboe": "1.9.0",
55
"kcp": "v1.7-f2aa30e",
66
"lz4": "v1.9.4",
77
"yaml-cpp": "0.8.0",
8-
"box2d-optimized": "7ef46c1",
98
"sample-assets": "master"
109
},
1110
"mirrors": {

tests/cpp-tests/Source/NetworkTest/WebSocketTest/WebSocketTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ void WebSocketTest::onError(network::WebSocket* ws, const network::WebSocket::Er
271271
{
272272
AXLOGD("Error was fired, error code: {}", static_cast<int>(error));
273273
char buf[100] = {0};
274-
sprintf(buf, "An error was fired, code: {}", static_cast<int>(error));
274+
sprintf(buf, "An error was fired, code: %s", static_cast<int>(error));
275275

276276
if (ws == _wsiSendText)
277277
{
@@ -521,7 +521,7 @@ void WebSocketDelayTest::doReceiveText()
521521
void WebSocketDelayTest::onOpen(network::WebSocket* ws)
522522
{
523523
char status[256] = {0};
524-
sprintf(status, "Opened, url: {}, protocol: {}", ws->getUrl(), ws->getProtocol());
524+
sprintf(status, "Opened, url: %s, protocol: %s", ws->getUrl(), ws->getProtocol());
525525

526526
AXLOGD("Websocket ({}) was opened, url: {}, protocol: {}", fmt::ptr(ws), ws->getUrl(), ws->getProtocol());
527527
if (ws == _wsiSendText)

0 commit comments

Comments
 (0)