|
|
|
@ -37,18 +37,20 @@ HOW TO UPDATE? |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------------------------- |
|
|
|
|
VERSION 1.89.8 WIP (In Progress) |
|
|
|
|
VERSION 1.89.8 (Released 2023-08-01) |
|
|
|
|
----------------------------------------------------------------------- |
|
|
|
|
|
|
|
|
|
Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.8 |
|
|
|
|
|
|
|
|
|
Breaking changes: |
|
|
|
|
|
|
|
|
|
- IO: Obsoleted io.ClearInputCharacters() (added in 1.47) as it now ambiguous |
|
|
|
|
and often incorrect/misleading considering the existence of a higher-level |
|
|
|
|
input queue. (#4921) |
|
|
|
|
input queue. This is automatically cleared by io.ClearInputsKeys(). (#4921) |
|
|
|
|
- ImDrawData: CmdLists[] array is now owned, changed from 'ImDrawList**' to |
|
|
|
|
'ImVector<ImDrawList*>'. Majority of users shouldn't be affected, but you |
|
|
|
|
cannot compare to NULL nor reassign manually anymore. |
|
|
|
|
Instead use AddDrawList(). (#6406, #4879, #1878) |
|
|
|
|
Instead use AddDrawList(). Allocation count are identical. (#6406, #4879, #1878) |
|
|
|
|
|
|
|
|
|
Other changes: |
|
|
|
|
|
|
|
|
@ -96,9 +98,10 @@ Other changes: |
|
|
|
|
- Demo: Showcase a few more InputText() flags. |
|
|
|
|
- Backends: Made all backends sources files support global IMGUI_DISABLE. (#6601) |
|
|
|
|
- Backends: GLFW: Revert ignoring mouse data on GLFW_CURSOR_DISABLED as it can be used |
|
|
|
|
differently. User may set ImGuiConfigFLags_NoMouse if desired. (#5625, #6609) [@scorpion-26] |
|
|
|
|
differently. User may set ImGuiConfigFlags_NoMouse if desired. (#5625, #6609) [@scorpion-26] |
|
|
|
|
- Backends: WebGPU: Update for changes in Dawn. (#6602, #6188) [@williamhCode] |
|
|
|
|
- Examples: Vulkan: Creating minimal descriptor pools to fit only what is needed by example. (#6642) [@SaschaWillem] |
|
|
|
|
- Examples: Vulkan: Creating minimal descriptor pools to fit only what is needed by |
|
|
|
|
example. (#6642) [@SaschaWillem] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------------------------- |
|
|
|
|