Skip to content

Commit 4a10b25

Browse files
committed
Updated ImGui / CImGui to 1.92.0
1 parent b57383a commit 4a10b25

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+10917
-4975
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@
1818

1919
![alt](https://github.com/dinau/imguin/actions/workflows/windows.yml/badge.svg) ![alt](https://github.com/dinau/imguin/actions/workflows/linux.yml/badge.svg)
2020

21-
Updated to latest Dear ImGui / CImGui version: : **v1.91.9b dock** (2025/05)
21+
Updated to latest [Dear ImGui](https://github.com/ocornut/imgui) / [CImGui](https://github.com/cimgui/cimgui) version: : **v1.92.0 dock** (2025/07)
2222

23-
This project is Dear ImGui wrapper library for Nim language.
23+
This project is Dear ImGui wrapper library for Nim language [^notice].
2424

25-
- Notice
26-
It may be better to use the **mainstream** project [nimgl/imgui](https://github.com/nimgl/imgui) (ImGui v1.85)
25+
[^notice]: It may be better to use the **mainstream** project [nimgl/imgui](https://github.com/nimgl/imgui) (ImGui v1.85)
2726
,updated project [nimgl-imgui](https://github.com/dinau/nimgl-imgui) (ImGui v1.89.9) ,sub project [nim_implot](https://github.com/dinau/nim_implot) and test project [nimgl_test](https://github.com/dinau/nimgl_test),
2827
or [https://github.com/daniel-j/nimgl-imgui](https://github.com/daniel-j/nimgl-imgui) (ImGui v1.91.1)
2928

@@ -32,7 +31,7 @@ or [https://github.com/daniel-j/nimgl-imgui](https://github.com/daniel-j/nimgl-i
3231

3332
---
3433

35-
See examples project [ImGuin_examples](https://github.com/dinau/imguin_examples)
34+
Note: See examples project [ImGuin_examples](https://github.com/dinau/imguin_examples)
3635

3736
![alt](https://github.com/dinau/imguin/raw/main/src/img/topimage.gif)
3837

@@ -176,6 +175,7 @@ Windows OS is all OK.
176175

177176
| ImGui/CImGui Ver. | ImGuin Ver. | Date | Linux Debian Family (3) |
178177
| :--------------: | --------- | :----: | :---: |
178+
| 1.92.0 dock | 1.92.0.0 | 2025/07 | OK |
179179
| 1.91.9b dock | 1.91.9.4 | 2025/06 | OK |
180180
| 1.91.8dock | 1.91.8.2 | 2025/03 | OK |
181181
| 1.91.6dock | 1.91.6.15 | 2025/01 | (4) |
@@ -190,7 +190,7 @@ Windows OS is all OK.
190190
(1) Except imnodes and SDL2 example.
191191
(2) Works well only if it is compiled debug mode.
192192
(3) Dedian / Ubuntu familiy.
193-
(4) Doesn't check, but probably will works well.
193+
(4) Doesn't check, but probably will work well.
194194
195195
#### TODO
196196

imguin.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package
22

3-
version = "1.91.9.4"
3+
version = "1.92.0.0"
44
author = "dinau"
55
description = "Imguin: ImGui / ImPlot / ImNodes wrapper using Futhark"
66
license = "MIT"

src/imguin/cimgui.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ else: # Use generated header by Futark in your programs.
8989
{.pop.}
9090

9191
# for glfw3
92-
when false:
93-
# Use GLFW of glfw-4.0.0 package
92+
when true:
93+
# Use GLFW of glfw-4.x.x package
9494
const dirs = staticExec("nimble path glfw").strip.split("\n")
9595
{.passC:"-I" & joinPath(dirs[0],"glfw","private","glfw","include").replace("\\", "/").} # dirs[0]: Select max hash version: TODO
9696
else:

0 commit comments

Comments
 (0)