Skip to content

Commit dbb5eea

Browse files
committed
Version 1.91.8
1 parent e6c5296 commit dbb5eea

8 files changed

+15
-14
lines changed

docs/CHANGELOG.txt

+6-5
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,15 @@ HOW TO UPDATE?
3636
- Please report any issue!
3737

3838
-----------------------------------------------------------------------
39-
VERSION 1.91.8 WIP (In Progress)
39+
VERSION 1.91.8 (Released 2025-01-31)
4040
-----------------------------------------------------------------------
4141

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

44-
- ColorEdit, ColorPicker: redesigned how alpha is displayed in the preview square. (#8335, #1578, #346)
46+
- ColorEdit, ColorPicker: redesigned how alpha is displayed in the preview
47+
square. (#8335, #1578, #346)
4548
- Removed ImGuiColorEditFlags_AlphaPreview (made value 0): it is now the default behavior.
4649
- Prior to 1.91.8: alpha was made opaque in the preview by default _unless_ using ImGuiColorEditFlags_AlphaPreview.
4750
- We now display the preview as transparent by default. You can use ImGuiColorEditFlags_AlphaOpaque to use old behavior.
@@ -63,7 +66,7 @@ Other changes:
6366
by introducing a delay. This is a very rarely used UI idiom, but some apps
6467
use this: e.g. MS Explorer single-click on an icon triggers a rename.
6568
Generally use with 'delay >= io.MouseDoubleClickTime' + combine with a
66-
'io.MouseClickedLastCount == 1' check.
69+
'GetMouseClickedCount() == 1' check.
6770
- Windows: legacy SetWindowFontScale() is properly inherited by nested child
6871
windows. Note that an upcoming major release should make this obsolete,
6972
but in the meanwhile it works better now. (#2701, #8138, #1018)
@@ -81,7 +84,6 @@ Other changes:
8184
- Tabs, Style: reworked selected overline rendering to better accommodate
8285
for rounded tabs. Reduced default thickness (style.TabBarOverlineSize),
8386
increased default rounding (style.TabRounding). (#8334) [@Kian738, @ocornut]
84-
styles as the current look is not right (but ImGuiCol_TabSelectedOverline stays the same).
8587
- Debug Tools: Tweaked font preview.
8688
- ImDrawList: texture baked storage for thick line reduced from ~64x64 to ~32x32. (#3245)
8789
- Fonts: IndexLookup[] table hold 16-bit values even in ImWchar32 mode,
@@ -90,7 +92,6 @@ Other changes:
9092
- Fonts: OversampleH/OversampleV defaults to 0 for automatic selection.
9193
- OversampleH == 0 --> use 1 or 2 depending on font size and use of PixelSnapH.
9294
- OversampleV == 0 --> always use 1.
93-
This also
9495
- ImFontAtlas: made calling ClearFonts() call ClearInputData(), as calling
9596
one without the other is never correct. (#8174, #6556, #6336, #4723)
9697
- Examples: DirectX12: Reduced number of frame in flight from 3 to 2 in

imgui.cpp

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

44
/*

0 commit comments

Comments
 (0)