@@ -36,12 +36,15 @@ HOW TO UPDATE?
36
36
- Please report any issue!
37
37
38
38
-----------------------------------------------------------------------
39
- VERSION 1.91.8 WIP (In Progress )
39
+ VERSION 1.91.8 (Released 2025-01-31 )
40
40
-----------------------------------------------------------------------
41
41
42
+ Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.91.8
43
+
42
44
Breaking changes:
43
45
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)
45
48
- Removed ImGuiColorEditFlags_AlphaPreview (made value 0): it is now the default behavior.
46
49
- Prior to 1.91.8: alpha was made opaque in the preview by default _unless_ using ImGuiColorEditFlags_AlphaPreview.
47
50
- We now display the preview as transparent by default. You can use ImGuiColorEditFlags_AlphaOpaque to use old behavior.
@@ -63,22 +66,24 @@ Other changes:
63
66
by introducing a delay. This is a very rarely used UI idiom, but some apps
64
67
use this: e.g. MS Explorer single-click on an icon triggers a rename.
65
68
Generally use with 'delay >= io.MouseDoubleClickTime' + combine with a
66
- 'io.MouseClickedLastCount == 1' check.
69
+ 'GetMouseClickedCount() == 1' check.
67
70
- Windows: legacy SetWindowFontScale() is properly inherited by nested child
68
71
windows. Note that an upcoming major release should make this obsolete,
69
72
but in the meanwhile it works better now. (#2701, #8138, #1018)
70
73
- Windows, Style: Fixed small rendering issues with menu bar, resize grip and
71
74
scrollbar when using thick border sizes. (#8267, #7887)
72
75
- Windows: Fixed IsItemXXXX() functions not working on append-version of EndChild(). (#8350)
73
76
Also made some of the fields accessible after BeginChild() to match Begin() logic.
77
+ - Error Handling: Recovery from missing EndMenuBar() call. (#1651)
74
78
- Tables, Menus: Fixed using BeginTable() in menu layer (any menu bar). (#8355)
75
79
It previously overrode the current layer back to main layer, which caused an issue
76
80
with MainMenuBar attempted to release focus when leaving the menu layer.
81
+ - Tables, Menus: Fixed tables or child windows submitted inside BeginMainMenuBar()
82
+ being unable to save their settings, as the main menu bar uses _NoSavedSettings. (#8356)
77
83
- ColorEdit, ColorPicker: Fixed alpha preview broken in 1.91.7. (#8336, #8241). [@PathogenDavid]
78
84
- Tabs, Style: reworked selected overline rendering to better accommodate
79
85
for rounded tabs. Reduced default thickness (style.TabBarOverlineSize),
80
86
increased default rounding (style.TabRounding). (#8334) [@Kian738, @ocornut]
81
- styles as the current look is not right (but ImGuiCol_TabSelectedOverline stays the same).
82
87
- Debug Tools: Tweaked font preview.
83
88
- ImDrawList: texture baked storage for thick line reduced from ~64x64 to ~32x32. (#3245)
84
89
- Fonts: IndexLookup[] table hold 16-bit values even in ImWchar32 mode,
@@ -87,7 +92,6 @@ Other changes:
87
92
- Fonts: OversampleH/OversampleV defaults to 0 for automatic selection.
88
93
- OversampleH == 0 --> use 1 or 2 depending on font size and use of PixelSnapH.
89
94
- OversampleV == 0 --> always use 1.
90
- This also
91
95
- ImFontAtlas: made calling ClearFonts() call ClearInputData(), as calling
92
96
one without the other is never correct. (#8174, #6556, #6336, #4723)
93
97
- Examples: DirectX12: Reduced number of frame in flight from 3 to 2 in
0 commit comments