Skip to content

Commit

Permalink
Version 1.90.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Feb 9, 2024
1 parent 7b5357d commit 5360903
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 11 deletions.
6 changes: 4 additions & 2 deletions docs/CHANGELOG.txt
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion imgui.cpp
@@ -1,4 +1,4 @@
// dear imgui, v1.90.2 WIP
// dear imgui, v1.90.2
// (main code and documentation)

// Help:
Expand Down
6 changes: 3 additions & 3 deletions imgui.h
@@ -1,4 +1,4 @@
// dear imgui, v1.90.2 WIP
// dear imgui, v1.90.2
// (headers)

// Help:
Expand All @@ -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

/*
Expand Down
2 changes: 1 addition & 1 deletion imgui_demo.cpp
@@ -1,4 +1,4 @@
// dear imgui, v1.90.2 WIP
// dear imgui, v1.90.2
// (demo code)

// Help:
Expand Down
2 changes: 1 addition & 1 deletion imgui_draw.cpp
@@ -1,4 +1,4 @@
// dear imgui, v1.90.2 WIP
// dear imgui, v1.90.2
// (drawing and font code)

/*
Expand Down
2 changes: 1 addition & 1 deletion 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.
Expand Down
2 changes: 1 addition & 1 deletion imgui_tables.cpp
@@ -1,4 +1,4 @@
// dear imgui, v1.90.2 WIP
// dear imgui, v1.90.2
// (tables and columns code)

/*
Expand Down
2 changes: 1 addition & 1 deletion imgui_widgets.cpp
@@ -1,4 +1,4 @@
// dear imgui, v1.90.2 WIP
// dear imgui, v1.90.2
// (widgets code)

/*
Expand Down

0 comments on commit 5360903

Please sign in to comment.