diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 9c8a6077c..b703e065a 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -36,9 +36,11 @@ HOW TO UPDATE? - Please report any issue! ----------------------------------------------------------------------- - VERSION 1.92.4 WIP (In Progress) + VERSION 1.92.4 (Released 2025-10-14) ----------------------------------------------------------------------- +Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.92.4 + Breaking Changes: - Backends: @@ -85,13 +87,13 @@ Other Changes: previously it would only temporary wreck cursor position, and since 1.92.3 it would go in an infinite loop. (#8994, #3237) - Textures: - - Fixed a crash if texture status is set to _WantDestroy by a backend after - it had already been destroyed. This would typically happen when calling backend's + - Fixed a crash if texture status is set to ImTextureStatus_WantDestroy by a backend + after it had already been destroyed. This would typically happen when calling ImGui_ImplXXXX_InvalidateDeviceObjects() helpers twice in a row. (#8977, #8811) - Allowed backend to destroy texture while inside the NewFrame/EndFrame scope. Basically if a backend decide to destroy a texture that we didn't request to destroy (for e.g. freeing resources) the texture is immediately set to - a _WantCreate status again. (#8811) + a ImTextureStatus_WantCreate status again. (#8811) - Fixed an issue preventing multi-contexts sharing a ImFontAtlas from being possible to destroy in any order. - Fixed not updating ImTextureData's RefCount when destroying a context @@ -130,8 +132,9 @@ Other Changes: - Vulkan: added a way to specify custom shaders by filling init fields CustomShaderVertCreateInfo and CustomShaderFragCreateInfo. (#8585, #8271) [@johan0A] - DX9,DX10,DX11,DX12,Metal,Vulkan,WGPU,SDLRenderer2,SDLRenderer3: - ensure that a texture in _WantDestroy state always turn to _Destroyed even - if your underlying graphics data was already destroyed. (#8977) + ensure that a texture in ImTextureStatus_WantDestroy state always turn to + ImTextureStatus_Destroyed even if your underlying graphics data was already + destroyed. (#8977) - Examples: - SDL2+DirectX11: Try WARP software driver if hardware driver is not available. (#5924, #5562) diff --git a/imgui.cpp b/imgui.cpp index 216c56ba9..76b4a73f4 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.92.4 WIP +// dear imgui, v1.92.4 // (main code and documentation) // Help: diff --git a/imgui.h b/imgui.h index 6aa73009d..0a216b76c 100644 --- a/imgui.h +++ b/imgui.h @@ -1,4 +1,4 @@ -// dear imgui, v1.92.4 WIP +// dear imgui, v1.92.4 // (headers) // Help: @@ -28,8 +28,8 @@ // Library Version // (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345') -#define IMGUI_VERSION "1.92.4 WIP" -#define IMGUI_VERSION_NUM 19237 +#define IMGUI_VERSION "1.92.4" +#define IMGUI_VERSION_NUM 19240 #define IMGUI_HAS_TABLE // Added BeginTable() - from IMGUI_VERSION_NUM >= 18000 #define IMGUI_HAS_TEXTURES // Added ImGuiBackendFlags_RendererHasTextures - from IMGUI_VERSION_NUM >= 19198 diff --git a/imgui_demo.cpp b/imgui_demo.cpp index dec1bad40..e473b2520 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.92.4 WIP +// dear imgui, v1.92.4 // (demo code) // Help: diff --git a/imgui_draw.cpp b/imgui_draw.cpp index a2c616012..9d0f024f5 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.92.4 WIP +// dear imgui, v1.92.4 // (drawing and font code) /* diff --git a/imgui_internal.h b/imgui_internal.h index c9c1f1333..9c920eda1 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -1,4 +1,4 @@ -// dear imgui, v1.92.4 WIP +// dear imgui, v1.92.4 // (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. diff --git a/imgui_tables.cpp b/imgui_tables.cpp index af0e8c6cf..b4d4f891a 100644 --- a/imgui_tables.cpp +++ b/imgui_tables.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.92.4 WIP +// dear imgui, v1.92.4 // (tables and columns code) /* diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp index a3a4ae1cf..9ebafa85b 100644 --- a/imgui_widgets.cpp +++ b/imgui_widgets.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.92.4 WIP +// dear imgui, v1.92.4 // (widgets code) /*