Skip to content

Commit f401021

Browse files
committed
Version 1.91.5
1 parent 31b967f commit f401021

8 files changed

+18
-14
lines changed

docs/CHANGELOG.txt

+9-5
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ HOW TO UPDATE?
3636
- Please report any issue!
3737

3838
-----------------------------------------------------------------------
39-
VERSION 1.91.5 WIP (In Progress)
39+
VERSION 1.91.5 (Released 2024-11-07)
4040
-----------------------------------------------------------------------
4141

42+
Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.5
43+
4244
Breaking changes:
4345

4446
- Commented out pre-1.87 IO system (equivalent to using IMGUI_DISABLE_OBSOLETE_KEYIO or IMGUI_DISABLE_OBSOLETE_FUNCTIONS before).
@@ -47,8 +49,8 @@ Breaking changes:
4749
- Pre-1.87 backends are not supported:
4850
- backends need to call io.AddKeyEvent(), io.AddMouseEvent() instead of writing to io.KeysDown[], io.MouseDown[] fields.
4951
- backends need to call io.AddKeyAnalogEvent() for gamepad values instead of writing to io.NavInputs[] fields.
50-
- For more reference:
51-
- read 1.87 and 1.88 part of this section or read Changelog for 1.87 and 1.88.
52+
- For more references:
53+
- read 1.87 and 1.88 part of API BREAKING CHANGES in imgui.cpp or read Changelog for 1.87 and 1.88.
5254
- read https://github.com/ocornut/imgui/issues/4921
5355
- If you have trouble updating a very old codebase using legacy backend-specific key codes:
5456
consider updating to 1.91.4 first, then #define IMGUI_DISABLE_OBSOLETE_KEYIO, then update to latest.
@@ -66,12 +68,12 @@ Other changes:
6668
a callback would sometimes prevents further appending to the buffer.
6769
- Tabs, Style: made ImGuiCol_TabDimmedSelectedOverline alpha 0 (not visible) in default
6870
styles as the current look is not right (but ImGuiCol_TabSelectedOverline stays the same).
69-
- Log/Capture: better decorating of BeginMenu() and TabItem() output.
70-
- Log/Capture: a non terminated log ends automatically in the window which called it.
7171
- Log/Capture: added experimental io.ConfigWindowsCopyContentsWithCtrlC option to
7272
automatically copy window contents into clipboard using CTRL+C. This is experimental
7373
because (1) it currently breaks on nested Begin/End, (2) text output quality varies,
7474
and (3) text output comes in submission order rather than spatial order.
75+
- Log/Capture: better decorating of BeginMenu() and TabItem() output.
76+
- Log/Capture: a non terminated log ends automatically in the window which called it.
7577
- imgui_freetype: Fixed a crash in build font atlas when using merged fonts and the
7678
first font in a merged set has no loaded glyph. (#8081)
7779
- Backends: DX12: Unmap() call specify written range. The range is informational and
@@ -88,6 +90,8 @@ Other changes:
8890
VERSION 1.91.4 (Released 2024-10-18)
8991
-----------------------------------------------------------------------
9092

93+
Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.4
94+
9195
Breaking changes:
9296

9397
- Style: renamed ImGuiCol_NavHighlight to ImGuiCol_NavCursor, for consistency with

imgui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.5 WIP
1+
// dear imgui, v1.91.5
22
// (main code and documentation)
33

44
// Help:

imgui.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.5 WIP
1+
// dear imgui, v1.91.5
22
// (headers)
33

44
// Help:
@@ -28,8 +28,8 @@
2828

2929
// Library Version
3030
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
31-
#define IMGUI_VERSION "1.91.5 WIP"
32-
#define IMGUI_VERSION_NUM 19144
31+
#define IMGUI_VERSION "1.91.5"
32+
#define IMGUI_VERSION_NUM 19150
3333
#define IMGUI_HAS_TABLE
3434

3535
/*

imgui_demo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.5 WIP
1+
// dear imgui, v1.91.5
22
// (demo code)
33

44
// Help:

imgui_draw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.5 WIP
1+
// dear imgui, v1.91.5
22
// (drawing and font code)
33

44
/*

imgui_internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.5 WIP
1+
// dear imgui, v1.91.5
22
// (internal structures/api)
33

44
// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.

imgui_tables.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.5 WIP
1+
// dear imgui, v1.91.5
22
// (tables and columns code)
33

44
/*

imgui_widgets.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.5 WIP
1+
// dear imgui, v1.91.5
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)