Skip to content

Commit 1dfbb10

Browse files
committed
Version 1.91.1
1 parent f75cf62 commit 1dfbb10

8 files changed

+22
-20
lines changed

docs/CHANGELOG.txt

+13-11
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.1 WIP (In Progress)
39+
VERSION 1.91.1 (Released 2024-09-04)
4040
-----------------------------------------------------------------------
4141

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

4446
- BeginChild(): renamed ImGuiChildFlags_Border to ImGuiChildFlags_Borders for consistency. [@cfillion]
@@ -54,7 +56,6 @@ Breaking changes:
5456
- io.PlatformOpenInShellFn -> platform_io.Platform_OpenInShellFn (#7660)
5557
- io.PlatformSetImeDataFn -> platform_io.Platform_SetImeDataFn
5658
- io.PlatformLocaleDecimalPoint -> platform_io.Platform_LocaleDecimalPoint (#7389, #6719, #2278)
57-
- clipboard function signature changed:
5859
- access those via GetPlatformIO() instead of GetIO().
5960
(Because PlatformOpenInShellFn and PlatformSetImeDataFn were introduced very recently and
6061
often automatically set by core library and backends, we are exceptionally not maintaining
@@ -63,25 +64,25 @@ Breaking changes:
6364
- old ImageButton() used ImTextureId as item id (created issue with e.g. multiple buttons in same scope, transient texture id values, opaque computation of ID)
6465
- new ImageButton() requires an explicit 'const char* str_id'
6566
- old ImageButton() had frame_padding' override argument.
66-
- new ImageButton() always use style.FramePadding, which you can freely override with PushStyleVar()/PopStyleVar().
67+
- new ImageButton() always use style.FramePadding, which you can modify using PushStyleVar()/PopStyleVar().
6768

6869
Other changes:
6970

7071
- IO: Added GetPlatformIO() and ImGuiPlatformIO, pulled from 'docking' branch, which
7172
is a centralized spot to connect os/platform/renderer related functions.
7273
Clipboard, IME and OpenInShell hooks are moved here. (#7660)
73-
- IO, InputText: fixed an issue where typing text in a InputText() would defer character
74+
- IO, InputText: fixed an issue where typing text in an InputText() would defer character
7475
processing by one frame, because of the trickling input queue. Reworked interleaved
7576
keys<>char trickling to take account for keys known to input characters. (#7889, #4921, #4858)
7677
- Windows: adjust default ClipRect to better match rendering of thick borders (which are in
7778
theory not supported). Compensate for the fact that borders are centered around the windows
7879
edge rather than inner. (#7887, #7888 + #3312, #7540, #3756, #6170, #6365)
7980
- Made BeginItemTooltip() and IsItemHovered() with delay flag infer an implicit ID (for
8081
ID-less items such as Text element) in a way that works when item resizes. (#7945, #1485)
81-
- MultiSelect+TreeNode+Drag and Drop: fixed an issue where carrying a drag and drop
82-
payload over an already open tree node would incorrectly select it. (#7850)
83-
- MultiSelect+TreeNode: default open behavior is OpenOnDoubleClick + OpenOnArrow
84-
when used in a multi-select context without any OpenOnXXX flags set. (#7850)
82+
- MultiSelect+TreeNode+Drag and Drop: fixed an issue where carrying a drag and drop payload
83+
over an already open tree node using multi-select would incorrectly select it. (#7850)
84+
- MultiSelect+TreeNode: default open behavior is _OpenOnDoubleClick + _OpenOnArrow when
85+
used in a multi-select context without any ImGuiTreeNode_OpenOnXXX flags set. (#7850)
8586
- Tables: fixes/revert a 1.90 change were outer border would be moved bottom and right
8687
by an extra pixel + rework the change so that contents doesn't overlap the bottom and
8788
right border in a scrolling table. (#6765, #3752, #7428)
@@ -93,11 +94,12 @@ Other changes:
9394
- InputText: fixed an issue programmatically refocusing a multi-line input which was just active. (#4761, #7870)
9495
- TextLink(), TextLinkOpenURL(): change mouse cursor to Hand shape when hovered. (#7885, #7660)
9596
- Tooltips, Drag and Drop: made it possible to override BeginTooltip() position while inside
96-
a drag and drop source or target: a SetNextWindowPos() call won't be overriden. (#6973)
97+
a drag and drop source or target: a SetNextWindowPos() call won't be overridden. (#6973)
9798
- PlotHistogram, PlotLines: register item ID and use button behavior in a more idiomatic manner,
9899
fixes preventing e.g. GetItemID() and other ID-based helper to work. (#7935, #3072)
99-
- Style: added PushStyleVarX(), PushStyleVarY() helpers to modify only one component of a ImVec2 var.
100-
- Fonts: made it possible to use PushFont()/PopFont() calls accross Begin() calls. (#3224, #3875, #6398, #7903)
100+
- Style: added PushStyleVarX(), PushStyleVarY() helpers to conveniently modify only
101+
one component of a ImVec2 var.
102+
- Fonts: made it possible to use PushFont()/PopFont() calls across Begin() calls. (#3224, #3875, #6398, #7903)
101103
- Backends:
102104
- Backends: GLFW: added ImGui_ImplGlfw_Sleep() helper function because GLFW does not
103105
provide a way to do a portable sleep. (#7844)

imgui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.91.1 WIP
1+
// dear imgui, v1.91.1
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.1 WIP
1+
// dear imgui, v1.91.1
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.1 WIP"
32-
#define IMGUI_VERSION_NUM 19105
31+
#define IMGUI_VERSION "1.91.1"
32+
#define IMGUI_VERSION_NUM 19110
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.1 WIP
1+
// dear imgui, v1.91.1
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.1 WIP
1+
// dear imgui, v1.91.1
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.1 WIP
1+
// dear imgui, v1.91.1
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.1 WIP
1+
// dear imgui, v1.91.1
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.1 WIP
1+
// dear imgui, v1.91.1
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)