History for imgui / docs
2019-08-22
@omar
ImDrawList: clarified the name of many parameters so reading the code is a little easier. (#2740)
omar committed on 22 Aug 2019
@omar
Using offsetof() when available in C++11. Avoids Clang sanitizer complaining about old-style macros. (#94)
omar committed on 22 Aug 2019
@omar
TabBar: fixed single-tab not shrinking their width down. ...
omar committed on 22 Aug 2019
2019-08-19
@omar
TabBar: fixed ScrollToBar request creating bouncing loop when tab is larger than available space.
omar committed on 19 Aug 2019
2019-08-16
@omar
ColorPicker: Made rendering aware of global style alpha of the picker can be faded out. (#2711) ...
omar committed on 16 Aug 2019
2019-08-01
@Vilya Harvey
Backends: Vulkan: Added support for specifying multisample count. (#2705, #2706)
Vilya Harvey authored on 31 Jul 2019 omar committed on 1 Aug 2019
@omar
Backends: DX11: Fixed GSGetShader() call not passing an initialized instance count, would generally make the debug layer complain (Added in 1.72).
omar committed on 1 Aug 2019
@omar
Version 1.73 WIP
omar committed on 1 Aug 2019
2019-07-31
@omar
Version 1.72b (patch for nav)
omar committed on 31 Jul 2019
@omar
Nav: Made hovering non-MenuItem Selectable not re-assign the source item for keyboard navigation.
omar committed on 31 Jul 2019
@omar
Scrolling, Nav: Fixed programmatic scroll leading to a slightly incorrect scroll offset when the window has decorations or a menu-bar (broken in 1.71). This was mostly noticeable when a keyboard/gamepad movement led to scrolling the view, or using e.g. SetScrollHereY() function. Fix/amend a0994d74.
omar committed on 31 Jul 2019
2019-07-30
@omar
Internal: Moved NavScrollToBringItemIntoView() declaration to imgui_internal.h. Fixed spacing missing in 494d804. Fixed changelog wreck from 1.72.
omar committed on 30 Jul 2019
2019-07-29
@omar
Version 1.73 WIP
omar committed on 29 Jul 2019
2019-07-27
@omar
Version 1.72
omar committed on 27 Jul 2019
2019-07-26
@omar
Internal: Added IsMouseDragPastThreshold(). Tweaks. Todo. ...
omar committed on 26 Jul 2019
2019-07-22
@omar
Scrolling: Made mouse-wheel scrolling lock the underlying window until the mouse is moved again or until a short delay expires (2 seconds). This allow uninterrupted scroll even if child windows are passing under the mouse cursor. (#2604)
omar committed on 22 Jul 2019
@omar
Scrolling: Made it possible for mouse wheel and navigation-triggered scrolling to override a call to SetScrollX()/SetScrollY(), making it possible to use a simpler stateless pattern for auto-scrolling. ...
omar committed on 22 Jul 2019
@omar
InputTextMultiline: Fixed vertical scrolling tracking glitch. ...
omar committed on 22 Jul 2019
2019-07-21
@omar
Backends: DX10/DX11: Backup, clear and restore Geometry Shader is any is bound when calling renderer. ...
omar committed on 21 Jul 2019
@omar
OSX: Disabled default native Mac clipboard copy/paste implementation in core library (added in 1.71), because it needs application to be linked with '-framework ApplicationServices'. It can be explicitly enabled back by using '#define IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS' in imconfig.h. Re-added equivalent using NSPasteboard api in the imgui_impl_osx.mm experimental back-end. (#2546)
omar committed on 21 Jul 2019
@omar
Amend 0f86116, renamed to ImGuiKey_KeyPadEnter Changelog.. (#2677, #2005)
omar committed on 21 Jul 2019
@omar
Columns: Made GetColumnOffset() and GetColumnWidth() behave when there's no column set, consistently with other column functions + fixed Columns demo (#2683)
omar committed on 21 Jul 2019
2019-07-19
@omar
Columns: Improved honoring alignment with various values of ItemSpacing.x and WindowPadding.x. (#125, #2666)
omar committed on 19 Jul 2019
@omar
Columns: Made the right-most edge reaches up to the clipping rectangle (removing WindowPadding.x*0.5 worth of asymmetrical/extraneous padding). (#125, #2666) ...
omar committed on 19 Jul 2019
@omar
Revert "Columns: Improved honoring left-most and right-most alignment with various values of ItemSpacing.x and WindowPadding.x. In particular, the right-most edge now reaches up to the clipping rectangle while ensuring that the right-most column clipping width matches others. (#125, #2666)" ...
omar committed on 19 Jul 2019
2019-07-17
@omar
Columns: Improved honoring left-most and right-most alignment with various values of ItemSpacing.x and WindowPadding.x. In particular, the right-most edge now reaches up to the clipping rectangle while ensuring that the right-most column clipping width matches others. (#125, #2666)
omar committed on 17 Jul 2019
@omar
Columns: Fixed a regression from 1.71 where the right-side of the contents rectangle within each column would wrongly use a WindowPadding.x instead of ItemSpacing.x like it always did. (#125, #2666)
omar committed on 17 Jul 2019
@omar
Misc: Made Button(), ColorButton() not trigger an "edited" event leading to IsItemDeactivatedAfterEdit() returning true. This also effectively make ColorEdit4() not incorrect trigger IsItemDeactivatedAfterEdit() when clicking the color button to open the picker popup. (#1875) ...
omar committed on 17 Jul 2019
@omar
Fixed old SetWindowFontScale() api value from not being inherited by child window. Added comments about the right way to scale your UI (load a font at the right side, rebuild atlas, scale style). ...
omar committed on 17 Jul 2019
2019-07-16
@omar
Debug, Metrics: Added "Tools->Item Picker" tool which allow clicking on a widget to break in the debugger within the item code. The tool calls IM_DEBUG_BREAK() which can be redefined in imconfig.h if needed.
omar committed on 16 Jul 2019