@@ -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+
4244Breaking 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+
9195Breaking changes:
9296
9397- Style: renamed ImGuiCol_NavHighlight to ImGuiCol_NavCursor, for consistency with
0 commit comments