1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Version 1.91.4

This commit is contained in:
ocornut 2024-10-18 21:33:35 +02:00
parent ab9ce2a927
commit 83b64b8be2
8 changed files with 14 additions and 14 deletions

View file

@ -36,18 +36,18 @@ HOW TO UPDATE?
- Please report any issue! - Please report any issue!
----------------------------------------------------------------------- -----------------------------------------------------------------------
VERSION 1.91.4 WIP (In Progress) VERSION 1.91.4 (Released 2024-10-18)
----------------------------------------------------------------------- -----------------------------------------------------------------------
Breaking changes: Breaking changes:
- Style: renamed ImGuiCol_NavHighlight to ImGuiCol_NavCursor, for consistency with newly - Style: renamed ImGuiCol_NavHighlight to ImGuiCol_NavCursor, for consistency with
exposed and reworked features. Kept inline redirection enum (will obsolete). newly exposed and reworked features. Kept inline redirection enum (will obsolete).
- The typedef for ImTextureID now defaults to ImU64 instead of void*. (#1641) - The typedef for ImTextureID now defaults to ImU64 instead of void*. (#1641)
- This removes the requirement to redefine it for backends which are e.g. storing - This removes the requirement to redefine it for backends which are e.g. storing
descriptor sets or other 64-bits structures when building on 32-bits archs descriptor sets or other 64-bits structures when building on 32-bits archs
(namely our DX12 and Vulkan backends). It therefore simplify various building scripts/helpers. (namely our DX12 and Vulkan backends). It therefore simplify various building scripts/helpers.
- You may have compile-time issues if you were casting to 'void*' instead of 'ImTextureID' - You may have compile-time warnings if you were casting to 'void*' instead of 'ImTextureID'
when passing your types to functions taking ImTextureID values, e.g. ImGui::Image(). when passing your types to functions taking ImTextureID values, e.g. ImGui::Image().
In doubt it is almost always better to do an intermediate intptr_t cast, since it In doubt it is almost always better to do an intermediate intptr_t cast, since it
allows casting any pointer/integer type without warning: allows casting any pointer/integer type without warning:
@ -109,7 +109,7 @@ Other changes:
- InputText: ensure mouse cursor shape is set regardless of whether keyboard mode is - InputText: ensure mouse cursor shape is set regardless of whether keyboard mode is
enabled or not. (#6417) enabled or not. (#6417)
- InputScalar: added an assert to clarify that ImGuiInputTextFlags_EnterReturnsTrue is not - InputScalar: added an assert to clarify that ImGuiInputTextFlags_EnterReturnsTrue is not
supported by InputFloat, InputInt, InputScalar etc. widgets. It actually never was. (#8065) supported by InputFloat, InputInt, InputScalar etc. widgets. It actually never was. (#8065, #3946)
- imgui_freetype: Added support for plutosvg (as an alternative to lunasvg) to render - imgui_freetype: Added support for plutosvg (as an alternative to lunasvg) to render
OpenType SVG fonts. Requires defining IMGUI_ENABLE_FREETYPE_PLUTOSVG along with IMGUI_ENABLE_FREETYPE. OpenType SVG fonts. Requires defining IMGUI_ENABLE_FREETYPE_PLUTOSVG along with IMGUI_ENABLE_FREETYPE.
Providing headers/librairies for plutosvg + plutovg is up to you (see #7927 for help). Providing headers/librairies for plutosvg + plutovg is up to you (see #7927 for help).

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.4 WIP // dear imgui, v1.91.4
// (main code and documentation) // (main code and documentation)
// Help: // Help:

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.4 WIP // dear imgui, v1.91.4
// (headers) // (headers)
// Help: // Help:
@ -28,8 +28,8 @@
// Library Version // Library Version
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345') // (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
#define IMGUI_VERSION "1.91.4 WIP" #define IMGUI_VERSION "1.91.4"
#define IMGUI_VERSION_NUM 19136 #define IMGUI_VERSION_NUM 19140
#define IMGUI_HAS_TABLE #define IMGUI_HAS_TABLE
/* /*

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.4 WIP // dear imgui, v1.91.4
// (demo code) // (demo code)
// Help: // Help:

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.4 WIP // dear imgui, v1.91.4
// (drawing and font code) // (drawing and font code)
/* /*

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.4 WIP // dear imgui, v1.91.4
// (internal structures/api) // (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. // You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.4 WIP // dear imgui, v1.91.4
// (tables and columns code) // (tables and columns code)
/* /*

View file

@ -1,4 +1,4 @@
// dear imgui, v1.91.4 WIP // dear imgui, v1.91.4
// (widgets code) // (widgets code)
/* /*