Skip to content

Commit cb16be3

Browse files
committed
Version 1.90.9
1 parent c554c40 commit cb16be3

8 files changed

+14
-11
lines changed

docs/CHANGELOG.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ HOW TO UPDATE?
3636
- Please report any issue!
3737

3838
-----------------------------------------------------------------------
39-
VERSION 1.90.9 WIP (In Progress)
39+
VERSION 1.90.9 (Released 2024-07-01)
4040
-----------------------------------------------------------------------
4141

42+
Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.90.9
43+
4244
Breaking changes:
4345

4446
- Removed old nested structure: renaming ImGuiStorage::ImGuiStoragePair type to
@@ -48,6 +50,7 @@ Breaking changes:
4850
BeginChild() calls anyhow. (#7687) [@cfillion]
4951
- old: BeginChild("Name", size, 0, ImGuiWindowFlags_NavFlattened);
5052
- new: BeginChild("Name", size, ImGuiChildFlags_NavFlattened, 0)
53+
Kept inline redirection flag (will obsolete).
5154
- Style: renamed tab colors for clarity and consistency with other changes: (#261, #351)
5255
- ImGuiCol_TabActive -> ImGuiCol_TabSelected
5356
- ImGuiCol_TabUnfocused -> ImGuiCol_TabDimmed
@@ -56,7 +59,7 @@ Breaking changes:
5659
- IO: io.ClearInputKeys() (first exposed in 1.89.8) doesn't clear mouse data.
5760
Newly added io.ClearInputMouse() does. (#4921)
5861
- Drag and Drop: renamed ImGuiDragDropFlags_SourceAutoExpirePayload to
59-
ImGuiDragDropFlags_PayloadAutoExpire. Kept inline redirecting enum (will obsolete). (#1725, #143).
62+
ImGuiDragDropFlags_PayloadAutoExpire. Kept inline redirecting enum (will obsolete). (#1725, #143)
6063

6164
Other changes:
6265

imgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.90.9 WIP
1+
// dear imgui, v1.90.9
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.90.9 WIP
1+
// dear imgui, v1.90.9
22
// (headers)
33

44
// Help:
@@ -27,8 +27,8 @@
2727

2828
// Library Version
2929
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
30-
#define IMGUI_VERSION "1.90.9 WIP"
31-
#define IMGUI_VERSION_NUM 19085
30+
#define IMGUI_VERSION "1.90.9"
31+
#define IMGUI_VERSION_NUM 19090
3232
#define IMGUI_HAS_TABLE
3333

3434
/*

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.90.9 WIP
1+
// dear imgui, v1.90.9
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.90.9 WIP
1+
// dear imgui, v1.90.9
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.90.9 WIP
1+
// dear imgui, v1.90.9
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.90.9 WIP
1+
// dear imgui, v1.90.9
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.90.9 WIP
1+
// dear imgui, v1.90.9
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)