From 482ac70a0bcd26450b498c0576749449de1ee9cb Mon Sep 17 00:00:00 2001 From: ocornut Date: Wed, 11 Jan 2023 15:51:34 +0100 Subject: [PATCH] Version 1.89.3 WIP --- docs/CHANGELOG.txt | 9 ++++++++- 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(+), 10 deletions(-) diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 88653b399..0ece962c2 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -31,13 +31,20 @@ HOW TO UPDATE? - Please report any issue! +----------------------------------------------------------------------- + VERSION 1.89.3 (In Progress) +----------------------------------------------------------------------- + +All changes: + + ----------------------------------------------------------------------- VERSION 1.89.2 (Released 2023-01-05) ----------------------------------------------------------------------- Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.2 -Other changes: +All changes: - Tables, Nav, Scrolling: fixed scrolling functions and focus tracking with frozen rows and frozen columns. Windows now have a better understanding of outer/inner decoration sizes, diff --git a/imgui.cpp b/imgui.cpp index 3faca98f1..48784950f 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.2 +// dear imgui, v1.89.3 WIP // (main code and documentation) // Help: diff --git a/imgui.h b/imgui.h index 152f4f09d..d1e8260be 100644 --- a/imgui.h +++ b/imgui.h @@ -1,4 +1,4 @@ -// dear imgui, v1.89.2 +// dear imgui, v1.89.3 WIP // (headers) // Help: @@ -22,8 +22,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.2" -#define IMGUI_VERSION_NUM 18920 +#define IMGUI_VERSION "1.89.3 WIP" +#define IMGUI_VERSION_NUM 18921 #define IMGUI_HAS_TABLE /* diff --git a/imgui_demo.cpp b/imgui_demo.cpp index c1b7dbe5a..4827e694f 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.2 +// dear imgui, v1.89.3 WIP // (demo code) // Help: diff --git a/imgui_draw.cpp b/imgui_draw.cpp index 341437d10..f768cf213 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.2 +// dear imgui, v1.89.3 WIP // (drawing and font code) /* diff --git a/imgui_internal.h b/imgui_internal.h index e57eab775..987a215b5 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -1,4 +1,4 @@ -// dear imgui, v1.89.2 +// dear imgui, v1.89.3 WIP // (internal structures/api) // You may use this file to debug, understand or extend ImGui features but we don't provide any guarantee of forward compatibility! diff --git a/imgui_tables.cpp b/imgui_tables.cpp index 47fc8a287..b6e367039 100644 --- a/imgui_tables.cpp +++ b/imgui_tables.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.2 +// dear imgui, v1.89.3 WIP // (tables and columns code) /* diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp index 0a1ea6789..e61766bde 100644 --- a/imgui_widgets.cpp +++ b/imgui_widgets.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.89.2 +// dear imgui, v1.89.3 WIP // (widgets code) /*