Skip to content

Commit fef3389

Browse files
committed
Version 1.89.9
1 parent 7b5fb33 commit fef3389

8 files changed

+10
-10
lines changed

docs/CHANGELOG.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Breaking changes:
4848
Other changes:
4949

5050
- Tables: Made it possible to use SameLine(0,0) after TableNextColumn() or
51-
TableSetColumnIndex() in order to reuse line height from previous cell. (#3740)
51+
TableSetColumnIndex() in order to reuse line pos/height from previous cell. (#3740)
5252
- Tables: Made it possible to change style.CellPadding.y between rows. (#3740)
5353
- Nav, TreeNode: Pressing Left with ImGuiTreeNodeFlags_NavLeftJumpsBackHere now goes
5454
through proper navigation logic: honor scrolling and selection. (#1079, #1131)

imgui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.9 WIP
1+
// dear imgui, v1.89.9
22
// (main code and documentation)
33

44
// Help:

imgui.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.9 WIP
1+
// dear imgui, v1.89.9
22
// (headers)
33

44
// Help:
@@ -25,8 +25,8 @@
2525

2626
// Library Version
2727
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
28-
#define IMGUI_VERSION "1.89.9 WIP"
29-
#define IMGUI_VERSION_NUM 18985
28+
#define IMGUI_VERSION "1.89.9"
29+
#define IMGUI_VERSION_NUM 18990
3030
#define IMGUI_HAS_TABLE
3131

3232
/*

imgui_demo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.9 WIP
1+
// dear imgui, v1.89.9
22
// (demo code)
33

44
// Help:

imgui_draw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.9 WIP
1+
// dear imgui, v1.89.9
22
// (drawing and font code)
33

44
/*

imgui_internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.9 WIP
1+
// dear imgui, v1.89.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.9 WIP
1+
// dear imgui, v1.89.9
22
// (tables and columns code)
33

44
/*

imgui_widgets.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.9 WIP
1+
// dear imgui, v1.89.9
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)