From 536090303a8fca7d896f77d6d63dc59249bc87f4 Mon Sep 17 00:00:00 2001 From: ocornut Date: Fri, 9 Feb 2024 16:33:42 +0100 Subject: [PATCH] Version 1.90.2 --- docs/CHANGELOG.txt | 6 ++++-- 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, 13 insertions(+), 11 deletions(-) diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 76131e58..1ed92190 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -36,9 +36,11 @@ HOW TO UPDATE? - Please report any issue! ----------------------------------------------------------------------- - VERSION 1.90.2 WIP (In Progress) + VERSION 1.90.2 (Released 2024-01-09) ----------------------------------------------------------------------- +Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.90.2 + Breaking changes: - Commented out ImGuiIO::ImeWindowHandle obsoleted in 1.87 in favor of writing @@ -55,7 +57,7 @@ Other changes: regression from 1.90.1 related to code scoping Tab presses to local scope. (#7226) [@bratpilz] - Nav: Fixed pressing Escape while in a child window with _NavFlattened flag. (#7237) - Nav: Improve handling of Alt key to toggle menu so that key ownership may be claimed on - indiviudal left/right alt key without intefering with the other. + individual left/right alt key without interfering with the other. - Nav, Menus: Fixed click on a BeginMenu() followed by right-arrow from making the child menu reopen and flicker (using ImGuiPopupFlags_NoReopen). - Nav: ImGuiWindowFlags_NoNavInputs is tested during scoring so NavFlattened windows can use it. diff --git a/imgui.cpp b/imgui.cpp index 716e7709..a3ca2bf6 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.90.2 WIP +// dear imgui, v1.90.2 // (main code and documentation) // Help: diff --git a/imgui.h b/imgui.h index 8d05fba2..f4c71616 100644 --- a/imgui.h +++ b/imgui.h @@ -1,4 +1,4 @@ -// dear imgui, v1.90.2 WIP +// dear imgui, v1.90.2 // (headers) // Help: @@ -23,8 +23,8 @@ // Library Version // (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345') -#define IMGUI_VERSION "1.90.2 WIP" -#define IMGUI_VERSION_NUM 19018 +#define IMGUI_VERSION "1.90.2" +#define IMGUI_VERSION_NUM 19020 #define IMGUI_HAS_TABLE /* diff --git a/imgui_demo.cpp b/imgui_demo.cpp index e73d02f9..7e48dd18 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.90.2 WIP +// dear imgui, v1.90.2 // (demo code) // Help: diff --git a/imgui_draw.cpp b/imgui_draw.cpp index a40ce168..90da0882 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.90.2 WIP +// dear imgui, v1.90.2 // (drawing and font code) /* diff --git a/imgui_internal.h b/imgui_internal.h index 2e55ff38..1575600d 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -1,4 +1,4 @@ -// dear imgui, v1.90.2 WIP +// dear imgui, v1.90.2 // (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 a6f331d6..5052dee1 100644 --- a/imgui_tables.cpp +++ b/imgui_tables.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.90.2 WIP +// dear imgui, v1.90.2 // (tables and columns code) /* diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp index daf066c0..a129d808 100644 --- a/imgui_widgets.cpp +++ b/imgui_widgets.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.90.2 WIP +// dear imgui, v1.90.2 // (widgets code) /*