From f7eea6387202f1174fdb7072311156d667a6826c Mon Sep 17 00:00:00 2001 From: ocornut Date: Tue, 1 Aug 2023 12:53:57 +0200 Subject: [PATCH] Version v1.89.8 --- docs/CHANGELOG.txt | 13 ++++++++----- 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, 17 insertions(+), 14 deletions(-) diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 8c7912f6d..54b3d950b 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -37,18 +37,20 @@ HOW TO UPDATE? ----------------------------------------------------------------------- - VERSION 1.89.8 WIP (In Progress) + VERSION 1.89.8 (Released 2023-08-01) ----------------------------------------------------------------------- +Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.8 + Breaking changes: - IO: Obsoleted io.ClearInputCharacters() (added in 1.47) as it now ambiguous and often incorrect/misleading considering the existence of a higher-level - input queue. (#4921) + input queue. This is automatically cleared by io.ClearInputsKeys(). (#4921) - ImDrawData: CmdLists[] array is now owned, changed from 'ImDrawList**' to 'ImVector'. Majority of users shouldn't be affected, but you cannot compare to NULL nor reassign manually anymore. - Instead use AddDrawList(). (#6406, #4879, #1878) + Instead use AddDrawList(). Allocation count are identical. (#6406, #4879, #1878) Other changes: @@ -96,9 +98,10 @@ Other changes: - Demo: Showcase a few more InputText() flags. - Backends: Made all backends sources files support global IMGUI_DISABLE. (#6601) - Backends: GLFW: Revert ignoring mouse data on GLFW_CURSOR_DISABLED as it can be used - differently. User may set ImGuiConfigFLags_NoMouse if desired. (#5625, #6609) [@scorpion-26] + differently. User may set ImGuiConfigFlags_NoMouse if desired. (#5625, #6609) [@scorpion-26] - Backends: WebGPU: Update for changes in Dawn. (#6602, #6188) [@williamhCode] -- Examples: Vulkan: Creating minimal descriptor pools to fit only what is needed by example. (#6642) [@SaschaWillem] +- Examples: Vulkan: Creating minimal descriptor pools to fit only what is needed by + example. (#6642) [@SaschaWillem] ----------------------------------------------------------------------- diff --git a/imgui.cpp b/imgui.cpp index a870492fd..6e851dc14 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.8 WIP +// dear imgui, v1.89.8 // (main code and documentation) // Help: diff --git a/imgui.h b/imgui.h index 06f724b8e..37601a5ee 100644 --- a/imgui.h +++ b/imgui.h @@ -1,4 +1,4 @@ -// dear imgui, v1.89.8 WIP +// dear imgui, v1.89.8 // (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.8 WIP" -#define IMGUI_VERSION_NUM 18974 +#define IMGUI_VERSION "1.89.8" +#define IMGUI_VERSION_NUM 18980 #define IMGUI_HAS_TABLE /* diff --git a/imgui_demo.cpp b/imgui_demo.cpp index 1f16bb9d6..b22c002f4 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.8 WIP +// dear imgui, v1.89.8 // (demo code) // Help: diff --git a/imgui_draw.cpp b/imgui_draw.cpp index d3a332a17..44371f824 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.8 WIP +// dear imgui, v1.89.8 // (drawing and font code) /* diff --git a/imgui_internal.h b/imgui_internal.h index 1d782dc62..4e35a2042 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -1,4 +1,4 @@ -// dear imgui, v1.89.8 WIP +// dear imgui, v1.89.8 // (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 33c9d05d9..598521598 100644 --- a/imgui_tables.cpp +++ b/imgui_tables.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.8 WIP +// dear imgui, v1.89.8 // (tables and columns code) /* diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp index 1f54616a8..251e965db 100644 --- a/imgui_widgets.cpp +++ b/imgui_widgets.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.8 WIP +// dear imgui, v1.89.8 // (widgets code) /*