From fef33891579dda780028a10401e851ddb828e983 Mon Sep 17 00:00:00 2001 From: ocornut Date: Mon, 4 Sep 2023 14:22:39 +0200 Subject: [PATCH] Version 1.89.9 --- docs/CHANGELOG.txt | 2 +- imgui.cpp | 2 +- imgui.h | 6 +++--- imgui_demo.cpp | 2 +- imgui_draw.cpp | 2 +- imgui_internal.h | 2 +- imgui_tables.cpp | 2 +- imgui_widgets.cpp | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 3cf8194da..3d3df032a 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 5cea6c8ab..07e4ad5a3 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 fa39c2d34..c7f534485 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 6d7101fb1..e3752b50b 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 f8750f55a..205ce76fc 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 55918acbb..70a623344 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 9f3d1a829..8fdcbcf84 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 e2772c036..ec3eca366 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) /*