Skip to content

Commit cb16568

Browse files
committed
Version 1.91.3
1 parent 8db1261 commit cb16568

8 files changed

+15
-13
lines changed

docs/CHANGELOG.txt

+6-4
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ HOW TO UPDATE?
3636
- Please report any issue!
3737

3838
-----------------------------------------------------------------------
39-
VERSION 1.91.3 WIP (In Progress)
39+
VERSION 1.91.3 (Released 2024-10-04)
4040
-----------------------------------------------------------------------
4141

42+
Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.3
43+
4244
Breaking changes:
4345

4446
- 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:
6163
- Functions that support error recovery are using IM_ASSERT_USER_ERROR() instead of IM_ASSERT().
6264
- By design, we do not allow error recovery to be 100% silent. One of the options needs to be enabled!
6365
- 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.
6567
- Always ensure that on programmers seats you have at minimum Asserts or Tooltips enabled
6668
when making direct imgui API calls! Otherwise it would severely hinder your ability to
6769
catch and correct mistakes!
@@ -78,7 +80,7 @@ Other changes:
7880
- Scrollbar: Shift+Click scroll to clicked location (pre-1.90.8 default). (#8002, #7328)
7981
- Scrollbar: added io.ConfigScrollbarScrollByPage setting (default to true). (#8002, #7328)
8082
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)
8284
- ImGuiSliderFlags_AlwaysClamp = ImGuiSliderFlags_ClampOnInput + ImGuiSliderFlags_ClampZeroRange.
8385
- Previously _AlwaysClamp only did the equivalent of _ClampOnInput.
8486
- Added ImGuiSliderFlags_ClampOnInput which is now a subset of AlwaysClamp.
@@ -90,7 +92,7 @@ Other changes:
9092
- Tooltips, Drag and Drop: Stabilized name of drag and drop tooltip window so that
9193
transitioning from an item tooltip to a drag tooltip doesn't leak window auto-sizing
9294
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)
9496
- Backends: SDL3: Update for API changes: SDL_bool removal. SDL_INIT_TIMER removal.
9597
- Backends: WebGPU: Fixed DAWN api change using WGPUStringView in WGPUShaderSourceWGSL.
9698
(#8009, #8010) [@blitz-research]

imgui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.3 WIP
1+
// dear imgui, v1.91.3
22
// (main code and documentation)
33

44
// Help:

imgui.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.3 WIP
1+
// dear imgui, v1.91.3
22
// (headers)
33

44
// Help:
@@ -28,8 +28,8 @@
2828

2929
// Library Version
3030
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
31-
#define IMGUI_VERSION "1.91.3 WIP"
32-
#define IMGUI_VERSION_NUM 19125
31+
#define IMGUI_VERSION "1.91.3"
32+
#define IMGUI_VERSION_NUM 19130
3333
#define IMGUI_HAS_TABLE
3434

3535
/*

imgui_demo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.3 WIP
1+
// dear imgui, v1.91.3
22
// (demo code)
33

44
// Help:

imgui_draw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.3 WIP
1+
// dear imgui, v1.91.3
22
// (drawing and font code)
33

44
/*

imgui_internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.3 WIP
1+
// dear imgui, v1.91.3
22
// (internal structures/api)
33

44
// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.

imgui_tables.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.3 WIP
1+
// dear imgui, v1.91.3
22
// (tables and columns code)
33

44
/*

imgui_widgets.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.3 WIP
1+
// dear imgui, v1.91.3
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)