diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index d800975c4..8c91d1300 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -36,9 +36,11 @@ HOW TO UPDATE? - Please report any issue! ----------------------------------------------------------------------- - VERSION 1.91.3 WIP (In Progress) + VERSION 1.91.3 (Released 2024-10-04) ----------------------------------------------------------------------- +Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.3 + Breaking changes: - Drags: treat v_min==v_max as a valid clamping range when != 0.0f. Zero is still a special @@ -61,7 +63,7 @@ Other changes: - Functions that support error recovery are using IM_ASSERT_USER_ERROR() instead of IM_ASSERT(). - By design, we do not allow error recovery to be 100% silent. One of the options needs to be enabled! - Possible usage: facilitate recovery from errors triggered from a scripting language or - after specific exceptions handlers. Surface errors to programmers in less agressive ways. + after specific exceptions handlers. Surface errors to programmers in less aggressive ways. - Always ensure that on programmers seats you have at minimum Asserts or Tooltips enabled when making direct imgui API calls! Otherwise it would severely hinder your ability to catch and correct mistakes! @@ -78,7 +80,7 @@ Other changes: - Scrollbar: Shift+Click scroll to clicked location (pre-1.90.8 default). (#8002, #7328) - Scrollbar: added io.ConfigScrollbarScrollByPage setting (default to true). (#8002, #7328) Set io.ConfigScrollbarScrollByPage=false to enforce always scrolling to clicked location. -- Drags: ImGuiSliderFlags_AlwaysClamp split into two distinct flags: (#7968, #3361, #76) +- Drags: split ImGuiSliderFlags_AlwaysClamp into two distinct flags: (#7968, #3361, #76) - ImGuiSliderFlags_AlwaysClamp = ImGuiSliderFlags_ClampOnInput + ImGuiSliderFlags_ClampZeroRange. - Previously _AlwaysClamp only did the equivalent of _ClampOnInput. - Added ImGuiSliderFlags_ClampOnInput which is now a subset of AlwaysClamp. @@ -90,7 +92,7 @@ Other changes: - Tooltips, Drag and Drop: Stabilized name of drag and drop tooltip window so that transitioning from an item tooltip to a drag tooltip doesn't leak window auto-sizing info from one to the other. (#8036) -- Tooltips: Tooltips triggered from touch inputs are positionned above the item. (#8036) +- Tooltips: Tooltips triggered from touch inputs are positioned above the item. (#8036) - Backends: SDL3: Update for API changes: SDL_bool removal. SDL_INIT_TIMER removal. - Backends: WebGPU: Fixed DAWN api change using WGPUStringView in WGPUShaderSourceWGSL. (#8009, #8010) [@blitz-research] diff --git a/imgui.cpp b/imgui.cpp index 9faec405c..3bbaf018f 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.91.3 WIP +// dear imgui, v1.91.3 // (main code and documentation) // Help: diff --git a/imgui.h b/imgui.h index 5c362a6a2..77ca8e04f 100644 --- a/imgui.h +++ b/imgui.h @@ -1,4 +1,4 @@ -// dear imgui, v1.91.3 WIP +// dear imgui, v1.91.3 // (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.91.3 WIP" -#define IMGUI_VERSION_NUM 19125 +#define IMGUI_VERSION "1.91.3" +#define IMGUI_VERSION_NUM 19130 #define IMGUI_HAS_TABLE /* diff --git a/imgui_demo.cpp b/imgui_demo.cpp index dc2f4d39b..8df1755fb 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.91.3 WIP +// dear imgui, v1.91.3 // (demo code) // Help: diff --git a/imgui_draw.cpp b/imgui_draw.cpp index b7a00285f..8084e53c3 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.91.3 WIP +// dear imgui, v1.91.3 // (drawing and font code) /* diff --git a/imgui_internal.h b/imgui_internal.h index f8b4d9d21..9f47ecd21 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -1,4 +1,4 @@ -// dear imgui, v1.91.3 WIP +// dear imgui, v1.91.3 // (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 4a6fbed7c..64126f41d 100644 --- a/imgui_tables.cpp +++ b/imgui_tables.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.91.3 WIP +// dear imgui, v1.91.3 // (tables and columns code) /* diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp index 8f16f6ec0..322c0846c 100644 --- a/imgui_widgets.cpp +++ b/imgui_widgets.cpp @@ -1,4 +1,4 @@ -// dear imgui, v1.91.3 WIP +// dear imgui, v1.91.3 // (widgets code) /*