@@ -36,9 +36,11 @@ HOW TO UPDATE?
36
36
- Please report any issue!
37
37
38
38
-----------------------------------------------------------------------
39
- VERSION 1.91.5 WIP (In Progress )
39
+ VERSION 1.91.5 (Released 2024-11-07 )
40
40
-----------------------------------------------------------------------
41
41
42
+ Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.5
43
+
42
44
Breaking changes:
43
45
44
46
- 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:
47
49
- Pre-1.87 backends are not supported:
48
50
- backends need to call io.AddKeyEvent(), io.AddMouseEvent() instead of writing to io.KeysDown[], io.MouseDown[] fields.
49
51
- 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.
52
54
- read https://github.com/ocornut/imgui/issues/4921
53
55
- If you have trouble updating a very old codebase using legacy backend-specific key codes:
54
56
consider updating to 1.91.4 first, then #define IMGUI_DISABLE_OBSOLETE_KEYIO, then update to latest.
@@ -66,12 +68,12 @@ Other changes:
66
68
a callback would sometimes prevents further appending to the buffer.
67
69
- Tabs, Style: made ImGuiCol_TabDimmedSelectedOverline alpha 0 (not visible) in default
68
70
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.
71
71
- Log/Capture: added experimental io.ConfigWindowsCopyContentsWithCtrlC option to
72
72
automatically copy window contents into clipboard using CTRL+C. This is experimental
73
73
because (1) it currently breaks on nested Begin/End, (2) text output quality varies,
74
74
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.
75
77
- imgui_freetype: Fixed a crash in build font atlas when using merged fonts and the
76
78
first font in a merged set has no loaded glyph. (#8081)
77
79
- Backends: DX12: Unmap() call specify written range. The range is informational and
@@ -88,6 +90,8 @@ Other changes:
88
90
VERSION 1.91.4 (Released 2024-10-18)
89
91
-----------------------------------------------------------------------
90
92
93
+ Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.4
94
+
91
95
Breaking changes:
92
96
93
97
- Style: renamed ImGuiCol_NavHighlight to ImGuiCol_NavCursor, for consistency with
0 commit comments