File tree
12 files changed
+106
-17
lines changed- gtk-server
- ioio
- nuklear
- raylib
- websocket
12 files changed
+106
-17
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| 65 | + | |
| 66 | + | |
65 | 67 | | |
66 | 68 | | |
67 | 69 | | |
| |||
72 | 74 | | |
73 | 75 | | |
74 | 76 | | |
| 77 | + | |
| 78 | + | |
75 | 79 | | |
76 | 80 | | |
77 | 81 | | |
| |||
82 | 86 | | |
83 | 87 | | |
84 | 88 | | |
| 89 | + | |
| 90 | + | |
85 | 91 | | |
86 | 92 | | |
87 | 93 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
- .github/workflows/ccpp.yml+33-5
- .github/workflows/create-tag.yml+4-3
- clib.json+1-1
- demo/allegro5/nuklear_allegro5.h+1
- demo/common/filebrowser/stb_image.h+2.4k-947
- demo/common/overview.c+60-46
- demo/d3d11/nuklear_d3d11.h+1
- demo/d3d12/nuklear_d3d12.h+1
- demo/d3d9/nuklear_d3d9.h+1
- demo/gdi/nuklear_gdi.h+1-1
- demo/gdi_native_nuklear/nuklear_gdi.h+1-1
- demo/glfw_opengl2/nuklear_glfw_gl2.h+2
- demo/glfw_opengl3/nuklear_glfw_gl3.h+3
- demo/glfw_opengl4/nuklear_glfw_gl4.h+3
- demo/glfw_vulkan/.clang-format+4
- demo/glfw_vulkan/.gitignore+3
- demo/glfw_vulkan/Makefile+29
- demo/glfw_vulkan/README.md+52
- demo/glfw_vulkan/main.c+2.2k
- demo/glfw_vulkan/nuklear_glfw_vulkan.h+1.6k
- demo/glfw_vulkan/shaders/demo.frag+12
- demo/glfw_vulkan/shaders/demo.vert+10
- demo/glfw_vulkan/src/Makefile+11
- demo/glfw_vulkan/src/README.md+5
- demo/glfw_vulkan/src/nuklear_glfw_vulkan.in.h+1.4k
- demo/glfw_vulkan/src/nuklearshaders/nuklear.frag+13
- demo/glfw_vulkan/src/nuklearshaders/nuklear.vert+23
- demo/sdl2surface_rawfb/sdl2surface_rawfb.h+4
- demo/sdl_opengl2/nuklear_sdl_gl2.h+2
- demo/sdl_opengl3/nuklear_sdl_gl3.h+2
- demo/sdl_opengles2/nuklear_sdl_gles2.h+2-1
- demo/sdl_renderer/nuklear_sdl_renderer.h+2-2
- demo/sfml_opengl2/nuklear_sfml_gl2.h+2
- demo/sfml_opengl3/nuklear_sfml_gl3.h+2-1
- demo/wayland_rawfb/nuklear_raw_wayland.h+4
- demo/x11/nuklear_xlib.h+3
- demo/x11_opengl3/nuklear_xlib_gl3.h+1
- demo/x11_rawfb/nuklear_rawfb.h+4
- demo/x11_rawfb/nuklear_xlib.h+3
- demo/x11_xft/nuklear_xlib.h+3
- nuklear.h+611-195
- src/CHANGELOG+2
- src/nuklear.h+56-1
- src/nuklear_button.c+23-16
- src/nuklear_chart.c+14-10
- src/nuklear_color.c+10
- src/nuklear_color_picker.c+1-1
- src/nuklear_combo.c+42-33
- src/nuklear_contextual.c+31-26
- src/nuklear_edit.c+15-4
- src/nuklear_internal.h+7-7
- src/nuklear_menu.c+5-5
- src/nuklear_progress.c+9-9
- src/nuklear_property.c+7-5
- src/nuklear_selectable.c+9-6
- src/nuklear_slider.c+10-9
- src/nuklear_style.c+76-17
- src/nuklear_text.c+2-2
- src/nuklear_toggle.c+154-35
- src/nuklear_tree.c+10-9
- src/nuklear_widget.c+127
- src/nuklear_window.c+1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
160 | 160 | | |
161 | 161 | | |
162 | 162 | | |
| 163 | + | |
163 | 164 | | |
164 | 165 | | |
165 | 166 | | |
| |||
262 | 263 | | |
263 | 264 | | |
264 | 265 | | |
| 266 | + | |
| 267 | + | |
265 | 268 | | |
266 | 269 | | |
267 | 270 | | |
| |||
273 | 276 | | |
274 | 277 | | |
275 | 278 | | |
| 279 | + | |
276 | 280 | | |
277 | 281 | | |
278 | 282 | | |
| |||
425 | 429 | | |
426 | 430 | | |
427 | 431 | | |
| 432 | + | |
428 | 433 | | |
429 | 434 | | |
430 | 435 | | |
| |||
566 | 571 | | |
567 | 572 | | |
568 | 573 | | |
| 574 | + | |
569 | 575 | | |
570 | 576 | | |
571 | 577 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
37 | 38 | | |
38 | 39 | | |
39 | 40 | | |
| |||
129 | 130 | | |
130 | 131 | | |
131 | 132 | | |
| 133 | + | |
| 134 | + | |
132 | 135 | | |
133 | 136 | | |
134 | 137 | | |
| |||
140 | 143 | | |
141 | 144 | | |
142 | 145 | | |
| 146 | + | |
143 | 147 | | |
144 | 148 | | |
145 | 149 | | |
| |||
209 | 213 | | |
210 | 214 | | |
211 | 215 | | |
| 216 | + | |
212 | 217 | | |
213 | 218 | | |
214 | 219 | | |
| |||
246 | 251 | | |
247 | 252 | | |
248 | 253 | | |
| 254 | + | |
249 | 255 | | |
250 | 256 | | |
251 | 257 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
452 | 452 | | |
453 | 453 | | |
454 | 454 | | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
455 | 472 | | |
456 | 473 | | |
457 | 474 | | |
| |||
1531 | 1548 | | |
1532 | 1549 | | |
1533 | 1550 | | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + | |
| 1558 | + | |
| 1559 | + | |
| 1560 | + | |
| 1561 | + | |
| 1562 | + | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
| 1567 | + | |
| 1568 | + | |
1534 | 1569 | | |
1535 | 1570 | | |
1536 | 1571 | | |
| |||
1654 | 1689 | | |
1655 | 1690 | | |
1656 | 1691 | | |
| 1692 | + | |
| 1693 | + | |
| 1694 | + | |
| 1695 | + | |
| 1696 | + | |
| 1697 | + | |
| 1698 | + | |
| 1699 | + | |
| 1700 | + | |
| 1701 | + | |
| 1702 | + | |
| 1703 | + | |
| 1704 | + | |
1657 | 1705 | | |
1658 | 1706 | | |
1659 | 1707 | | |
| |||
2473 | 2521 | | |
2474 | 2522 | | |
2475 | 2523 | | |
| 2524 | + | |
| 2525 | + | |
| 2526 | + | |
| 2527 | + | |
| 2528 | + | |
| 2529 | + | |
| 2530 | + | |
| 2531 | + | |
| 2532 | + | |
| 2533 | + | |
| 2534 | + | |
| 2535 | + | |
| 2536 | + | |
2476 | 2537 | | |
2477 | 2538 | | |
2478 | 2539 | | |
| |||
2918 | 2979 | | |
2919 | 2980 | | |
2920 | 2981 | | |
2921 | | - | |
| 2982 | + | |
2922 | 2983 | | |
2923 | 2984 | | |
2924 | 2985 | | |
| |||
2938 | 2999 | | |
2939 | 3000 | | |
2940 | 3001 | | |
| 3002 | + | |
| 3003 | + | |
| 3004 | + | |
| 3005 | + | |
| 3006 | + | |
| 3007 | + | |
| 3008 | + | |
| 3009 | + | |
| 3010 | + | |
| 3011 | + | |
2941 | 3012 | | |
2942 | 3013 | | |
2943 | 3014 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2996 | 2996 | | |
2997 | 2997 | | |
2998 | 2998 | | |
2999 | | - | |
| 2999 | + | |
3000 | 3000 | | |
3001 | 3001 | | |
3002 | 3002 | | |
| |||
- LICENSE+1-1
- README.md+1-1
- examples/Makefile+1-1
- examples/controls_test_suite/controls_test_suite.c+1-1
- examples/custom_file_dialog/custom_file_dialog.c+1-1
- examples/custom_file_dialog/gui_window_file_dialog.h+1-1
- examples/custom_input_box/custom_input_box.c+3-40
- examples/custom_sliders/custom_sliders.c+1-1
- examples/image_exporter/image_exporter.c+1-1
- examples/image_importer_raw/image_importer_raw.c+1-1
- examples/portable_window/portable_window.c+1-1
- examples/property_list/property_list.c+1-1
- examples/scroll_panel/scroll_panel.c+1-1
- examples/style_selector/style_selector.c+39-23
- examples/styles/style_ashes.h+578
- examples/styles/style_bluish.h+359-94
- examples/styles/style_candy.h+589
- examples/styles/style_cherry.h+617
- examples/styles/style_cyber.h+408-157
- examples/styles/style_dark.h+391-149
- examples/styles/style_enefete.h+600
- examples/styles/style_jungle.h+2-2
- examples/styles/style_lavanda.h+2-2
- examples/styles/style_sunny.h+616
- examples/styles/style_terminal.h+383-147
- src/raygui.h+115-123
- styles/ashes/style_ashes.h+1-1
- styles/bluish/style_bluish.h+1-1
- styles/candy/style_candy.h+1-1
- styles/cherry/style_cherry.h+1-1
- styles/cyber/style_cyber.h+1-1
- styles/dark/style_dark.h+1-1
- styles/enefete/style_enefete.h+1-1
- styles/jungle/style_jungle.h+1-1
- styles/lavanda/style_lavanda.h+1-1
- styles/sunny/style_sunny.h+1-1
- styles/terminal/style_terminal.h+1-1
0 commit comments