@@ -36,9 +36,11 @@ HOW TO UPDATE?
36
36
- Please report any issue!
37
37
38
38
-----------------------------------------------------------------------
39
- VERSION 1.91.3 WIP (In Progress )
39
+ VERSION 1.91.3 (Released 2024-10-04 )
40
40
-----------------------------------------------------------------------
41
41
42
+ Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.3
43
+
42
44
Breaking changes:
43
45
44
46
- 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:
61
63
- Functions that support error recovery are using IM_ASSERT_USER_ERROR() instead of IM_ASSERT().
62
64
- By design, we do not allow error recovery to be 100% silent. One of the options needs to be enabled!
63
65
- Possible usage: facilitate recovery from errors triggered from a scripting language or
64
- after specific exceptions handlers. Surface errors to programmers in less agressive ways.
66
+ after specific exceptions handlers. Surface errors to programmers in less aggressive ways.
65
67
- Always ensure that on programmers seats you have at minimum Asserts or Tooltips enabled
66
68
when making direct imgui API calls! Otherwise it would severely hinder your ability to
67
69
catch and correct mistakes!
@@ -78,7 +80,7 @@ Other changes:
78
80
- Scrollbar: Shift+Click scroll to clicked location (pre-1.90.8 default). (#8002, #7328)
79
81
- Scrollbar: added io.ConfigScrollbarScrollByPage setting (default to true). (#8002, #7328)
80
82
Set io.ConfigScrollbarScrollByPage=false to enforce always scrolling to clicked location.
81
- - Drags: ImGuiSliderFlags_AlwaysClamp split into two distinct flags: (#7968, #3361, #76)
83
+ - Drags: split ImGuiSliderFlags_AlwaysClamp into two distinct flags: (#7968, #3361, #76)
82
84
- ImGuiSliderFlags_AlwaysClamp = ImGuiSliderFlags_ClampOnInput + ImGuiSliderFlags_ClampZeroRange.
83
85
- Previously _AlwaysClamp only did the equivalent of _ClampOnInput.
84
86
- Added ImGuiSliderFlags_ClampOnInput which is now a subset of AlwaysClamp.
@@ -90,7 +92,7 @@ Other changes:
90
92
- Tooltips, Drag and Drop: Stabilized name of drag and drop tooltip window so that
91
93
transitioning from an item tooltip to a drag tooltip doesn't leak window auto-sizing
92
94
info from one to the other. (#8036)
93
- - Tooltips: Tooltips triggered from touch inputs are positionned above the item. (#8036)
95
+ - Tooltips: Tooltips triggered from touch inputs are positioned above the item. (#8036)
94
96
- Backends: SDL3: Update for API changes: SDL_bool removal. SDL_INIT_TIMER removal.
95
97
- Backends: WebGPU: Fixed DAWN api change using WGPUStringView in WGPUShaderSourceWGSL.
96
98
(#8009, #8010) [@blitz-research]
0 commit comments