Skip to content

Commit 707a7bb

Browse files
committed
Update CHANGELOG and Rebuild nuklear.h (2)
1 parent 4047d1b commit 707a7bb

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

clib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuklear",
3-
"version": "4.12.9",
3+
"version": "4.13.1",
44
"repo": "Immediate-Mode-UI/Nuklear",
55
"description": "A small ANSI C gui toolkit",
66
"keywords": ["gl", "ui", "toolkit"],

nuklear.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30738,6 +30738,11 @@ nk_tooltipfv(struct nk_context *ctx, const char *fmt, va_list args)
3073830738
/// - [y]: Minor version with non-breaking API and library changes
3073930739
/// - [z]: Patch version with no direct changes to the API
3074030740
///
30741+
/// - 2025/10/18 (4.13.1) - Fix UTF-8 clipboard handling
30742+
/// POSSIBLE BREAKING CHANGE for custom backend (copy/paste)
30743+
/// (1) length as byte count in copy callback(nk_do_edit)
30744+
/// (2) Fix nk_str_insert_text_char and nk_str_insert_str_char
30745+
/// (3) Fix UTF-8 cursor(nk_textedit_paste)
3074130746
/// - 2025/11/15 (4.13.0) - Fix: nk_property not updating 'win->edit.active'
3074230747
/// Add new updated demo: sdl3_renderer
3074330748
/// - 2025/10/08 (4.12.8) - Fix nk_widget_text to use NK_TEXT_ALIGN_LEFT by default,
@@ -30749,7 +30754,7 @@ nk_tooltipfv(struct nk_context *ctx, const char *fmt, va_list args)
3074930754
/// - 2025/04/06 (4.12.7) - Fix text input navigation and mouse scrolling
3075030755
/// - 2025/03/29 (4.12.6) - Fix unitialized data in nk_input_char
3075130756
/// - 2025/03/05 (4.12.5) - Fix scrolling knob also scrolling parent window, remove dead code
30752-
/// - 2024/12/11 (4.12.4) - Fix array subscript [0, 0] is outside array bounds of char[1]
30757+
/// - 2024/12/11 (4.12.4) - Fix array subscript [0, 0] is outside array bounds of char[1]
3075330758
/// - 2024/12/11 (4.12.3) - Fix border color for property widgets
3075430759
/// - 2024/11/20 (4.12.2) - Fix int/float type conversion warnings in `nk_roundf`
3075530760
/// - 2024/03/07 (4.12.1) - Fix bitwise operations warnings in C++20

src/CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
/// - [y]: Minor version with non-breaking API and library changes
88
/// - [z]: Patch version with no direct changes to the API
99
///
10+
/// - 2025/10/18 (4.13.1) - Fix UTF-8 clipboard handling
11+
/// POSSIBLE BREAKING CHANGE for custom backend (copy/paste)
12+
/// (1) length as byte count in copy callback(nk_do_edit)
13+
/// (2) Fix nk_str_insert_text_char and nk_str_insert_str_char
14+
/// (3) Fix UTF-8 cursor(nk_textedit_paste)
1015
/// - 2025/11/15 (4.13.0) - Fix: nk_property not updating 'win->edit.active'
1116
/// Add new updated demo: sdl3_renderer
1217
/// - 2025/10/08 (4.12.8) - Fix nk_widget_text to use NK_TEXT_ALIGN_LEFT by default,

0 commit comments

Comments
 (0)