diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 3cf8194daf95..3d3df032a69f 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -48,7 +48,7 @@ Breaking changes: Other changes: - Tables: Made it possible to use SameLine(0,0) after TableNextColumn() or - TableSetColumnIndex() in order to reuse line height from previous cell. (#3740) + TableSetColumnIndex() in order to reuse line pos/height from previous cell. (#3740) - Tables: Made it possible to change style.CellPadding.y between rows. (#3740) - Nav, TreeNode: Pressing Left with ImGuiTreeNodeFlags_NavLeftJumpsBackHere now goes through proper navigation logic: honor scrolling and selection. (#1079, #1131) diff --git a/imgui.cpp b/imgui.cpp index 5cea6c8abeb4..07e4ad5a38be 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.9 WIP +// dear imgui, v1.89.9 // (main code and documentation) // Help: diff --git a/imgui.h b/imgui.h index fa39c2d34c5e..c7f534485f22 100644 --- a/imgui.h +++ b/imgui.h @@ -1,4 +1,4 @@ -// dear imgui, v1.89.9 WIP +// dear imgui, v1.89.9 // (headers) // Help: @@ -25,8 +25,8 @@ // Library Version // (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345') -#define IMGUI_VERSION "1.89.9 WIP" -#define IMGUI_VERSION_NUM 18985 +#define IMGUI_VERSION "1.89.9" +#define IMGUI_VERSION_NUM 18990 #define IMGUI_HAS_TABLE /* diff --git a/imgui_demo.cpp b/imgui_demo.cpp index 6d7101fb147e..e3752b50b35d 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.9 WIP +// dear imgui, v1.89.9 // (demo code) // Help: diff --git a/imgui_draw.cpp b/imgui_draw.cpp index f8750f55a0e5..205ce76fc27c 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.9 WIP +// dear imgui, v1.89.9 // (drawing and font code) /* diff --git a/imgui_internal.h b/imgui_internal.h index 55918acbb4b4..70a6233444ba 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -1,4 +1,4 @@ -// dear imgui, v1.89.9 WIP +// dear imgui, v1.89.9 // (internal structures/api) // You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility. diff --git a/imgui_tables.cpp b/imgui_tables.cpp index 9f3d1a8296a1..8fdcbcf84e01 100644 --- a/imgui_tables.cpp +++ b/imgui_tables.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.9 WIP +// dear imgui, v1.89.9 // (tables and columns code) /* diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp index e2772c036219..ec3eca366049 100644 --- a/imgui_widgets.cpp +++ b/imgui_widgets.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.9 WIP +// dear imgui, v1.89.9 // (widgets code) /*