Skip to content

Commit 8ccff82

Browse files
committed
Merge branch 'master' into docking
2 parents 03f3c8d + 0e7cd69 commit 8ccff82

File tree

8 files changed

+24
-9
lines changed

8 files changed

+24
-9
lines changed

docs/CHANGELOG.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,21 @@ HOW TO UPDATE?
3535
and API updates have been a little more frequent lately. They are documented below and in imgui.cpp and should not affect all users.
3636
- Please report any issue!
3737

38+
-----------------------------------------------------------------------
39+
VERSION 1.92.4 WIP (In Progress)
40+
-----------------------------------------------------------------------
41+
42+
Breaking Changes:
43+
44+
Other Changes:
45+
46+
Docking+Viewports Branch:
47+
48+
- Nav: fixed a crash that could occur when opening a popup following the processing
49+
of a global shortcut while no windows were focused (the fix done in 1.92.3 was
50+
incomplete for docking branch).
51+
52+
3853
-----------------------------------------------------------------------
3954
VERSION 1.92.3 (Released 2025-09-17)
4055
-----------------------------------------------------------------------

imgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.92.3
1+
// dear imgui, v1.92.4 WIP
22
// (main code and documentation)
33

44
// Help:

imgui.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.92.3
1+
// dear imgui, v1.92.4 WIP
22
// (headers)
33

44
// Help:
@@ -28,8 +28,8 @@
2828

2929
// Library Version
3030
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
31-
#define IMGUI_VERSION "1.92.3"
32-
#define IMGUI_VERSION_NUM 19230
31+
#define IMGUI_VERSION "1.92.4 WIP"
32+
#define IMGUI_VERSION_NUM 19231
3333
#define IMGUI_HAS_TABLE // Added BeginTable() - from IMGUI_VERSION_NUM >= 18000
3434
#define IMGUI_HAS_TEXTURES // Added ImGuiBackendFlags_RendererHasTextures - from IMGUI_VERSION_NUM >= 19198
3535
#define IMGUI_HAS_VIEWPORT // In 'docking' WIP branch.

imgui_demo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.92.3
1+
// dear imgui, v1.92.4 WIP
22
// (demo code)
33

44
// Help:

imgui_draw.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.92.3
1+
// dear imgui, v1.92.4 WIP
22
// (drawing and font code)
33

44
/*

imgui_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.92.3
1+
// dear imgui, v1.92.4 WIP
22
// (internal structures/api)
33

44
// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.

imgui_tables.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.92.3
1+
// dear imgui, v1.92.4 WIP
22
// (tables and columns code)
33

44
/*

imgui_widgets.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.92.3
1+
// dear imgui, v1.92.4 WIP
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)