Skip to content

Commit 9a5da23

Browse files
committed
Changelog formatting
1 parent d6d00b4 commit 9a5da23

File tree

1 file changed

+33
-27
lines changed

1 file changed

+33
-27
lines changed

docs/CHANGELOG.txt

+33-27
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,16 @@ Breaking changes:
6767

6868
Other changes:
6969

70-
- Tooltips: made using SetItemTooltip()/IsItemHovered(ImGuiHoveredFlags_ForTooltip) defaults to
71-
activate tooltips on disabled items. This is done by adding ImGuiHoveredFlags_AllowWhenDisabled
72-
to the default value of style.HoverFlagsForTooltipMouse/HoverFlagsForTooltipNav. (#1485)
73-
- Tooltips: made is possible to combine ImGuiHoveredFlags_ForTooltip with a ImGuiHoveredFlags_DelayXXX
74-
override. (#1485)
7570
- Nav: Tabbing always enable nav highlight when ImGuiConfigFlags_NavEnableKeyboard is set.
7671
Previously was inconsistent and only enabled when stepping through a non-input item.
7772
(#6802, #3092, #5759, #787)
78-
- Separator(): Altered end-points to use more standard boundaries. (#205, #4787, #1643)
79-
- Left position is always current cursor X position.
80-
- Right position is always work-rect rightmost edge.
73+
- Windows:
74+
- Popups: clarified meaning of 'p_open != NULL' in BeginPopupModal() + set back user value
75+
to false when popup is closed in ways other than clicking the close button. (#6900)
76+
- Separators:
77+
- Altered end-points to use more standard boundaries. (#205, #4787, #1643)
78+
Left position is always current cursor X position.
79+
Right position is always work-rect rightmost edge.
8180
- Effectively means that:
8281
- A separator in the root of a window will end up a little more distant from edges
8382
than previously (essentially following WindowPadding instead of clipping edges).
@@ -89,13 +88,17 @@ Other changes:
8988
- Mostly legacy behavior when used inside old Columns(), as we favored that idiom back then,
9089
only different is left position follows indentation level, to match calling a Separator()
9190
inside or outside Columns().
92-
- Popups: clarified meaning of 'p_open != NULL' in BeginPopupModal() + set back user value
93-
to false when popup is closed in ways other than clicking the close button. (#6900)
94-
- Drag and Drop: Rework drop target highlight: reduce rectangle to its visible portion, and
95-
then expand slightly. A full rectangle is always visible and it may protrude slightly. (#4281, #3272)
96-
- Drag and Drop: Fixed submitting a tooltip from drop target location when using AcceptDragDropPayload()
97-
with ImGuiDragDropFlags_AcceptNoPreviewTooltip and submitting a tooltip manually.
98-
- TreeNode: Added ImGuiTreeNodeFlags_SpanAllColumns for use in tables. (#3151, #3565, #2451, #2438)
91+
- Tooltips:
92+
- Made using SetItemTooltip()/IsItemHovered(ImGuiHoveredFlags_ForTooltip) defaults to
93+
activate tooltips on disabled items. This is done by adding ImGuiHoveredFlags_AllowWhenDisabled
94+
to the default value of style.HoverFlagsForTooltipMouse/HoverFlagsForTooltipNav. (#1485)
95+
- Made is possible to combine ImGuiHoveredFlags_ForTooltip with a ImGuiHoveredFlags_DelayXXX
96+
override. (#1485)
97+
- Drag and Drop:
98+
- Reworked drop target highlight: reduce rectangle to its visible portion, and
99+
then expand slightly. A full rectangle is always visible and it may protrude slightly. (#4281, #3272)
100+
- Fixed submitting a tooltip from drop target location when using AcceptDragDropPayload()
101+
with ImGuiDragDropFlags_AcceptNoPreviewTooltip and submitting a tooltip manually.
99102
- Tables:
100103
- Added angled headers support. You need to set ImGuiTableColumnFlags_AngledHeader on selected
101104
columns and call TableAngledHeadersRow(). Added style.TableAngledHeadersAngle style option.
@@ -112,15 +115,15 @@ Other changes:
112115
in some situations, causing the earlier to be visible underneath when alpha is not 1.0f.
113116
- Fixed right-clicking right-most section (past right-most column) from highlighting a column.
114117
- Fixed an issue with ScrollX enabled where an extraneous draw command would be created.
118+
- Menus:
119+
- Menus: Fixed a bug where activating an item in a child-menu and dragging mouse over the
120+
parent-menu would erroneously close the child-menu. (Regression from 1.88). (#6869)
121+
- MenuBar: Fixed an issue where layouting an item in the menu-bar would erroneously
122+
register contents size in a way that would affect the scrolling layer.
123+
Was most often noticable when using an horizontal scrollbar. (#6789)
124+
- TreeNode: Added ImGuiTreeNodeFlags_SpanAllColumns for use in tables. (#3151, #3565, #2451, #2438)
115125
- TabBar: Fixed position of unsaved document marker (ImGuiTabItemFlags_UnsavedDocument) which was
116126
accidentally offset in 1.89.9. (#6862) [@alektron]
117-
- Fonts: 'float size_pixels' passed to AddFontXXX() functions is now rounded to lowest integer.
118-
This is because our layout/font system currently doesn't fully support non-integer sizes. Until
119-
it does, this has been a common pitfall leading to more or less subtle issues. (#3164, #3309, #6800)
120-
- Fonts: Better assert during load when passing truncated font data or wrong data size. (#6822)
121-
- Fonts: Ensure calling AddFontXXX function doesn't invalidates ImFont's ConfigData pointers
122-
prior to building again. (#6825)
123-
- Fonts, imgui_freetype: Fixed a warning and leak in IMGUI_ENABLE_FREETYPE_LUNASVG support. (#6842, #6591)
124127
- InputTextMultiline: Fixed a crash pressing Down on last empty line of a multiline buffer.
125128
(regression from 1.89.2, only happened in some states). (#6783, #6000)
126129
- InputTextMultiline: Fixed Tabbing cycle leading to a situation where Enter key wouldn't
@@ -129,11 +132,14 @@ Other changes:
129132
to SameLine() followed by manual cursor manipulation.
130133
- BeginCombo(): Added ImGuiComboFlags_WidthFitPreview flag. (#6881) [@mpv-enjoyer]
131134
- BeginListBox(): Fixed not consuming SetNextWindowXXX data when returning false.
132-
- Menus: Fixed a bug where activating an item in a child-menu and dragging mouse over the
133-
parent-menu would erroneously close the child-menu. (Regression from 1.88). (#6869)
134-
- MenuBar: Fixed an issue where layouting an item in the menu-bar would erroneously
135-
register contents size in a way that would affect the scrolling layer.
136-
Was most often noticable when using an horizontal scrollbar. (#6789)
135+
- Fonts:
136+
- Arument 'float size_pixels' passed to AddFontXXX() functions is now rounded to lowest integer.
137+
This is because our layout/font system currently doesn't fully support non-integer sizes. Until
138+
it does, this has been a common pitfall leading to more or less subtle issues. (#3164, #3309, #6800)
139+
- Better assert during load when passing truncated font data or wrong data size. (#6822)
140+
- Ensure calling AddFontXXX function doesn't invalidates ImFont's ConfigData pointers
141+
prior to building again. (#6825)
142+
- imgui_freetype: Fixed a warning and leak in IMGUI_ENABLE_FREETYPE_LUNASVG support. (#6842, #6591)
137143
- Misc: Most text functions also treat "%.*s" (along with "%s") specially to avoid formatting. (#3466, #6846)
138144
- IO: Add extra keys to ImGuiKey enum: ImGuiKey_F13 to ImGuiKey_F24. (#6891, #4921)
139145
- IO: Add extra keys to ImGuiKey enum: ImGuiKey_AppBack, ImGuiKey_AppForward. (#4921)

0 commit comments

Comments
 (0)