duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

CHANGELOG.txt (445686B)


      1 dear imgui
      2 CHANGELOG
      3 
      4 This document holds the user-facing changelog that we also use in release notes.
      5 We generally fold multiple commits pertaining to the same topic as a single entry.
      6 Changes to backends are also included within the individual .cpp files of each backend.
      7 
      8 FAQ                     https://www.dearimgui.com/faq/
      9 RELEASE NOTES:          https://github.com/ocornut/imgui/releases
     10 WIKI                    https://github.com/ocornut/imgui/wiki
     11 GETTING STARTED         https://github.com/ocornut/imgui/wiki/Getting-Started
     12 GLOSSARY                https://github.com/ocornut/imgui/wiki/Glossary
     13 ISSUES & SUPPORT        https://github.com/ocornut/imgui/issues
     14 
     15 WHEN TO UPDATE?
     16 
     17 - Keeping your copy of Dear ImGui updated regularly is recommended.
     18 - It is generally safe and recommended to sync to the latest commit in 'master' or 'docking'
     19   branches. The library is fairly stable and regressions tends to be fixed fast when reported.
     20 
     21 HOW TO UPDATE?
     22 
     23 - Update submodule or copy/overwrite every file.
     24 - About imconfig.h:
     25   - You may modify your copy of imconfig.h, in this case don't overwrite it.
     26   - or you may locally branch to modify imconfig.h and merge/rebase latest.
     27   - or you may '#define IMGUI_USER_CONFIG "my_config_file.h"' globally from your build system to
     28     specify a custom path for your imconfig.h file and instead not have to modify the default one.
     29 - Read the `Breaking Changes` section (in imgui.cpp or here in the Changelog).
     30 - If you have a problem with a missing function/symbols, search for its name in the code, there will likely be a comment about it.
     31 - If you are copying this repository in your codebase, please leave the demo and documentations files in there, they will be useful.
     32 - You may diff your previous Changelog with the one you just copied and read that diff.
     33 - You may enable `IMGUI_DISABLE_OBSOLETE_FUNCTIONS` in imconfig.h to forcefully disable legacy names and symbols.
     34   Doing it every once in a while is a good way to make sure you are not using obsolete symbols. Dear ImGui is in active development,
     35   and API updates have been a little more frequent lately. They are documented below and in imgui.cpp and should not affect all users.
     36 - Please report any issue!
     37 
     38 -----------------------------------------------------------------------
     39  VERSION 1.90.4 (Released 2024-02-22)
     40 -----------------------------------------------------------------------
     41 
     42 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.90.4
     43 
     44 Other changes:
     45 
     46 - Nav: Fixed SetKeyboardFocusHere() or programmatic tabbing API from not working on
     47   windows with the ImGuiWindowFlags_NoNavInputs flag (regression in 1.90.2, which
     48   among other things broke imgui_memory_editor).
     49 - Menus, Popups: Fixed an issue where hovering a parent-menu upward would
     50   erroneously close the window. (#7325, #7287, #7063)
     51 - Popups: Fixed resizable popup minimum size being too small. Standardized minimum
     52   size logic. (#7329).
     53 - Modals: Temporary changes of ImGuiCol_ModalWindowDimBg are properly handled by
     54   BeginPopupModal(). (#7340)
     55 - Tables: Angled headers: fixed support for multi-line labels. (#6917)
     56 - Tables: Angled headers: various fixes to accurately handle CellPadding changes. (#6917)
     57 - Tables: Angled headers: properly registers horizontal component of angled headers
     58   for auto-resizing of columns. (#6917)
     59 - Tables: Angled headers: fixed TableAngledHeadersRow() incorrect background fill
     60   drawn too low, particularly visible with tables that have no scrolling. (#6917)
     61 - ProgressBar: Fixed a minor tesselation issue when rendering rounded progress bars,
     62   where in some situations the rounded section wouldn't follow regular tesselation rules.
     63 - Debug Tools: Item Picker: Promoted ImGui::DebugStartItemPicker() to public API. (#2673)
     64 - Debug Tools: Item Picker: Menu entry visible in Demo->Tools but greyed out unless
     65   io.ConfigDebugIsDebuggerPresent is set. (#2673)
     66 - Misc: Added optional alpha multiplier parameter to GetColorU32(ImU32) variant.
     67 - Demo: Custom Rendering: better demonstrate PathArcTo(), PathBezierQuadraticCurveTo(),
     68   PathBezierCubicCurveTo(), PathStroke(), PathFillConvex() functions.
     69 
     70 
     71 -----------------------------------------------------------------------
     72  VERSION 1.90.3 (Released 2024-02-14)
     73 -----------------------------------------------------------------------
     74 
     75 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.90.3
     76 
     77 Breaking changes:
     78 
     79 - Backends: SDL2: Removed obsolete ImGui_ImplSDL2_NewFrame(SDL_Window*) signature which
     80   was obsoleted in 1.84. Calling ImGui_ImplSDL2_NewFrame() is fine.
     81 - Backends: Vulkan: Moved RenderPass parameter from ImGui_ImplVulkan_Init() function to
     82   ImGui_ImplVulkan_InitInfo structure. Not required when using dynamic rendering. (#7308) [@shawnhatori]
     83 - Backends: Vulkan: Using dynamic rendering now require filling the PipelineRenderingCreateInfo
     84   structure in ImGui_ImplVulkan_InitInfo, allowing to configure color/depth/stencil formats.
     85   Removed ColorAttachmentFormat field previously provided for dynamic rendering.
     86   (#7166, #6855, #5446, #5037) [@shawnhatori]
     87 
     88 Other changes:
     89 
     90 - Menus, Popups: Fixed menus and popups with ChildWindow flag erroneously not displaying
     91   a scrollbar when contents is over parent viewport size. (#7287, #7063) [@ZingBallyhoo]
     92 - Backends: SDL2, SDL3: Handle gamepad disconnection + fixed increasing gamepad reference
     93   counter continuously. Added support for multiple simultaneous gamepads.
     94   Added ImGui_ImplSDL2_SetGamepadMode()) function to select whether to automatically pick
     95   first available gamepad, all gamepads, or specific gamepads.
     96   (#3884, #6559, #6890, #7180) [@ocornut, @lethal-guitar, @wn2000, @bog-dan-ro]
     97 - Backends: SDL3: Fixed gamepad handling. (#7180) [@bog-dan-ro]
     98 - Backends: SDLRenderer3: query newly added SDL_RenderViewportSet() to not restore
     99   a wrong viewport if none was initially set.
    100 - Backends: DirectX9: Using RGBA format when allowed by the driver to avoid CPU side
    101   conversion. (#6575) [@Demonese]
    102 - Internals: Fixed ImFileOpen not working before context is created, preventing creation
    103   of a font atlas before main context creation. (#7314, #7315) [@PathogenDavid, @ocornut]
    104 
    105 
    106 -----------------------------------------------------------------------
    107  VERSION 1.90.2 (Released 2024-02-09)
    108 -----------------------------------------------------------------------
    109 
    110 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.90.2
    111 
    112 Breaking changes:
    113 
    114 - Commented out ImGuiIO::ImeWindowHandle obsoleted in 1.87 in favor of writing
    115   to 'void* ImGuiViewport::PlatformHandleRaw'.
    116 - Backends: WebGPU: ImGui_ImplWGPU_Init() now takes a ImGui_ImplWGPU_InitInfo structure
    117   instead of variety of parameters, allowing for easier further changes. (#7240)
    118 
    119 Other changes:
    120 
    121 - Nav: keyboard/gamepad activation mark widgets as held to give better visual feedback.
    122 - Nav: tweak to logic marking navigated item as hovered when using keyboard, allowing
    123   the hover highlight to stay even while another item is activated.
    124 - Nav: Fixed SetKeyboardFocusHere() not working when current nav focus is in different scope,
    125   regression from 1.90.1 related to code scoping Tab presses to local scope. (#7226) [@bratpilz]
    126 - Nav: Fixed pressing Escape while in a child window with _NavFlattened flag. (#7237)
    127 - Nav: Improve handling of Alt key to toggle menu so that key ownership may be claimed on
    128   individual left/right alt key without interfering with the other.
    129 - Nav, Menus: Fixed click on a BeginMenu() followed by right-arrow from making the child menu
    130   reopen and flicker (using ImGuiPopupFlags_NoReopen).
    131 - Nav: ImGuiWindowFlags_NoNavInputs is tested during scoring so NavFlattened windows can use it.
    132 - Popups: OpenPopup(): added ImGuiPopupFlags_NoReopen flag to specifically not close and reopen
    133   a popup when it is already open. (#1497, #1533)
    134   (Note that this differs from specific handling we already have in place for the case of calling
    135   OpenPopup() repeatedly every frame: we already didn't reopen in that specific situation, otherwise
    136   the effect would be very disastrous in term of confusion, as reopening would steal focus).
    137 - Popups: Slight change to popup closing logic (e.g. after focusing another window) which skipped
    138   over popups that are also child windows.
    139 - Combo: Fixed not reusing windows optimally when used inside a popup stack.
    140 - Debug Tools: Metrics: Fixed debug break in SetShortcutRouting() not handling ImGuiMod_Shortcut redirect.
    141 - Debug Tools: Metrics: Improved Monitors and Viewports minimap display. Highlight on hover.
    142 - Debug Tools: Debug Log: Added "Input Routing" logging.
    143 - Debug Tools: Added "nop" to IM_DEBUG_BREAK macro on GCC to work around GDB bug (#7266) [@Peter0x44]
    144 - Backends: Vulkan: Fixed vkAcquireNextImageKHR() validation errors in VulkanSDK 1.3.275 by
    145   allocating one extra semaphore than in-flight frames. (#7236) [@mklefrancois]
    146 - Backends: Vulkan: Fixed vkMapMemory() calls unnecessarily using full buffer size. (#3957)
    147 - Backends: Vulkan: Fixed handling of ImGui_ImplVulkan_InitInfo::MinAllocationSize field. (#7189, #4238)
    148 - Backends: WebGPU: Added ImGui_ImplWGPU_InitInfo::PipelineMultisampleState. (#7240)
    149 - Backends: WebGPU: Filling all WGPUDepthStencilState fields explicitly as a recent Dawn
    150   update stopped setting default values. (#7232) [@GrigoryGraborenko]
    151 - Backends: WebGPU: Fixed pipeline layout leak. (#7245) [@rajveermalviya]
    152 - Backends: OpenGL3: Backup and restore GL_PIXEL_UNPACK_BUFFER. (#7253)
    153 - Internals: Many improvements related to yet unpublicized shortcut routing and input ownership systems.
    154 - Internals: InputText: Added internal helpers to force reload of user-buf when active. (#2890) [@kudaba, @ocornut]
    155   Often requested in some form (#6962, #5219, #3290, #4627, #5054, #3878, #2881, #1506, #1216, #968),
    156   and useful for interactive completion/suggestions popups (#2057, #718)
    157 
    158 
    159 -----------------------------------------------------------------------
    160  VERSION 1.90.1 (Released 2024-01-10)
    161 -----------------------------------------------------------------------
    162 
    163 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.90.1
    164 
    165 Breaking changes:
    166 
    167 - imgui_freetype: commented out ImGuiFreeType::BuildFontAtlas() obsoleted in 1.81.
    168   Prefer using #define IMGUI_ENABLE_FREETYPE or see commented code for manual calls.
    169 - Removed CalcListClipping() marked obsolete in 1.86. (#3841)
    170   Prefer using ImGuiListClipper which can return non-contiguous ranges.
    171 - Internals, Columns: commented out legacy ImGuiColumnsFlags_XXX symbols redirecting
    172   to ImGuiOldColumnsFlags_XXX, obsoleted from imgui_internal.h in 1.80.
    173 - Commented out obsolete ImGuiKey_KeyPadEnter redirection to ImGuiKey_KeypadEnter. (#2625, #7143)
    174 
    175 Other changes:
    176 
    177 - Windows:
    178   - BeginChild(): Fixed auto-resizing erroneously limiting size to host viewport
    179     minus padding. There are no limit to a child width/height. (#7063) [@Devyre]
    180   - BeginChild(): Resize borders rendered even when ImGuiWindowFlags_NoBackground
    181     is specified. (#1710, #7194)
    182   - Fixed some auto-resizing path using style.WindowMinSize.x (instead of x/y)
    183     for both axises since 1.90. (#7106) [@n0bodysec]
    184   - Scrolling: internal scrolling value is rounded instead of truncated, as a way to reduce
    185     speed asymmetry when (incorrectly) attempting to scroll by non-integer amount. (#6677)
    186 - Navigation (Keyboard/gamepad):
    187   - Nav, IO: SetNextFrameWantCaptureKeyboard(false) calls are not overridden back to true when
    188     navigation is enabled. SetNextFrameWantCaptureKeyboard() is always higher priority. (#6997)
    189   - Nav: Activation can also be performed with Keypad Enter. (#5606)
    190 - Drag and Drop:
    191   - Fixed drop target highlight on items temporarily pushing a widened clip rect
    192     (namely Selectables and Treenodes using SpanAllColumn flag) so the highlight properly covers
    193     all columns. (#7049, #4281, #3272)
    194 - InputText:
    195   - InputTextMultiline: Fixed Tab character input not repeating (1.89.4 regression).
    196   - InputTextMultiline: Tabbing through a multi-line text editor which allows Tab character inputs
    197     (using the ImGuiInputTextFlags_AllowTabInput flag) doesn't automatically activate it, in order
    198     to allow passing through multiple widgets easily. (#3092, #5759, #787)
    199 - Drags, Sliders, Inputs:
    200   - DragScalarN, SliderScalarN, InputScalarN: Fixed incorrect pushes into ItemWidth
    201     stack when number of components is 1. [#7095] [@Nahor]
    202   - Drags, Sliders, Inputs: removed all attempts to filter non-numerical characters during text
    203     editing. Invalid inputs not applied to value, visibly reverted after validation. (#6810, #7096)
    204   - Drags, Sliders, Inputs: removal of filter means that "nan" and "inf" values may be input. (#7096)
    205   - DragScalarN, SliderScalarN, InputScalarN, PushMultiItemsWidths: improve multi-components
    206     width computation to better distribute the error. (#7120, #7121) [@Nahor]
    207 - Menus:
    208   - Tweaked hover slack logic, adding an extra timeout to avoid situations where a slow vertical
    209     movements toward another parent BeginMenu() can keep the wrong child menu open. (#6671, #6926)
    210 - Color Editors:
    211   - ColorEdit: Layout tweaks for very small sizes. (#7120, #7121)
    212   - ColorPicker: Fixed saturation/value cursor radius not scaling properly.
    213 - Tabs: Added ImGuiTabItemFlags_NoAssumedClosure to enable app to react on closure attempt,
    214   without having to draw an unsaved document marker (ImGuiTabItemFlags_UnsavedDocument sets
    215   _NoAssumedClosure automatically). (#7084)
    216 - Debug Tools:
    217   - Added io.ConfigDebugIsDebuggerPresent option. When enabled, this adds buttons in various
    218     locations of Metrics/Debugger to manually request a debugger break:
    219     - Request a debug break in a Begin() call.
    220     - Request a debug break in a ItemAdd() call via debug log and hovering 0xXXXXXX identifiers.
    221     - Request a debug break in a BeginTable() call.
    222     - Request a debug break in a SetShortcutRouting()/Shortcut() call. [Internal]
    223   - Metrics: Reorganize Tools menu.
    224   - Added DebugFlashStyleColor() to identify a style color. Added to Style Editor.
    225   - Debug Log: Hide its own clipper log to reduce noise in the output. (#5855)
    226   - Debug Log: Clicking any filter with SHIFT held enables it for 2 frames only,
    227     making it easier when dealing with spammy logs. (#5855)
    228 - Settings: Fixed an issue marking settings as dirty when merely clicking on a border or resize
    229   grip without moving it.
    230 - Misc: Added IMGUI_USER_H_FILENAME to change the path included when using
    231   IMGUI_INCLUDE_IMGUI_USER_H. (#7039) [@bryceberger]
    232 - Misc: Rework debug display of texture id in Metrics window to avoid compile-error when
    233   ImTextureID is defined to be larger than 64-bits. (#7090)
    234 - Misc: Added extra courtesy ==/!= operators when IMGUI_DEFINE_MATH_OPERATORS is defined.
    235 - Misc: Fixed text functions fast-path for handling "%s" and "%.*s" to handle null pointers gracefully,
    236   like most printf implementations. (#7016, #3466, #6846) [@codefrog2002]
    237 - Misc: Renamed some defines in imstb_textedit.h to avoid conflicts when using unity/jumbo builds
    238   on a codebase where another copy of the library is used.
    239 - Misc: During shutdown, check that io.BackendPlatformUserData and io.BackendRendererUserData are NULL
    240   in order to catch cases where backend was not shut down. (#7175)
    241 - Misc: Reworked Issue Template to a shinier and better form. (#5927) [@Panquesito7, @PathogenDavid, @ocornut]
    242 - Backends:
    243   - GLFW, Emscripten: Added ImGui_ImplGlfw_InstallEmscriptenCanvasResizeCallback() to
    244     register canvas selector and auto-resize GLFW window. (#6751) [@Traveller23, @ypujante]
    245   - GLFW: Fixed Windows specific hooks to use Unicode version of WndProc even when
    246     compiling in MBCS mode. (#7174) [@kimidaisuki22]
    247   - OpenGL3: Update GL3W based imgui_impl_opengl3_loader.h to load libGL.so variants in
    248     case of missing symlink. Fix 1.90 regression for some distros. (#6983)
    249   - Vulkan: Fixed mismatching allocator passed to vkCreateCommandPool() vs
    250     vkDestroyCommandPool(). (#7075) [@FoonTheRaccoon]
    251   - Vulkan: Added MinAllocationSize field in ImGui_ImplVulkan_InitInfo to workaround zealous
    252     "best practice" validation layer. (#7189, #4238) [@philae-ael]
    253   - Vulkan: Stopped creating command pools with VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT
    254     as we don't reset them.
    255   - WebGPU: Fixed wgpuRenderPassEncoderSetScissorRect() crash when rendering modal window's
    256     dimming layer, which has an unclipped value in ImDrawCmd::ClipRect. (#7191) [@aparis69]
    257 - Examples:
    258   - Examples: GLFW+Emscripten: Fixed examples not consistently resizing according to host canvas.
    259     (#6751) [@Traveller23, @ypujante]
    260   - Examples: SDL3: Minor fixes following recent SDL3 in-progress development.
    261 
    262 
    263 -----------------------------------------------------------------------
    264  VERSION 1.90.0 (Released 2023-11-15)
    265 -----------------------------------------------------------------------
    266 
    267 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.90
    268 
    269 Breaking changes:
    270 
    271  - BeginChild(): Upgraded 'bool border = false' parameter to 'ImGuiChildFlags flags = 0'.
    272    Added ImGuiChildFlags_Border value. As with our prior "bool-to-flags" API updates,
    273    the ImGuiChildFlags_Border value is guaranteed to be == true forever to ensure a
    274    smoother transition, meaning all existing calls will still work.
    275    If you want to neatly transition your call sites:
    276       Before:  BeginChild("Name", size, true)
    277       After:   BeginChild("Name", size, ImGuiChildFlags_Border)
    278       Before:  BeginChild("Name", size, false)
    279       After:   BeginChild("Name", size) or BeginChild("Name", 0) or BeginChild("Name", size, ImGuiChildFlags_None)
    280    Existing code will still work as 'ImGuiChildFlags_Border == true', but you are encouraged to update call sites.
    281  - BeginChild(): Added child-flag ImGuiChildFlags_AlwaysUseWindowPadding as a replacement for
    282    the window-flag ImGuiWindowFlags_AlwaysUseWindowPadding: the feature only ever made sense
    283    for use with BeginChild() anyhow, passing it to Begin() had no effect. Now that we accept
    284    child-flags we are moving it there. (#462)
    285       Before:  BeginChild("Name", size, 0, ImGuiWindowFlags_AlwaysUseWindowPadding);
    286       After:   BeginChild("Name", size, ImGuiChildFlags_AlwaysUseWindowPadding, 0);
    287    Kept inline redirection enum (will obsolete later) so existing code will work.
    288  - BeginChildFrame()/EndChildFrame(): removed functions in favor of using BeginChild() with
    289    the ImGuiChildFlags_FrameStyle flag. Kept inline redirection function (will obsolete).
    290    Those functions were merely PushStyle/PopStyle helpers and custom versions are easy to create.
    291    (The removal isn't so much motivated by needing to add the feature in BeginChild(), but by the
    292    necessity to avoid BeginChildFrame() signature mismatching BeginChild() signature and features.)
    293  - Debug Tools: Renamed ShowStackToolWindow() ("Stack Tool") to ShowIDStackToolWindow() ("ID Stack Tool"),
    294    as earlier name was misleading. Kept inline redirection function. (#4631)
    295  - IO: Removed io.MetricsActiveAllocations introduced in 1.63, was displayed in Metrics and unlikely to
    296    be accessed by end-user. Value still visible in the UI and easily to recompute from a delta.
    297  - Defining IMGUI_DISABLE_OBSOLETE_FUNCTIONS now automatically defines IMGUI_DISABLE_OBSOLETE_KEYIO. (#4921)
    298  - Removed IM_OFFSETOF() macro in favor of using offsetof() available in C++11. Kept redirection define. (#4537)
    299  - ListBox, Combo: Changed signature of "name getter" callback in old one-liner ListBox()/Combo() apis.
    300    Before:
    301       getter type:   bool (*getter)(void* user_data, int idx, const char** out_text)
    302       function:      bool Combo(const char* label, int* current_item, bool (*getter)(void* user_data, int idx, const char** out_text), ...);
    303       function:      bool ListBox(const char* label, int* current_item, bool (*getting)(void* user_data, int idx, const char** out_text), ...);
    304    After:
    305       getter type:   const char* (*getter)(void* user_data, int idx)
    306       function:      bool Combo(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), ...);
    307       function:      bool ListBox(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), ...);
    308    Old type was unnecessarily complex and harder to wrap in e.g. a lambda. Kept inline redirection function (will obsolete).
    309  - Commented out obsolete redirecting enums/functions that were marked obsolete two years ago:
    310    - GetWindowContentRegionWidth() -> use GetWindowContentRegionMax().x - GetWindowContentRegionMin().x.
    311      Consider that generally 'GetContentRegionAvail().x' is often more correct and more useful.
    312    - ImDrawCornerFlags_XXX         -> use ImDrawFlags_RoundCornersXXX names.
    313      Read 1.82 changelog for details + grep commented names in sources.
    314    - Commented out runtime support for hardcoded ~0 or 0x01..0x0F rounding flags values for
    315      AddRect()/AddRectFilled()/PathRect()/AddImageRounded(). -> Use ImDrawFlags_RoundCornersXXX flags.
    316      Read 1.82 changelog for details.
    317  - Backends: Vulkan: Removed parameter from ImGui_ImplVulkan_CreateFontsTexture(): backend now creates its own
    318    command-buffer to upload fonts. Removed ImGui_ImplVulkan_DestroyFontUploadObjects() which is now unnecessary.
    319    No need to call ImGui_ImplVulkan_CreateFontsTexture() as it is done automatically in ImGui_ImplVulkan_NewFrame().
    320    You can call ImGui_ImplVulkan_CreateFontsTexture() manually if you need to reload the font atlas texture.
    321    (#6943, #6715, #6327, #3743, #4618)
    322 
    323 Other changes:
    324 
    325 - Windows:
    326   - BeginChild(): Added ImGuiChildFlags_ResizeX and ImGuiChildFlags_ResizeY to allow resizing
    327     child windows from the bottom/right border (toward layout direction). Resized child windows
    328     settings are saved and persistent in .ini file. (#1710)
    329   - BeginChild(): Added ImGuiChildFlags_Border as a replacement for 'bool border = true' parameter.
    330   - BeginChild(): Added ImGuiChildFlags_AutoResizeX and ImGuiChildFlags_AutoResizeY to auto-resize
    331     on one axis, while generally providing a size on the other axis. (#1666, #1395, #1496, #1710)
    332     e.g. BeginChild("name", {-FLT_MIN, 0.0f}, ImGuiChildFlags_AutoResizeY);
    333     - Size is only reevaluated if the child window is within visible boundaries or just appearing.
    334       This allows coarse clipping to be performed and auto-resizing childs to return false when
    335       hidden because of being scrolled out.
    336     - Combining this with also specifying ImGuiChildFlags_AlwaysAutoResize disables
    337       this optimization, meaning child contents will never be clipped (not recommended).
    338     - Please be considerate that child are full windows and carry significant overhead:
    339       combining auto-resizing for both axises to create a non-scrolling child to merely draw
    340       a border would be better more optimally using BeginGroup(). (see #1496)
    341       (until we come up with new helpers for framed groups and work-rect adjustments).
    342   - BeginChild(): made it possible to use SetNextWindowSizeConstraints() rectangle, often
    343     useful when ImGuiChildFlags_AutoResizeX or ImGuiChildFlags_AutoResizeY. (#1666, #1395, #1496)
    344     Custom constraint callback are not supported with child window.
    345   - BeginChild(): Added ImGuiChildFlags_FrameStyle as a replacement for BeginChildFrame(),
    346     use it to make child window use FrameBg, FrameRounding, FrameBorderSize, FramePadding
    347     instead of ChildBg, ChildRounding, ChildBorderSize, WindowPadding.
    348   - Popups: clarified meaning of 'p_open != NULL' in BeginPopupModal() + set back user value
    349     to false when popup is closed in ways other than clicking the close button. (#6900)
    350   - Double-clicking lower-left resize grip auto-resize (like lower-right one).
    351   - Double-clicking bottom or right window border auto-resize on a singles axis.
    352   - Use relative mouse movement for border resize when the border geometry has moved
    353     (e.g. resizing a child window triggering parent scroll) in order to avoid resizing
    354     feedback loops. Unless manually mouse-wheeling while border resizing. (#1710)
    355 - Separators:
    356   - Altered end-points to use more standard boundaries. (#205, #4787, #1643)
    357     Left position is always current cursor X position, right position is always work-rect
    358     rightmost edge. It effectively means that:
    359     - A separator in the root of a window will end up a little more distant from edges
    360       than previously (essentially following WindowPadding instead of clipping edges).
    361     - A separator inside a table cell end up a little distance from edges instead of
    362       touching them (essentially following CellPadding instead of clipping edges).
    363     - Matches tree indentation (was not the case before).
    364     - Matches SeparatorText(). (#1643)
    365     - Makes things correct inside groups without specific/hard-coded handling. (#205)
    366   - Support legacy behavior when used inside old Columns(), as we favored that idiom back then,
    367     only different is left position follows indentation level, to match calling a Separator()
    368     inside or outside Columns().
    369 - Tooltips:
    370   - Made using SetItemTooltip()/IsItemHovered(ImGuiHoveredFlags_ForTooltip) defaults to
    371     activate tooltips on disabled items. This is done by adding ImGuiHoveredFlags_AllowWhenDisabled
    372     to the default value of style.HoverFlagsForTooltipMouse/HoverFlagsForTooltipNav. (#1485)
    373   - Made is possible to combine ImGuiHoveredFlags_ForTooltip with a ImGuiHoveredFlags_DelayXXX
    374     override. (#1485)
    375 - Drag and Drop:
    376   - Reworked drop target highlight: reduce rectangle to its visible portion, and then expand
    377     slightly. A full rectangle is always visible and it may protrude slightly. (#4281, #3272)
    378   - Fixed submitting a tooltip from drop target location when using AcceptDragDropPayload()
    379     with ImGuiDragDropFlags_AcceptNoPreviewTooltip and submitting a tooltip manually.
    380 - Tables:
    381   - Added angled headers support. You need to set ImGuiTableColumnFlags_AngledHeader on selected
    382     columns and call TableAngledHeadersRow(). Added style.TableAngledHeadersAngle style option. (#6917)
    383   - Added ImGuiTableFlags_HighlightHoveredColumn flag, currently highlighting column header.
    384   - Fixed an edge-case when no columns are visible + table scrollbar is visible + user
    385     code is always testing return value of TableSetColumnIndex() to coarse clip. With an active
    386     clipper it would have asserted. Without a clipper, the scrollbar range would be wrong.
    387   - Request user to submit contents when outer host-window is requesting auto-resize,
    388     so a scrolling table can contribute to initial window size. (#6510)
    389   - Fixed subtle drawing overlap between borders in some situations.
    390   - Fixed bottom-most and right-most outer border offset by one. (#6765, #3752) [@v-ein]
    391   - Fixed top-most and left-most outer border overlapping inner clip-rect when scrolling. (#6765)
    392   - Fixed top-most outer border being drawn with both TableBorderLight and TableBorderStrong
    393     in some situations, causing the earlier to be visible underneath when alpha is not 1.0f.
    394   - Fixed right-clicking right-most section (past right-most column) from highlighting a column.
    395   - Fixed an issue with ScrollX enabled where an extraneous draw command would be created.
    396 - Menus:
    397   - Menus: Fixed a bug where activating an item in a child-menu and dragging mouse over the
    398     parent-menu would erroneously close the child-menu. (Regression from 1.88). (#6869)
    399   - MenuBar: Fixed an issue where layouting an item in the menu-bar would erroneously
    400     register contents size in a way that would affect the scrolling layer.
    401     Was most often noticeable when using an horizontal scrollbar. (#6789)
    402 - InputText:
    403   - InputTextMultiline: Fixed a crash pressing Down on last empty line of a multi-line buffer.
    404     (regression from 1.89.2, only happened in some states). (#6783, #6000)
    405   - InputTextMultiline: Fixed Tabbing cycle leading to a situation where Enter key wouldn't
    406     be accepted by the widget when navigation highlight is visible. (#6802, #3092, #5759, #787)
    407 - Nav: Tabbing always enable nav highlight when ImGuiConfigFlags_NavEnableKeyboard is set.
    408   Previously was inconsistent and only enabled when stepping through a non-input item.
    409   (#6802, #3092, #5759, #787)
    410 - TreeNode: Added ImGuiTreeNodeFlags_SpanAllColumns for use in tables. (#3151, #3565, #2451, #2438)
    411 - TabBar: Fixed position of unsaved document marker (ImGuiTabItemFlags_UnsavedDocument) which was
    412   accidentally offset in 1.89.9. (#6862) [@alektron]
    413 - ColorPicker4(): Fixed ImGuiColorEditFlags_NoTooltip not being forwarded to individual DragFloat3
    414   sub-widgets which have a visible color preview when ImGuiColorEditFlags_NoSidePreview is also set. (#6957)
    415 - BeginGroup(): Fixed a bug pushing line lower extent too far down when called after a call
    416   to SameLine() followed by manual cursor manipulation.
    417 - BeginCombo(): Added ImGuiComboFlags_WidthFitPreview flag. (#6881) [@mpv-enjoyer]
    418 - BeginListBox(): Fixed not consuming SetNextWindowXXX() data when returning false.
    419 - Fonts:
    420   - Argument 'float size_pixels' passed to AddFontXXX() functions is now rounded to lowest integer.
    421     This is because our layout/font system currently doesn't fully support non-integer sizes. Until
    422     it does, this has been a common pitfall leading to more or less subtle issues. (#3164, #3309, #6800)
    423   - Better assert during load when passing truncated font data or wrong data size. (#6822)
    424   - Ensure calling AddFontXXX function doesn't invalidates ImFont's ConfigData pointers
    425     prior to building again. (#6825)
    426   - Added ImFontConfig::RasterizerDensity field to increase texture size of rendered glyphs
    427     without altering other metrics. Among other things, this makes it easier to have zooming code
    428     swapping between 2 fonts (e.g. a 100% and a 400% fonts) depending on current scale. (#6925) [@thedmd]
    429     Important: if you increase this it is expected that you would render the font with a scale of
    430     similar value or magnitude. Merely increasing this without increasing scale may lower quality.
    431   - imgui_freetype: Added support for RasterizerDensity. (#6925) [@thedmd]
    432   - imgui_freetype: Fixed a warning and leak in IMGUI_ENABLE_FREETYPE_LUNASVG support. (#6842, #6591)
    433 - Inputs: Added IsKeyChordPressed() helper function e.g. IsKeyChordPressed(ImGuiMod_Ctrl | ImGuiKey_S).
    434   (note that ImGuiMod_Shortcut may be used as an alias for Cmd on OSX and Ctrl on other systems).
    435 - Misc: Most text functions also treat "%.*s" (along with "%s") specially to bypass formatting. (#3466, #6846)
    436 - IO: Add extra keys to ImGuiKey enum: ImGuiKey_F13 to ImGuiKey_F24. (#6891, #4921)
    437 - IO: Add extra keys to ImGuiKey enum: ImGuiKey_AppBack, ImGuiKey_AppForward. (#4921)
    438 - IO: Setting io.WantSetMousePos ignores incoming MousePos events. (#6837, #228) [@bertaye]
    439 - Debug Tools: Metrics: Added log of recent alloc/free calls.
    440 - Debug Tools: Metrics: Added "Show groups rectangles" in tools.
    441 - ImDrawList: Added AddEllipse(), AddEllipseFilled(), PathEllipticalArcTo(). (#2743) [@Doohl]
    442 - ImVector: Added find_index() helper.
    443 - Demo: Added "Drag and Drop -> Tooltip at target location" demo.
    444 - Demo: Added "Layout -> Child Windows -> Manual-resize" demo. (#1710)
    445 - Demo: Added "Layout -> Child Windows -> Auto-resize with constraints" demo. (#1666, #1395, #1496, #1710)
    446 - Demo: Partly fixed "Examples -> Constrained-resizing window" custom constrains demo. (#6210) [@cfillion]
    447 - Backends: Vulkan: Removed parameter from ImGui_ImplVulkan_CreateFontsTexture(): backend now creates its own
    448   command-buffer to upload fonts. Removed ImGui_ImplVulkan_DestroyFontUploadObjects() which is now unnecessary.
    449   No need to call ImGui_ImplVulkan_CreateFontsTexture() as it is done automatically in ImGui_ImplVulkan_NewFrame().
    450   You can call ImGui_ImplVulkan_CreateFontsTexture() manually if you need to reload font atlas texture.
    451   Fixed leaks, and added ImGui_ImplVulkan_DestroyFontsTexture() (probably no need to call this directly).
    452   (#6943, #6715, #6327, #3743, #4618)
    453   [@helynranta, @thomasherzog, @guybrush77, @albin-johansson, @MiroKaku, @benbatya-fb, @ocornut]
    454 - Backends: GLFW: Clear emscripten's MouseWheel callback before shutdown. (#6790, #6096, #4019) [@halx99]
    455 - Backends: GLFW: Added support for F13 to F24 function keys. (#6891)
    456 - Backends: SDL2, SDL3: Added support for F13 to F24 function keys, AppBack, AppForward. (#6891)
    457 - Backends: SDL3: Updates for recent API changes. (#7000, #6974)
    458 - Backends: Win32: Added support for F13 to F24 function keys, AppBack, AppForward. (#6891)
    459 - Backends: Win32: Added support for keyboard codepage conversion for when application
    460   is compiled in MBCS mode and using a non-Unicode window. (#6785, #6782, #5725, #5961) [@sneakyevil]
    461 - Backends: Win32: Synthesize key-down event on key-up for VK_SNAPSHOT / ImGuiKey_PrintScreen as Windows
    462   doesn't emit it (same behavior as GLFW/SDL). (#6859) [@thedmd, @SuperWangKai]
    463 - Backends: OpenGL3: rename symbols in our internal loader so that LTO compilation with another
    464   copy of gl3w becomes possible. (#6875, #6668, #4445) [@nicolasnoble]
    465 - Backends: OpenGL3: Update GL3W based imgui_impl_opengl3_loader.h to load "libGL.so" instead
    466   of "libGL.so.1", accommodating for NetBSD systems having only "libGL.so.3" available. (#6983)
    467 - Backends: OSX: Added support for F13 to F20 function keys. Support mapping F13 to PrintScreen. (#6891)
    468 - Examples: GLFW+Vulkan, SDL+Vulkan: Simplified and removed code due to backend improvements.
    469 - Internals: Renamed ImFloor() to ImTrunc(). Renamed ImFloorSigned() to ImFloor(). (#6861)
    470 
    471 
    472 -----------------------------------------------------------------------
    473  VERSION 1.89.9 (Released 2023-09-04)
    474 -----------------------------------------------------------------------
    475 
    476 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.9
    477 
    478 Breaking changes:
    479 
    480 - Clipper: Renamed IncludeRangeByIndices(), also called ForceDisplayRangeByIndices()
    481   before 1.89.6, to IncludeItemsByIndex(). Kept inline redirection function. (#6424, #3841)
    482 
    483 Other changes:
    484 
    485 - Tables: Made it possible to use SameLine(0,0) after TableNextColumn() or
    486   TableSetColumnIndex() in order to reuse line pos/height from previous cell. (#3740)
    487 - Tables: Made it possible to change style.CellPadding.y between rows. (#3740)
    488 - Nav, TreeNode: Pressing Left with ImGuiTreeNodeFlags_NavLeftJumpsBackHere now goes
    489   through proper navigation logic: honor scrolling and selection. (#1079, #1131)
    490 - Sliders: Fixed an integer overflow and div-by-zero in SliderInt() when
    491   v_max=INT_MAX (#6675, #6679) [@jbarthelmes]
    492 - Windows: Layout of Close/Collapse buttons uses style.ItemInnerSpacing.x between items,
    493   stopped incorrectly using FramePadding in a way where hit-boxes could overlap when
    494   setting large values. (#6749)
    495 - TabBar, Style: added style.TabBarBorderSize and associated ImGuiStyleVar_TabBarBorderSize.
    496   Tweaked rendering of that separator to allow thicker values. (#6820, #4859, #5022, #5239)
    497 - InputFloat, SliderFloat, DragFloat: always turn both '.' and ',' into the current decimal
    498   point character when using Decimal/Scientific character filter. (#6719, #2278) [@adamsepp]
    499 - ColorEdit, ColorPicker: Manipulating options popup don't mark item as edited. (#6722)
    500   (Note that they may still be marked as Active/Hovered.)
    501 - Clipper: Added IncludeItemByIndex() helper to include a single item. (#6424, #3841)
    502 - Clipper: Fixed a bug if attempt to force-include a range which matches an already
    503   included range, clipper would end earlier. (#3841)
    504 - ImDrawData: Fixed an issue where TotalVtxCount/TotalIdxCount does not match the sum
    505   of individual ImDrawList's buffer sizes when a dimming/modal background is rendered. (#6716)
    506 - ImDrawList: Automatically calling ChannelsMerge() if not done after a split.
    507 - ImDrawList: Fixed OOB access in _CalcCircleAutoSegmentCount when passing excessively
    508   large radius to AddCircle(). (#6657, #5317) [@EggsyCRO, @jdpatdiscord]
    509 - IO: Exposed io.PlatformLocaleDecimalPoint to configure decimal point ('.' or ',') for
    510   languages needing it. Should ideally be set to the value of '*localeconv()->decimal_point'
    511   but our backends don't do it yet. (#6719, #2278)
    512 - IO: Fixed io.AddMousePosEvent() and io.AddMouseButtonEvent() writing MouseSource to
    513   wrong union section. Was semantically incorrect and accidentally had no side-effects
    514   with default compiler alignment settings. (#6727) [@RickHuang2001]
    515 - Misc: Made multiple calls to Render() during the same frame early out faster.
    516 - Debug Tools: Metrics: Fixed "Drawlists" section and per-viewport equivalent
    517   appearing empty (regression in 1.89.8).
    518 - Demo: Reorganized "Examples" menu.
    519 - Demo: Tables: Demonstrate using SameLine() between cells. (#3740)
    520 - Demo: Tables: Demonstrate altering CellPadding.y between rows. (#3740)
    521 - Demo: Custom Rendering: Demonstrate out-of-order rendering using ImDrawListSplitter.
    522 - Backends: SDL2,SDL3: added ImGui_ImplSDL2_InitForOther()/ImGui_ImplSDL3_InitForOther()
    523   for consistency (matching GLFW backend) and as most initialization paths don't actually
    524   need to care about rendering backend.
    525 - Examples: Emscripten+WebGPU: Fixed WGPUInstance creation process + use preferred
    526   framebuffer format. (#6640, #6748) [@smileorigin]
    527 
    528 
    529 -----------------------------------------------------------------------
    530  VERSION 1.89.8 (Released 2023-08-01)
    531 -----------------------------------------------------------------------
    532 
    533 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.8
    534 
    535 Breaking changes:
    536 
    537 - IO: Obsoleted io.ClearInputCharacters() (added in 1.47) as it now ambiguous
    538   and often incorrect/misleading considering the existence of a higher-level
    539   input queue. This is automatically cleared by io.ClearInputsKeys(). (#4921)
    540 - ImDrawData: CmdLists[] array is now owned, changed from 'ImDrawList**' to
    541   'ImVector<ImDrawList*>'. Majority of users shouldn't be affected, but you
    542   cannot compare to NULL nor reassign manually anymore.
    543   Instead use AddDrawList(). Allocation count are identical. (#6406, #4879, #1878)
    544 
    545 Other changes:
    546 
    547 - Fonts: ImFontConfig::OversampleH now defaults to 2 instead of 3, since the
    548   quality increase is largely minimal.
    549 - Fonts, imgui_freetype: Added support to render OpenType SVG fonts using lunasvg.
    550   Requires enabling IMGUI_ENABLE_FREETYPE_LUNASVG along with IMGUI_ENABLE_FREETYPE,
    551   and providing headers/libraries for lunasvg. (#6591, #6607) [@sakiodre]
    552 - ImDrawData: CmdLists[] array is now an ImVector<> owned by ImDrawData rather
    553   than a pointer to internal state.
    554   - This makes it easier for user to create their own or append to an existing draw data.
    555     Added a ImDrawData::AddDrawList() helper function to do that. (#6406, #4879, #1878)
    556   - This makes it easier to perform a deep-swap instead of a deep-copy, as array
    557     ownership is now clear. (#6597, #6475, #6167, #5776, #5109, #4763, #3515, #1860)
    558   - Syntax and allocation count are otherwise identical.
    559 - Fixed CTRL+Tab dimming background assert when target window has a callback
    560   in the last ImDrawCmd. (#4857, #5937)
    561 - IsItemHovered: Fixed ImGuiHoveredFlags_ForTooltip for Keyboard/Gamepad navigation,
    562   got broken prior to 1.89.7 due to an unrelated change making flags conflict. (#6622, #1485)
    563 - InputText: Fixed a case where deactivation frame would write to underlying
    564   buffer or call CallbackResize although unnecessary, in a frame where the
    565   return value was false.
    566 - Tables: fixed GetContentRegionAvail().y report not taking account of lower cell
    567   padding or of using ImGuiTableFlags_NoHostExtendY. Not taking it into account
    568   would make the idiom of creating vertically bottom-aligned content (e.g. a child
    569   window) inside a table make the parent window erroneously have a scrollbar. (#6619)
    570 - Tables: fixed calculation of multi-instance shared decoration/scrollbar width of
    571   scrolling tables, to avoid flickering width variation when resizing down a table
    572   hosting a child window. (#5920, #6619)
    573 - Scrollbar: layout needs to take account of window border size, so a border size
    574   will slightly reduce scrollbar size. Generally we tried to make it that window
    575   border size has no incidence on layout but this can't work with thick borders. (#2522)
    576 - IO: Added io.ClearEventsQueue() to clear incoming inputs events. (#4921)
    577   May be useful in conjunction with io.ClearInputsKeys() if you need to clear
    578   both current inputs state and queued events (e.g. when using blocking native
    579   dialogs such as Windows's ::MessageBox() or ::GetOpenFileName()).
    580 - IO: Changed io.ClearInputsKeys() specs to also clear current frame character buffer
    581   (what now obsoleted io.ClearInputCharacters() did), as this is effectively the
    582   desirable behavior.
    583 - Misc: Added IMGUI_DISABLE_STB_SPRINTF_IMPLEMENTATION config macro to disable
    584   stb_sprintf implementation when using IMGUI_USE_STB_SPRINTF. (#6626) [@septag]
    585 - Misc: Avoid stb_textedit.h reincluding string.h while in a namespace, which
    586   messes up with building with Clang Modules. (#6653, #4791) [@JohelEGP]
    587 - Demo: Better showcase use of SetNextItemAllowOverlap(). (#6574, #6512, #3909, #517)
    588 - Demo: Showcase a few more InputText() flags.
    589 - Backends: Made all backends sources files support global IMGUI_DISABLE. (#6601)
    590 - Backends: GLFW: Revert ignoring mouse data on GLFW_CURSOR_DISABLED as it can be used
    591   differently. User may set ImGuiConfigFlags_NoMouse if desired. (#5625, #6609) [@scorpion-26]
    592 - Backends: WebGPU: Update for changes in Dawn. (#6602, #6188) [@williamhCode]
    593 - Examples: Vulkan: Creating minimal descriptor pools to fit only what is needed by
    594   example. (#6642) [@SaschaWillem]
    595 
    596 
    597 -----------------------------------------------------------------------
    598  VERSION 1.89.7 (Released 2023-07-04)
    599 -----------------------------------------------------------------------
    600 
    601 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.7
    602 
    603 Breaking changes:
    604 
    605 - Moved io.HoverDelayShort/io.HoverDelayNormal to style.HoverDelayShort/style.HoverDelayNormal.
    606   As the fields were added in 1.89 and expected to be left unchanged by most users, or only
    607   tweaked once during app initialisation, we are exceptionally accepting the breakage.
    608   Majority of users should not even notice.
    609 - Overlapping items: (#6512, #3909, #517)
    610   - Added 'SetNextItemAllowOverlap()' (called before an item) as a replacement for using
    611     'SetItemAllowOverlap()' (called after an item). This is roughly equivalent to using the
    612     legacy 'SetItemAllowOverlap()' call (public API) + ImGuiButtonFlags_AllowOverlap (internal).
    613   - Obsoleted 'SetItemAllowOverlap()': it didn't and couldn't work reliably since 1.89 (2022-11-15),
    614     and relied on ambiguously defined design. Use 'SetNextItemAllowOverlap()' before item instead.
    615   - Selectable, TreeNode: When using ImGuiSelectableFlags_AllowOverlap/ImGuiTreeNodeFlags_AllowOverlap
    616     and holding item held, overlapping widgets won't appear as hovered. (#6512, #3909)
    617     While this fixes a common small visual issue, it also means that calling IsItemHovered()
    618     after a non-reactive elements - e.g. Text() - overlapping an active one may fail if you don't
    619     use IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem). (#6610)
    620   - Renamed 'ImGuiTreeNodeFlags_AllowItemOverlap' to 'ImGuiTreeNodeFlags_AllowOverlap'.
    621   - Renamed 'ImGuiSelectableFlags_AllowItemOverlap' to 'ImGuiSelectableFlags_AllowOverlap'
    622   - Kept redirecting enums (will obsolete).
    623 
    624 Other changes:
    625 
    626 - Tooltips/IsItemHovered() related changes:
    627   - Tooltips: Added SetItemTooltip() and BeginItemTooltip() functions.
    628     They are shortcuts for the common idiom of using IsItemHovered().
    629     - SetItemTooltip("Hello")   == if (IsItemHovered(ImGuiHoveredFlags_Tooltip)) { SetTooltip("Hello"); }
    630     - BeginItemTooltip()        == IsItemHovered(ImGuiHoveredFlags_Tooltip) && BeginTooltip()
    631     The newly added ImGuiHoveredFlags_Tooltip is meant to facilitate standardizing
    632     mouse hovering delays and rules for a given application.
    633     The previously common idiom of using 'if (IsItemHovered()) { SetTooltip(...); }'
    634     won't use delay or stationary test.
    635   - IsItemHovered: Added ImGuiHoveredFlags_Stationary to require mouse being
    636     stationary when hovering a new item. Added style.HoverStationaryDelay (~0.15 sec).
    637     Once the mouse has been stationary once the state is preserved for same item. (#1485)
    638   - IsItemHovered: Added ImGuiHoveredFlags_ForTooltip as a shortcut for pulling flags
    639     from style.HoverFlagsForTooltipMouse or style.HoverFlagsForTooltipNav depending
    640     on active inputs (#1485)
    641     - style.HoverFlagsForTooltipMouse defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'
    642     - style.HoverFlagsForTooltipNav defaults to 'ImGuiHoveredFlags_NoSharedDelay | ImGuiHoveredFlags_DelayNormal'.
    643   - Tooltips: Tweak default offset for non-drag and drop tooltips so underlying items
    644     isn't covered as much. (Match offset for drag and drop tooltips)
    645   - IsItemHovered: Tweaked default value of style.HoverDelayNormal from 0.30 to 0.40,
    646     Tweaked default value of style.HoverDelayShort from 0.10 to 0.15. (#1485)
    647   - IsItemHovered: Added ImGuiHoveredFlags_AllowWhenOverlappedByWindow to ignore window-overlap only.
    648     Option ImGuiHoveredFlags_AllowWhenOverlapped now expand into a combination of both
    649     _AllowWhenOverlappedByWindow + _AllowWhenOverlappedByItem, matching old behavior.
    650 - Overlapping items: (#6512, #3909, #517)
    651   - Most item types should now work with SetNextItemAllowOverlap(). (#6512, #3909, #517)
    652   - Fixed first frame of an overlap highlighting underlying item if previous frame didn't hover anything.
    653   - IsItemHovered: Changed to return false when querying an item using AllowOverlap mode which
    654     is being overlapped. Added ImGuiHoveredFlags_AllowWhenOverlappedByItem to opt-out. (#6512, #3909, #517)
    655 - IsWindowHovered: Added support for ImGuiHoveredFlags_Stationary.
    656 - IsWindowHovered, IsItemHovered: Assert when passed any unsupported flags.
    657 - Tables: Fixed a regression in 1.89.6 leading to the first column of tables with either
    658   ScrollX or ScrollY flags from being impossible to resize. (#6503)
    659 - CollapsingHeader/TreeNode: Fixed text padding when using _Framed+_Leaf flags. (#6549) [@BobbyAnguelov]
    660 - InputText: Fixed not returning true when buffer is cleared while using the
    661   ImGuiInputTextFlags_EscapeClearsAll flag. (#5688, #2620)
    662 - InputText: Fixed a crash on deactivating a ReadOnly buffer. (#6570, #6292, #4714)
    663 - InputText: ImGuiInputTextCallbackData::InsertChars() accept (NULL,NULL) range, in order to conform
    664   to common idioms (e.g. passing .data(), .data() + .size() from a null string). (#6565, #6566, #3615)
    665 - Combo: Made simple/legacy Combo() function not returns true when picking already selected item.
    666   This is consistent with other widgets. If you need something else, you can use BeginCombo(). (#1182)
    667 - Clipper: Rework inner logic to allow functioning with a zero-clear constructor.
    668   This is order to facilitate usage for language bindings (e.g cimgui or dear_binding)
    669   where user may not be calling a constructor manually. (#5856)
    670 - Drag and Drop: Apply default behavior of drag source not reporting itself as hovered
    671   at lower-level, so DragXXX, SliderXXX, InputXXX, Plot widgets are fulfilling it.
    672   (Behavior doesn't apply when ImGuiDragDropFlags_SourceNoDisableHover is set).
    673 - Modals: In the case of nested modal, made sure that focused or appearing windows are
    674   moved below the lowest blocking modal (rather than the highest one). (#4317)
    675 - GetKeyName(): Fixed assert with ImGuiMod_XXX values when IMGUI_DISABLE_OBSOLETE_KEYIO is set.
    676 - Debug Tools: Added 'io.ConfigDebugIniSettings' option to save .ini data with extra
    677   comments. Currently mainly for inspecting Docking .ini data, but makes saving slower.
    678 - Demo: Added more developed "Widgets->Tooltips" section. (#1485)
    679 - Backends: OpenGL3: Fixed support for glBindSampler() backup/restore on ES3. (#6375, #6508) [@jsm174]
    680 - Backends: OpenGL3: Fixed erroneous use glGetIntegerv(GL_CONTEXT_PROFILE_MASK) on contexts
    681   lower than 3.2. (#6539, #6333) [@krumelmonster]
    682 - Backends: Vulkan: Added optional support for VK_KHR_dynamic_rendering (Vulkan 1.3+) in the
    683   backend for applications using it. User needs to set 'init_info->UseDynamicRendering = true'
    684   and 'init_info->ColorAttachmentFormat'. RenderPass becomes unused. (#5446, #5037) [@spnda, @cmarcelo]
    685 - Backends: GLFW: Accept glfwGetTime() not returning a monotonically increasing value.
    686   This seems to happens on some Windows setup when peripherals disconnect, and is likely
    687   to also happen on browser+Emscripten. Matches similar 1.89.4 fix in SDL backend. (#6491)
    688 - Examples: Win32+OpenGL3: Changed DefWindowProc() to DefWindowProcW() to match other examples
    689   and support the example app being compiled without UNICODE. (#6516, #5725, #5961, #5975) [@yenixing]
    690 
    691 
    692 -----------------------------------------------------------------------
    693  VERSION 1.89.6 (Released 2023-05-31)
    694 -----------------------------------------------------------------------
    695 
    696 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.6
    697 
    698 Breaking changes:
    699 
    700 - Clipper: Commented out obsolete redirection constructor which was marked obsolete in 1.79:
    701    'ImGuiListClipper(int items_count, float items_height)' --> Use 'ImGuiListClipper() + clipper.Begin()'.
    702 - Clipper: Renamed ForceDisplayRangeByIndices() to IncludeRangeByIndices(), kept
    703   inline redirection function (introduced in 1.86 and rarely used). (#6424, #3841)
    704 - Commented out obsolete/redirecting functions that were marked obsolete more than two years ago:
    705    - ListBoxHeader()  -> use BeginListBox()
    706    - ListBoxFooter()  -> use EndListBox()
    707    - Note how two variants of ListBoxHeader() existed. Check commented versions in imgui.h for refeence.
    708 - Backends: SDL_Renderer: Renamed 'imgui_impl_sdlrenderer.h/cpp' to 'imgui_impl_sdlrenderer2.h/cpp',
    709   in order to accomodate for upcoming SDL3 and change in its SDL_Renderer API. (#6286)
    710 - Backends: GLUT: Removed call to ImGui::NewFrame() from ImGui_ImplGLUT_NewFrame().
    711   It needs to be called from the main app loop, like with every other backends. (#6337) [@GereonV]
    712 
    713 Other changes:
    714 
    715 - Window: Fixed resizing from upper border when io.ConfigWindowsMoveFromTitleBarOnly is set. (#6390)
    716 - Tables: Fixed a small miscalculation in TableHeader() leading to an empty tooltip
    717   showing when a sorting column has no visible name. (#6342) [@lukaasm]
    718 - Tables: Fixed command merging when compiling with VS2013 (one array on stack was not
    719   initialized on VS2013. Unsure if due to a bug or UB/standard conformance). (#6377)
    720 - InputText: Avoid setting io.WantTextInputNextFrame during the deactivation frame.
    721   (#6341) [@lukaasm]
    722 - Drag, Sliders: if the format string doesn't contain any %, CTRL+Click to input text will
    723   use the default format specifier for the type. Allow display/input of raw value when using
    724   "enums" patterns (display label instead of value) + allow using when value is hidden. (#6405)
    725 - Nav: Record/restore preferred position on each given axis after a movement on that axis,
    726   then score movement on the other axis using this as a bias. This allows going up and down
    727   between e.g. a large header spanning horizontal space and three-ways-columns, landing
    728   on the same column as before.
    729 - Nav: Fixed navigation within tables/columns where item boundaries goes beyond columns limits,
    730   unclipped bounding boxes would interfere with other columns. (#2221) [@zzzyap, @ocornut]
    731 - Nav: Fixed CTRL+Tab into a root window with only childs with _NavFlattened flags
    732   erroneously initializing default nav layer to menu layer.
    733 - Menus: Fixed an issue when opening a menu hierarchy in a given menu-bar would allow
    734   opening another via simple hovering. (#3496, #4797)
    735 - Fonts: Fixed crash when merging fonts and the first font has no valid glyph. (#6446) [@JaedanC]
    736 - Fonts: Fixed crash when manually specifying an EllipsisChar that doesn't exist. (#6480)
    737 - Misc: Added ImVec2 unary minus operator. (#6368) [@Koostosh]
    738 - Debug Tools: Debug Log: Fixed not parsing 0xXXXXXXXX values for geo-locating on mouse
    739   hover hover when the identifier is at the end of the line. (#5855)
    740 - Debug Tools: Added 'io.ConfigDebugIgnoreFocusLoss' option to disable 'io.AddFocusEvent(false)'
    741   handling. May facilitate interactions with a debugger when focus loss leads to clearing
    742   inputs data. (#4388, #4921)
    743 - Backends: Clear bits sets io.BackendFlags on backend Shutdown(). (#6334, #6335] [@GereonV]
    744   Potentially this would facilitate switching runtime backend mid-session.
    745 - Backends: Win32: Added ImGui_ImplWin32_InitForOpenGL() to facilitate combining raw
    746   Win32/Winapi with OpenGL. (#3218)
    747 - Backends: OpenGL3: Restore front and back polygon mode separately when supported
    748   by context (Desktop 3.0, 3.1, or 3.2+ with compat bit). (#6333) [@GereonV]
    749 - Backends: OpenGL3: Support for glBindSampler() backup/restore on ES3. (#6375) [@jsm174]
    750 - Backends: SDL3: Fixed build on Emscripten/iOS/Android. (#6391) [@jo-codegirl]
    751 - Backends: SDLRenderer3: Added SDL_Renderer for SDL3 backend. (#6286) [@Carcons, @ocornut]
    752 - Examples: Added native Win32+OpenGL3 example. We don't recommend using this setup but we
    753   provide it for completeness. (#3218, #5170, #6086, #2772, #2600, #2359, #2022, #1553) [@learn-more]
    754 - Examples: Vulkan: Use integrated GPU if nothing else is available. (#6359) [@kimidaisuki22]
    755 - Examples: DX9, DX10, DX11: Queue framebuffer resize instead of processing in WM_SIZE,
    756   as some drivers tends to only cleanup after existing the native resize modal loop. (#6374)
    757 - Examples: Added SDL3+SDL_Renderer example. (#6286)
    758 - Examples: Updated all Visual Studio projects and batches to use /utf-8 argument.
    759 
    760 
    761 -----------------------------------------------------------------------
    762  VERSION 1.89.5 (Released 2023-04-13)
    763 -----------------------------------------------------------------------
    764 
    765 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.5
    766 
    767 Other changes:
    768 
    769 - InputText: Reworked prev/next-word behavior to more closely match Visual Studio
    770   text editor. Include '.' as a delimiter and alter varying subtle behavior with how
    771   blanks and separators are treated when skipping words. (#6067) [@ajweeks]
    772 - InputText: Fixed a tricky edge case, ensuring value is always written back on the
    773   frame where IsItemDeactivated() returns true, in order to allow usage without user
    774   retaining underlying data. While we don't really want to encourage user not retaining
    775   underlying data, in the absence of a "late commit" behavior/flag we understand it may
    776   be desirable to take advantage of this trick. (#4714)
    777 - Drag, Sliders: Fixed parsing of text input when '+' or '#' format flags are used
    778   in the format string. (#6259) [@idbrii]
    779 - Nav: Made Ctrl+Tab/Ctrl+Shift+Tab windowing register ownership to held modifier so
    780   it doesn't interfere with other code when remapping those actions. (#4828, #3255, #5641)
    781 - Nav: Made PageUp/PageDown/Home/End navigation also scroll parent windows when
    782   necessary to make the target location fully visible (same as e.g. arrow keys).
    783 - ColorEdit: Fixed shading of S/V triangle in Hue Wheel mode. (#5200, #6254) [@jamesthomasgriffin]
    784 - TabBar: Tab-bars with ImGuiTabBarFlags_FittingPolicyScroll can be scrolled with
    785   horizontal mouse-wheel (or Shift + WheelY). (#2702)
    786 - Rendering: Using adaptive tessellation for RadioButton, ColorEdit preview circles,
    787   Windows Close and Collapse Buttons.
    788 - ButtonBehavior: Fixed an edge case where changing widget type/behavior while active
    789   and using same id could lead to an assert. (#6304)
    790 - Misc: Fixed ImVec2 operator[] violating aliasing rules causing issue with Intel C++
    791   compiler. (#6272) [@BayesBug]
    792 - IO: Input queue trickling adjustment for touch screens. (#2702, #4921)
    793   This fixes single-tapping to move simulated mouse and immediately click on a widget
    794   that is using the ImGuiButtonFlags_AllowItemOverlap policy.
    795   - This only works if the backend can distinguish TouchScreen vs Mouse.
    796     See 'Demo->Tools->Metrics->Inputs->Mouse Source' to verify.
    797   - Fixed tapping on BeginTabItem() on a touch-screen. (#2702)
    798   - Fixed tapping on CollapsingHeader() with a close button on a touch-screen.
    799   - Fixed tapping on TreeNode() using ImGuiTreeNodeFlags_AllowItemOverlap on a touch-screen.
    800   - Fixed tapping on Selectable() using ImGuiSelectableFlags_AllowItemOverlap on a touch-screen.
    801   - Fixed tapping on TableHeader() on a touch-screen.
    802 - IO: Added io.AddMouseSourceEvent() and ImGuiMouseSource enum. This is to allow backend to
    803   specify actual event source between Mouse/TouchScreen/Pen. (#2702, #2334, #2372, #3453, #5693)
    804 - IO: Fixed support for calling io.AddXXXX functions from inactive context (wrongly
    805   advertised as supported in 1.89.4). (#6199, #6256, #5856) [@cfillion]
    806 - Backends: OpenGL3: Fixed GL loader crash when GL_VERSION returns NULL. (#6154, #4445, #3530)
    807 - Backends: OpenGL3: Properly restoring "no shader program bound" if it was the case prior to
    808   running the rendering function. (#6267, #6220, #6224) [@BrunoLevy]
    809 - Backends: Win32: Added support for io.AddMouseSourceEvent() to discriminate Mouse/TouchScreen/Pen. (#2334, #2702)
    810 - Backends: SDL2/SDL3: Added support for io.AddMouseSourceEvent() to discriminate Mouse/TouchScreen.
    811   This is relying on SDL passing SDL_TOUCH_MOUSEID in the event's 'which' field. (#2334, #2702)
    812 - Backends: SDL2/SDL3: Avoid calling SDL_StartTextInput()/SDL_StopTextInput() as they actually
    813   block text input input and don't only pertain to IME. It's unclear exactly what their relation
    814   is to other IME function such as SDL_SetTextInputRect(). (#6306, #6071, #1953)
    815 - Backends: GLFW: Added support on Win32 only for io.AddMouseSourceEvent() to discriminate
    816   Mouse/TouchScreen/Pen. (#2334, #2702)
    817 - Backends: GLFW: Fixed key modifiers handling on secondary viewports. (#6248, #6034) [@aiekick]
    818 - Backends: Android: Added support for io.AddMouseSourceEvent() to discriminate Mouse/TouchScreen/Pen.
    819   (#6315) [@PathogenDavid]
    820 - Backends: OSX: Added support for io.AddMouseSourceEvent() to discriminate Mouse/Pen.
    821   (#6314) [@PathogenDavid]
    822 - Backends: WebGPU: Align buffers. Use WGSL shaders instead of SPIR-V. Add gamma uniform. (#6188) [@eliemichel]
    823 - Backends: WebGPU: Reorganized to store data in io.BackendRendererUserData like other backends.
    824 - Examples: Vulkan: Fixed validation errors with newer VulkanSDK by explicitly querying and enabling
    825   "VK_KHR_get_physical_device_properties2", "VK_KHR_portability_enumeration", and
    826   VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR. (#6109, #6172, #6101)
    827 - Examples: Windows: Added 'misc/debuggers/imgui.natstepfilter' file to all Visual Studio projects,
    828   now that VS 2022 17.6 Preview 2 support adding Debug Step Filter spec files into projects.
    829 - Examples: SDL3: Updated for latest WIP SDL3 branch. (#6243)
    830 - TestSuite: Added variety of new regression tests and improved/amended existing ones
    831   in imgui_test_engine/ repo. [@PathogenDavid, @ocornut]
    832 
    833 
    834 -----------------------------------------------------------------------
    835  VERSION 1.89.4 (Released 2023-03-14)
    836 -----------------------------------------------------------------------
    837 
    838 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.4
    839 
    840 Breaking Changes:
    841 
    842 - Renamed PushAllowKeyboardFocus()/PopAllowKeyboardFocus() to PushTabStop()/PopTabStop().
    843   Kept inline redirection functions (will obsolete).
    844 - Moved the optional "courtesy maths operators" implementation from imgui_internal.h in imgui.h.
    845   Even though we encourage using your own maths types and operators by setting up IM_VEC2_CLASS_EXTRA,
    846   it has been frequently requested by people to use our own. We had an opt-in define which was
    847   previously fulfilled by imgui_internal.h. It is now fulfilled by imgui.h. (#6164, #6137, #5966, #2832)
    848    OK:     #define IMGUI_DEFINE_MATH_OPERATORS / #include "imgui.h" / #include "imgui_internal.h"
    849    Error:  #include "imgui.h" / #define IMGUI_DEFINE_MATH_OPERATORS / #include "imgui_internal.h"
    850   Added a dedicated compile-time check message to help diagnose this.
    851 - Tooltips: Added 'bool' return value to BeginTooltip() for API consistency.
    852   Please only submit contents and call EndTooltip() if BeginTooltip() returns true.
    853   In reality the function will _currently_ always return true, but further changes down the
    854   line may change this, best to clarify API sooner. Updated demo code accordingly.
    855 - Commented out redirecting enums/functions names that were marked obsolete two years ago:
    856   - ImGuiSliderFlags_ClampOnInput        -> use ImGuiSliderFlags_AlwaysClamp
    857   - ImGuiInputTextFlags_AlwaysInsertMode -> use ImGuiInputTextFlags_AlwaysOverwrite
    858   - ImDrawList::AddBezierCurve()         -> use ImDrawList::AddBezierCubic()
    859   - ImDrawList::PathBezierCurveTo()      -> use ImDrawList::PathBezierCubicCurveTo()
    860 
    861 Other changes:
    862 
    863 - Nav: Tabbing now cycles through all items when ImGuiConfigFlags_NavEnableKeyboard is set.
    864   (#3092, #5759, #787)
    865   While this was generally desired and requested by many, note that its addition means
    866   that some types of UI may become more fastidious to use TAB key with, if the navigation
    867   cursor cycles through too many items. You can mark items items as not tab-spottable:
    868    - Public API: PushTabStop(false) / PopTabStop()
    869    - Internal: PushItemFlag(ImGuiItemFlags_NoTabStop, true);
    870    - Internal: Directly pass ImGuiItemFlags_NoTabStop to ItemAdd() for custom widgets.
    871 - Nav: Tabbing/Shift-Tabbing can more reliably be used to step out of an item that is not
    872   tab-stoppable. (#3092, #5759, #787)
    873 - Nav: Made Enter key submit the same type of Activation event as Space key,
    874   allowing to press buttons with Enter. (#5606)
    875   (Enter emulates a "prefer text input" activation vs.
    876    Space emulates a "prefer tweak" activation which is to closer to gamepad controls).
    877 - Nav: Fixed an issue with Gamepad navigation when the movement lead to a scroll and
    878   frame time > repeat rate. Triggering a new move request on the same frame as a move
    879   result lead to an incorrect calculation and loss of navigation id. (#6171)
    880 - Nav: Fixed SetItemDefaultFocus() from not scrolling when item is partially visible.
    881   (#2814, #2812) [@DomGries]
    882 - Tables: Fixed an issue where user's Y cursor movement within a hidden column would
    883   have side-effects.
    884 - IO: Lifted constraint to call io.AddEventXXX functions from current context. (#4921, #5856, #6199)
    885 - InputText: Fixed not being able to use CTRL+Tab while an InputText() using Tab
    886   for completion or text data is active (regression from 1.89).
    887 - Drag and Drop: Fixed handling of overlapping targets when smaller one is submitted
    888   before and can accept the same data type. (#6183).
    889 - Drag and Drop: Clear drag and drop state as soon as delivery is accepted in order to
    890   avoid interferences. (#5817, #6183) [@DimaKoltun]
    891 - Debug Tools: Added io.ConfigDebugBeginReturnValueOnce / io.ConfigDebugBeginReturnValueLoop
    892   options to simulate Begin/BeginChild returning false to facilitate debugging user behavior.
    893 - Demo: Updated to test return value of BeginTooltip().
    894 - Backends: OpenGL3: Fixed restoration of a potentially deleted OpenGL program. If an active
    895   program was pending deletion, attempting to restore it would error. (#6220, #6224) [@Cyphall]
    896 - Backends: Win32: Use WM_NCMOUSEMOVE / WM_NCMOUSELEAVE to track mouse positions over
    897   non-client area (e.g. OS decorations) when app is not focused. (#6045, #6162)
    898 - Backends: SDL2, SDL3: Accept SDL_GetPerformanceCounter() not returning a monotonically
    899   increasing value. (#6189, #6114, #3644) [@adamkewley]
    900 - Backends: GLFW: Avoid using glfwGetError() and glfwGetGamepadState() on Emscripten, which
    901   recently updated its GLFW emulation layer to GLFW 3.3 without supporting those. (#6240)
    902 - Examples: Android: Fixed example build for Gradle 8. (#6229, #6227) [@duddel]
    903 - Examples: Updated all examples application to enable ImGuiConfigFlags_NavEnableKeyboard
    904   and ImGuiConfigFlags_NavEnableGamepad by default. (#787)
    905 - Internals: Misc tweaks to facilitate applying an explicit-context patch. (#5856) [@Dragnalith]
    906 
    907 
    908 -----------------------------------------------------------------------
    909  VERSION 1.89.3 (Released 2023-02-14)
    910 -----------------------------------------------------------------------
    911 
    912 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.3
    913 
    914 Breaking Changes:
    915 
    916 - Backends+Examples: SDL2: renamed all unnumbered references to "sdl" to "sdl2".
    917   This is in prevision for the future release of SDL3 and its associated backend. (#6146)
    918   - imgui_impl_sdl.cpp -> imgui_impl_sdl2.cpp
    919   - imgui_impl_sdl.h   -> imgui_impl_sdl2.h
    920   - example_sdl_xxxx/  -> example_sdl2_xxxx/ (folders and projects)
    921 
    922 Other changes:
    923 
    924 - SeparatorText(): Added SeparatorText() widget. (#1643) [@phed, @ocornut]
    925   - Added to style: float  SeparatorTextBorderSize.
    926   - Added to style: ImVec2 SeparatorTextAlign, SeparatorTextPadding.
    927 - Tables: Raised max Columns count from 64 to 512. (#6094, #5305, #4876, #3572)
    928   The previous limit was due to using 64-bit integers but we moved to bits-array
    929   and tweaked the system enough to ensure no performance loss.
    930 - Tables: Solved an ID conflict issue with multiple-instances of a same table,
    931   due to how unique table instance id was generated. (#6140) [@ocornut, @rodrigorc]
    932 - Inputs, Scrolling: Made horizontal scroll wheel and horizontal scroll direction consistent
    933   across backends/os. (#4019, #6096, #1463) [@PathogenDavid, @ocornut, @rokups]
    934   - Clarified that 'wheel_y > 0.0f' scrolls Up, 'wheel_y > 0.0f' scrolls Down.
    935     Clarified that 'wheel_x > 0.0f' scrolls Left, 'wheel_x > 0.0f' scrolls Right.
    936   - Backends: Fixed horizontal scroll direction for Win32 and SDL backends. (#4019)
    937   - Shift+WheelY support on non-OSX machines was already correct. (#2424, #1463)
    938     (whereas on OSX machines Shift+WheelY turns into WheelX at the OS level).
    939   - If you use a custom backend, you should verify horizontal wheel direction.
    940     - Axises are flipped by OSX for mouse & touch-pad when 'Natural Scrolling' is on.
    941     - Axises are flipped by Windows for touch-pad when 'Settings->Touchpad->Down motion scrolls up' is on.
    942     - You can use 'Demo->Tools->Debug Log->IO" to visualize values submitted to Dear ImGui.
    943   - Known issues remaining with Emscripten:
    944     - The magnitude of wheeling values on Emscripten was improved but isn't perfect. (#6096)
    945     - When running the Emscripten app on a Mac with a mouse, SHIFT+WheelY doesn't turn into WheelX.
    946       This is because we don't know that we are running on Mac and apply our own Shift+swapping
    947       on top of OSX' own swapping, so wheel axises are swapped twice. Emscripten apps may need
    948       to find a way to detect this and set io.ConfigMacOSXBehaviors manually (if you know a way
    949       let us know!), or offer the "OSX-style behavior" option to their user.
    950 - Window: Avoid rendering shapes for hidden resize grips.
    951 - Text: Fixed layouting of wrapped-text block skipping successive empty lines,
    952   regression from the fix in 1.89.2. (#5720, #5919)
    953 - Text: Fixed clipping of single-character "..." ellipsis (U+2026 or U+0085) when font
    954   is scaled. Scaling wasn't taken into account, leading to ellipsis character straying
    955   slightly out of its expected boundaries. (#2775)
    956 - Text: Tweaked rendering of three-dots "..." ellipsis variant. (#2775, #4269)
    957 - InputText: Added support for Ctrl+Delete to delete up to end-of-word. (#6067) [@ajweeks]
    958   (Not adding Super+Delete to delete to up to end-of-line on OSX, as OSX doesn't have it)
    959 - InputText: On OSX, inhibit usage of Alt key to toggle menu when active (used for work skip).
    960 - Menus: Fixed layout of MenuItem()/BeginMenu() when label contains a '\n'. (#6116) [@imkcy9]
    961 - ColorEdit, ColorPicker: Fixed hue/saturation preservation logic from interfering with
    962   the displayed value (but not stored value) of others widgets instances. (#6155)
    963 - PlotHistogram, PlotLines: Passing negative sizes honor alignment like other widgets.
    964 - Combo: Allow SetNextWindowSize() to alter combo popup size. (#6130)
    965 - Fonts: Assert that in each GlyphRanges[] pairs first is <= second.
    966 - ImDrawList: Added missing early-out in AddPolyline() and AddConvexPolyFilled() when
    967   color alpha is zero.
    968 - Misc: Most text functions treat "%s" as a shortcut to no-formatting. (#3466)
    969 - Misc: Tolerate zero delta-time under Emscripten as backends are imprecise in their
    970   values for io.DeltaTime, and browser features such as "privacy.resistFingerprinting=true"
    971   can exacerbate that. (#6114, #3644)
    972 - Backends: OSX: Fixed scroll/wheel scaling for devices emitting events with
    973   hasPreciseScrollingDeltas==false (e.g. non-Apple mices).
    974 - Backends: Win32: flipping WM_MOUSEHWHEEL horizontal value to match other backends and
    975   offer consistent horizontal scrolling direction. (#4019)
    976 - Backends: SDL2: flipping SDL_MOUSEWHEEL horizontal value to match other backends and
    977   offer consistent horizontal scrolling direction. (#4019)
    978 - Backends: SDL2: Removed SDL_MOUSEWHEEL value clamping. (#4019, #6096, #6081)
    979 - Backends: SDL2: Added support for SDL 2.0.18+ preciseX/preciseY mouse wheel data
    980   for smooth scrolling as reported by SDL. (#4019, #6096)
    981 - Backends: SDL2: Avoid calling SDL_SetCursor() when cursor has not changed, as the function
    982   is surprisingly costly on Mac with latest SDL (already fixed in SDL latest trunk). (#6113)
    983 - Backends: SDL2: Implement IME handler to call SDL_SetTextInputRect()/SDL_StartTextInput().
    984   It will only works with SDL 2.0.18+ if your code calls 'SDL_SetHint(SDL_HINT_IME_SHOW_UI, "1")'
    985   prior to calling SDL_CreateWindow(). Updated all examples accordingly. (#6071, #1953)
    986 - Backends: SDL3: Added experimental imgui_impl_sdl3.cpp backend. (#6146) [@dovker, @ocornut]
    987   SDL 3.0.0 has not yet been released, so it is possible that its specs/api will change before
    988   release. This backend is provided as a convenience for early adopters etc. We don't recommend
    989   switching to SDL3 before it is released.
    990 - Backends: GLFW: Registering custom low-level mouse wheel handler to get more accurate
    991   scrolling impulses on Emscripten. (#4019, #6096) [@ocornut, @wolfpld, @tolopolarity]
    992 - Backends: GLFW: Added ImGui_ImplGlfw_SetCallbacksChainForAllWindows() to instruct backend
    993   to chain callbacks even for secondary viewports/windows. User callbacks may need to test
    994   the 'window' parameter. (#6142)
    995 - Backends: OpenGL3: Fixed GL loader compatibility with 2.x profiles. (#6154, #4445, #3530) [@grauw]
    996 - Backends: WebGPU: Fixed building for latest WebGPU specs (remove implicit layout generation).
    997   (#6117, #4116, #3632) [@tonygrue, @bfierz]
    998 - Examples: refactored SDL2+GL and GLFW+GL examples to compile with Emscripten.
    999   (#2492, #2494, #3699, #3705) [@ocornut, @nicolasnoble]
   1000   The dedicated example_emscripten_opengl3/ has been removed.
   1001 - Examples: Added SDL3+GL experimental example. (#6146)
   1002 - Examples: Win32: Fixed examples using RegisterClassW() since 1.89 to also call
   1003   DefWindowProcW() instead of DefWindowProc() so that title text are correctly converted
   1004   when application is compiled without /DUNICODE. (#5725, #5961, #5975) [@markreidvfx]
   1005 - Examples: SDL2+SDL_Renderer: Added call to SDL_RenderSetScale() to fix display on a
   1006   Retina display (albeit lower-res as our other unmodified examples). (#6121, #6065, #5931).
   1007 
   1008 
   1009 -----------------------------------------------------------------------
   1010  VERSION 1.89.2 (Released 2023-01-05)
   1011 -----------------------------------------------------------------------
   1012 
   1013 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.2
   1014 
   1015 All changes:
   1016 
   1017 - Tables, Nav, Scrolling: fixed scrolling functions and focus tracking with frozen rows and
   1018   frozen columns. Windows now have a better understanding of outer/inner decoration sizes,
   1019   which should later lead us toward more flexible uses of menu/status bars. (#5143, #3692)
   1020 - Tables, Nav: frozen columns are not part of menu layer and can be crossed over. (#5143, #3692)
   1021 - Tables, Columns: fixed cases where empty columns may lead to empty ImDrawCmd. (#4857, #5937)
   1022 - Tables: fixed matching width of synchronized tables (multiple tables with same id) when only
   1023   some instances have a vertical scrollbar and not all. (#5920)
   1024 - Fixed cases where CTRL+Tab or Modal can occasionally lead to the creation of ImDrawCmd with
   1025   zero triangles, which would makes the render loop of some backends assert (e.g. Metal with
   1026   debugging, Allegro). (#4857, #5937)
   1027 - Inputs, IO: reworked ImGuiMod_Shortcut to redirect to Ctrl/Super at runtime instead of
   1028   compile-time, being consistent with our support for io.ConfigMacOSXBehaviors and making it
   1029   easier for bindings generators to process that value. (#5923, #456)
   1030 - Inputs, Scrolling: better selection of scrolling window when hovering nested windows
   1031   and when backend/OS is emitting dual-axis wheeling inputs (typically touch pads on macOS).
   1032   We now select a primary axis based on recent events, and select a target window based on it.
   1033   We expect this behavior to be further improved/tweaked. (#3795, #4559) [@ocornut, @folays]
   1034 - InputText: fixed cursor navigation when pressing Up Arrow on the last character of a
   1035   multiline buffer which doesn't end with a carriage return. (#6000)
   1036 - Text: fixed layouting of wrapped-text block when the last source line is above the
   1037   clipping region. Regression added in 1.89. (#5720, #5919)
   1038 - Misc: added GetItemID() in public API. It is not often expected that you would use this,
   1039   but it is useful for Shortcut() and upcoming owner-aware input functions which wants to
   1040   be implemented with public API.
   1041 - Fonts: imgui_freetype: fixed a packing issue which in some occurrences would prevent large
   1042   amount of glyphs from being packed correctly. (#5788, #5829)
   1043 - Fonts: added a 'void* UserData' field in ImFontAtlas, as a convenience for use by
   1044   applications using multiple font atlases.
   1045 - Demo: simplified "Inputs" section, moved contents to Metrics->Inputs.
   1046 - Debug Tools: Metrics: added "Inputs" section, moved from Demo for consistency.
   1047 - Misc: fixed parameters to IMGUI_DEBUG_LOG() not being dead-stripped when building
   1048   with IMGUI_DISABLE_DEBUG_TOOLS is used. (#5901) [@Teselka]
   1049 - Misc: fixed compile-time detection of SSE features on MSVC 32-bits builds. (#5943) [@TheMostDiligent]
   1050 - Examples: DirectX10, DirectX11: try WARP software driver if hardware driver is not available. (#5924, #5562)
   1051 - Backends: GLFW: Fixed mods state on Linux when using Alt-GR text input (e.g. German keyboard layout), which
   1052   could lead to broken text input. Revert a 2022/01/17 change were we resumed using mods provided by GLFW,
   1053   turns out they are faulty in this specific situation. (#6034)
   1054 - Backends: Allegro5: restoring using al_draw_indexed_prim() when Allegro version is >= 5.2.5. (#5937) [@Espyo]
   1055 - Backends: Vulkan: Fixed sampler passed to ImGui_ImplVulkan_AddTexture() not being honored as we were using
   1056   an immutable sampler. (#5502, #6001, #914) [@martin-ejdestig, @rytisss]
   1057 
   1058 
   1059 -----------------------------------------------------------------------
   1060  VERSION 1.89.1 (Released 2022-11-24)
   1061 -----------------------------------------------------------------------
   1062 
   1063 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.1
   1064 
   1065 Other changes:
   1066 
   1067 - Scrolling, Focus: fixed SetKeyboardFocusHere()/SetItemDefaultFocus() during a window-appearing
   1068   frame (and associated lower-level functions e.g. ScrollToRectEx()) from not centering item. (#5902)
   1069 - Inputs: fixed moving a window or drag and dropping from preventing input-owner-unaware code
   1070   from accessing keys. (#5888, #4921, #456)
   1071 - Inputs: fixed moving a window or drag and dropping from capturing mods. (#5888, #4921, #456)
   1072 - Layout: fixed End()/EndChild() incorrectly asserting if users manipulates cursor position
   1073   inside a collapsed/culled window and IMGUI_DISABLE_OBSOLETE_FUNCTIONS is enabled. (#5548, #5911)
   1074 - Combo: fixed selected item (marked with SetItemDefaultFocus()) from not being centered when
   1075   the combo window initially appears. (#5902).
   1076 - ColorEdit: fixed label overlapping when using style.ColorButtonPosition == ImGuiDir_Left to
   1077   move the color button on the left side (regression introduced in 1.88 WIP 2022/02/28). (#5912)
   1078 - Drag and Drop: fixed GetDragDropPayload() returning a non-NULL value if a drag source is
   1079   active but a payload hasn't been submitted yet. This is convenient to detect new payload
   1080   from within a drag source handler. (#5910, #143)
   1081 - Backends: GLFW: cancel out errors emitted by glfwGetKeyName() when a name is missing. (#5908)
   1082 - Backends: WebGPU: fixed validation error with default depth buffer settings. (#5869, #5914) [@kdchambers]
   1083 
   1084 
   1085 -----------------------------------------------------------------------
   1086  VERSION 1.89 (Released 2022-11-15)
   1087 -----------------------------------------------------------------------
   1088 
   1089 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89
   1090 
   1091 Breaking changes:
   1092 
   1093 - Layout: Obsoleted using SetCursorPos()/SetCursorScreenPos() to extend parent window/cell boundaries. (#5548)
   1094   This relates to when moving the cursor position beyond current boundaries WITHOUT submitting an item.
   1095   - Previously this would make the window content size ~200x200:
   1096       Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + End();
   1097   - Instead, please submit an item:
   1098       Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + Dummy(ImVec2(0,0)) + End();
   1099   - Alternative:
   1100       Begin(...) + Dummy(ImVec2(200,200)) + End();
   1101   Content size is now only extended when submitting an item.
   1102   With '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' this will now be detected and assert.
   1103   Without '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' this will silently be fixed until we obsolete it.
   1104   (This incorrect pattern has been mentioned or suggested in: #4510, #3355, #1760, #1490, #4152, #150,
   1105    threads have been amended to refer to this issue).
   1106 - Inputs: ImGuiKey is now a typed enum, allowing ImGuiKey_XXX symbols to be named in debuggers. (#4921)
   1107   This will require uses of legacy backend-dependent indices to be casted, e.g.
   1108    - with imgui_impl_glfw:  IsKeyPressed(GLFW_KEY_A) -> IsKeyPressed((ImGuiKey)GLFW_KEY_A);
   1109    - with imgui_impl_win32: IsKeyPressed('A')        -> IsKeyPressed((ImGuiKey)'A')
   1110    - etc. however if you are upgrading code you might as well use the backend-agnostic IsKeyPressed(ImGuiKey_A) now.
   1111 - Renamed and merged keyboard modifiers key enums and flags into a same set:  (#4921, #456)
   1112    - ImGuiKey_ModCtrl  and ImGuiModFlags_Ctrl  -> ImGuiMod_Ctrl
   1113    - ImGuiKey_ModShift and ImGuiModFlags_Shift -> ImGuiMod_Shift
   1114    - ImGuiKey_ModAlt   and ImGuiModFlags_Alt   -> ImGuiMod_Alt
   1115    - ImGuiKey_ModSuper and ImGuiModFlags_Super -> ImGuiMod_Super
   1116   Kept inline redirection enums (will obsolete).
   1117   This change simplifies a few things, reduces confusion, and will facilitate upcoming
   1118   shortcut/input ownership apis.
   1119   - The ImGuiKey_ModXXX were introduced in 1.87 and mostly used by backends.
   1120   - The ImGuiModFlags_XXX have been exposed in imgui.h but not really used by any public api,
   1121     only by third-party extensions. They were however subject to a recent rename
   1122     (ImGuiKeyModFlags_XXX -> ImGuiModFlags_XXX) and we are exceptionally commenting out
   1123     the older ImGuiKeyModFlags_XXX names ahead of obsolescence schedule to reduce confusion
   1124     and because they were not meant to be used anyway.
   1125 - Removed io.NavInputs[] and ImGuiNavInput enum that were used to feed gamepad inputs.
   1126   Basically 1.87 already obsoleted them from the backend's point of view, but internally
   1127   our navigation code still used this array and enum, so they were still present.
   1128   Not anymore! (#4921, #4858, #787, #1599, #323)
   1129   Transition guide:
   1130    - Official backends from 1.87+                  -> no issue.
   1131    - Official backends from 1.60 to 1.86           -> will build and convert gamepad inputs, unless IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Need updating!
   1132    - Custom backends not writing to io.NavInputs[] -> no issue.
   1133    - Custom backends writing to io.NavInputs[]     -> will build and convert gamepad inputs, unless IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Need fixing!
   1134    - TL;DR: Backends should call io.AddKeyEvent()/io.AddKeyAnalogEvent() with ImGuiKey_GamepadXXX values instead of filling io.NavInput[].
   1135   The ImGuiNavInput enum was essentially 1.60's attempt to combine keyboard and gamepad inputs with named
   1136   semantic, but the additional indirection and copy added complexity and got in the way of other
   1137   incoming work. User's code (other than backends) should not be affected, unless you have custom
   1138   widgets intercepting navigation events via the named enums (in which case you can upgrade your code).
   1139 - DragInt()/SliderInt(): Removed runtime patching of invalid "%f"/"%.0f" types of format strings.
   1140   This was obsoleted in 1.61 (May 2018). See 1.61 changelog for details.
   1141 - Changed signature of ImageButton() function: (#5533, #4471, #2464, #1390)
   1142   - Added 'const char* str_id' parameter + removed 'int frame_padding = -1' parameter.
   1143   - Old signature: bool ImageButton(ImTextureID tex_id, ImVec2 size, ImVec2 uv0 = ImVec2(0,0), ImVec2 uv1 = ImVec2(1,1), int frame_padding = -1, ImVec4 bg_col = ImVec4(0,0,0,0), ImVec4 tint_col = ImVec4(1,1,1,1));
   1144     - used the ImTextureID value to create an ID. This was inconsistent with other functions, led to ID conflicts, and caused problems with engines using transient ImTextureID values.
   1145     - had a FramePadding override which was inconsistent with other functions and made the already-long signature even longer.
   1146   - New signature: bool ImageButton(const char* str_id, ImTextureID tex_id, ImVec2 size, ImVec2 uv0 = ImVec2(0,0), ImVec2 uv1 = ImVec2(1,1), ImVec4 bg_col = ImVec4(0,0,0,0), ImVec4 tint_col = ImVec4(1,1,1,1));
   1147     - requires an explicit identifier. You may still use e.g. PushID() calls and then pass an empty identifier.
   1148     - always uses style.FramePadding for padding, to be consistent with other buttons. You may use PushStyleVar() to alter this.
   1149   - As always we are keeping a redirection function available (will obsolete later).
   1150 - Removed the bizarre legacy default argument for 'TreePush(const void* ptr = NULL)'. (#1057)
   1151   Must always pass a pointer value explicitly, NULL/nullptr is ok but require cast, e.g. TreePush((void*)nullptr);
   1152   If you used TreePush() replace with TreePush((void*)NULL);
   1153 - Removed support for 1.42-era IMGUI_DISABLE_INCLUDE_IMCONFIG_H / IMGUI_INCLUDE_IMCONFIG_H. (#255)
   1154   They only made sense before we could use IMGUI_USER_CONFIG.
   1155 
   1156 Other Changes:
   1157 
   1158 - Popups & Modals: fixed nested Begin() inside a popup being erroneously input-inhibited.
   1159   While it is unusual, you can nest a Begin() inside a popup or modal, it is occasionally
   1160   useful to achieve certain things (e.g. to implement suggestion popups #718, #4461).
   1161 - Inputs: Standard widgets now claim for key/button ownership and test for them.
   1162   - Fixes scenario where e.g. a Popup with a Selectable() reacting on mouse down
   1163     (e.g. double click) closes, and behind it is another window with an item reacting
   1164     on mouse up. Previously this would lead to both items reacting, now the item in the
   1165     window behind won't react on the mouse up since the mouse button ownership has already
   1166     been claimed earlier.
   1167   - Internals: There are MANY more aspects to this changes. Added experimental/internal APIs
   1168     to allow handling input/shorting routing and key ownership. Things will be moved into
   1169     public APIs over time. For now this release is a way to test the solidity of underlying
   1170     systems while letting early adopters adopters toy with internals.
   1171     (#456, #2637, #2620, #2891, #3370, #3724, #4828, #5108, #5242, #5641)
   1172 - Scrolling: Tweak mouse-wheel locked window timer so it is shorter but also gets reset
   1173   whenever scrolling again. Modulate for small (sub-pixel) amounts. (#2604)
   1174 - Scrolling: Mitigated issue where multi-axis mouse-wheel inputs (usually from touch pad
   1175   events) are incorrectly locking scrolling in a parent window. (#4559, #3795, #2604)
   1176 - Scrolling: Exposed SetNextWindowScroll() in public API. Useful to remove a scrolling
   1177   delay in some situations where e.g. windows need to be synched. (#1526)
   1178 - InputText: added experimental io.ConfigInputTextEnterKeepActive feature to make pressing
   1179   Enter keep the input active and select all text.
   1180 - InputText: numerical fields automatically accept full-width characters (U+FF01..U+FF5E)
   1181   by converting them to half-width (U+0021..U+007E).
   1182 - InputText: added ImGuiInputTextFlags_EscapeClearsAll flag: first press on Escape clears
   1183   text if any, second press deactivate the InputText(). (#5688, #2620)
   1184 - InputText: added support for shift+click style selection. (#5619) [@procedural]
   1185 - InputText: clarified that callbacks cannot modify buffer when using the ReadOnly flag.
   1186 - InputText: fixed minor one-frame selection glitch when reverting with Escape.
   1187 - ColorEdit3: fixed id collision leading to an assertion. (#5707)
   1188 - IsItemHovered: Added ImGuiHoveredFlags_DelayNormal and ImGuiHoveredFlags_DelayShort flags,
   1189   allowing to introduce a shared delay for tooltip idioms. The delays are respectively
   1190   io.HoverDelayNormal (default to 0.30f) and io.HoverDelayShort (default to 0.10f). (#1485)
   1191 - IsItemHovered: Added ImGuiHoveredFlags_NoSharedDelay to disable sharing delays between items,
   1192   so moving from one item to a nearby one will requires delay to elapse again. (#1485)
   1193 - Tables: activating an ID (e.g. clicking button inside) column doesn't prevent columns
   1194   output flags from having ImGuiTableColumnFlags_IsHovered set. (#2957)
   1195 - Tables,Columns: fixed a layout issue where SameLine() prior to a row change would set the
   1196   next row in such state where subsequent SameLine() would move back to previous row.
   1197 - Tabs: Fixed a crash when closing multiple windows (possible with docking only) with an
   1198   appended TabItemButton(). (#5515, #3291) [@rokups]
   1199 - Tabs: Fixed shrinking policy leading to infinite loops when fed unrounded tab widths. (#5652)
   1200 - Tabs: Fixed shrinking policy sometimes erroneously making right-most tabs stray a little out
   1201   bar boundaries (bug in 1.88). (#5652).
   1202 - Tabs: Enforcing minimum size of 1.0f, fixed asserting on zero-tab widths. (#5572)
   1203 - Window: Fixed a potential crash when appending to a child window. (#5515, #3496, #4797) [@rokups]
   1204 - Window: Fixed an issue where uncollapsed a window would show a scrollbar for a frame.
   1205 - Window: Auto-fit size takes account of work rectangle (menu bars eating from viewport). (#5843)
   1206 - Window: Fixed position not being clamped while auto-resizing (fixes appearing windows without
   1207   .ini data from moving for a frame when using io.ConfigWindowsMoveFromTitleBarOnly). (#5843)
   1208 - IO: Added ImGuiMod_Shortcut which is ImGuiMod_Super on Mac and ImGuiMod_Ctrl otherwise. (#456)
   1209 - IO: Added ImGuiKey_MouseXXX aliases for mouse buttons/wheel so all operations done on ImGuiKey
   1210   can apply to mouse data as well. (#4921)
   1211 - IO: Filter duplicate input events during the AddXXX() calls. (#5599, #4921)
   1212 - IO: Fixed AddFocusEvent(false) to also clear MouseDown[] state. (#4921)
   1213 - Menus: Fixed incorrect sub-menu parent association when opening a menu by closing another.
   1214   Among other things, it would accidentally break part of the closing heuristic logic when moving
   1215   towards a sub-menu. (#2517, #5614). [@rokups]
   1216 - Menus: Fixed gaps in closing logic which would make child-menu erroneously close when crossing
   1217   the gap between a menu item inside a window and a child-menu in a secondary viewport. (#5614)
   1218 - Menus: Fixed using IsItemHovered()/IsItemClicked() on BeginMenu(). (#5775)
   1219 - Menus, Popups: Experimental fix for issue where clicking on an open BeginMenu() item called from
   1220   a window which is neither a popup neither a menu used to incorrectly close and reopen the menu
   1221   (the fix may have side-effect and is labelld as experimental as we may need to revert). (#5775)
   1222 - Menus, Nav: Fixed keyboard/gamepad navigation occasionally erroneously landing on menu-item
   1223   in parent window when the parent is not a popup. (#5730)
   1224 - Menus, Nav: Fixed not being able to close a menu with Left arrow when parent is not a popup. (#5730)
   1225 - Menus, Nav: Fixed using left/right navigation when appending to an existing menu (multiple
   1226   BeginMenu() call with same names). (#1207)
   1227 - Menus: Fixed a one-frame issue where SetNextWindowXXX data are not consumed by a BeginMenu()
   1228   returning false.
   1229 - Nav: Fixed moving/resizing window with gamepad or keyboard when running at very high framerate.
   1230 - Nav: Pressing Space/GamepadFaceDown on a repeating button uses the same repeating rate as a mouse hold.
   1231 - Nav: Fixed an issue opening a menu with Right key from a non-menu window.
   1232 - Text: Fixed wrapped-text not doing a fast-forward on lines above the clipping region,
   1233   which would result in an abnormal number of vertices created (was slower and more likely to
   1234   asserts with 16-bits ImDrawVtx). (#5720)
   1235 - Fonts: Added GetGlyphRangesGreek() helper for Greek & Coptic glyph range. (#5676, #5727) [@azonenberg]
   1236 - ImDrawList: Not using alloca() anymore, lift single polygon size limits. (#5704, #1811)
   1237   - Note: now using a temporary buffer stored in ImDrawListSharedData.
   1238     This change made it more visible than you cannot append to multiple ImDrawList from multiple
   1239     threads if they share the same ImDrawListSharedData. Previously it was a little more likely
   1240     for this to "accidentally" work, but was already incorrect. (#6167)
   1241 - Platform IME: [Windows] Removed call to ImmAssociateContextEx() leading to freeze on some setups.
   1242   (#2589, #5535, #5264, #4972)
   1243 - Misc: better error reporting for PopStyleColor()/PopStyleVar() + easier to recover. (#1651)
   1244 - Misc: io.Framerate moving average now converge in 60 frames instead of 120. (#5236, #4138)
   1245 - Debug Tools: Debug Log: Visually locate items when hovering a 0xXXXXXXXX value. (#5855)
   1246 - Debug Tools: Debug Log: Added 'IO' and 'Clipper' events logging. (#5855)
   1247 - Debug Tools: Metrics: Visually locate items when hovering a 0xXXXXXXXX value (in most places).
   1248 - Debug Tools: Item Picker: Mouse button can be changed by holding Ctrl+Shift, making it easier
   1249   to use the Item Picker in e.g. menus. (#2673)
   1250 - Docs: Fixed various typos in comments and documentations. (#5649, #5675, #5679) [@tocic, @lessigsx]
   1251 - Demo: Improved "Constrained-resizing window" example, more clearly showcase aspect-ratio. (#5627)
   1252 - Demo: Added more explicit "Center window" mode to "Overlay example". (#5618)
   1253 - Demo: Fixed Log & Console from losing scrolling position with Auto-Scroll when child is clipped. (#5721)
   1254 - Examples: Added all SDL examples to default VS solution.
   1255 - Examples: Win32: Always use RegisterClassW() to ensure windows are Unicode. (#5725)
   1256 - Examples: Android: Enable .ini file loading/saving into application internal data folder. (#5836) [@rewtio]
   1257 - Backends: GLFW: Honor GLFW_CURSOR_DISABLED by not setting mouse position. (#5625) [@scorpion-26]
   1258 - Backends: GLFW: Add glfwGetError() call on GLFW 3.3 to inhibit missing mouse cursor errors. (#5785) [@mitchellh]
   1259 - Backends: SDL: Disable SDL 2.0.22 new "auto capture" which prevents drag and drop across windows
   1260   (e.g. for multi-viewport support) and don't capture mouse when drag and dropping. (#5710)
   1261 - Backends: Win32: Convert WM_CHAR values with MultiByteToWideChar() when window class was
   1262   registered as MBCS (not Unicode). (#5725, #1807, #471, #2815, #1060) [@or75, @ocornut]
   1263 - Backends: OSX: Fixed mouse inputs on flipped views. (#5756) [@Nemirtingas]
   1264 - Backends: OSX: Fixed mouse coordinate before clicking on the host window. (#5842) [@maezawa-akira]
   1265 - Backends: OSX: Fixes to support full app creation in C++. (#5403) [@stack]
   1266 - Backends: OpenGL3: Reverted use of glBufferSubData(), too many corruptions issues were reported,
   1267   and old leaks issues seemingly can't be reproed with Intel drivers nowadays (revert earlier changes).
   1268   (#4468, #4504, #3381, #2981, #4825, #4832, #5127).
   1269 - Backends: Metal: Use __bridge for ARC based systems. (#5403) [@stack]
   1270 - Backends: Metal: Add dispatch synchronization. (#5447) [@luigifcruz]
   1271 - Backends: Metal: Update deprecated property 'sampleCount'->'rasterSampleCount'. (#5603) [@dcvz]
   1272 - Backends: Vulkan: Added experimental ImGui_ImplVulkan_RemoveTexture() for api symetry. (#914, #5738).
   1273 - Backends: WebGPU: fixed rendering when a depth buffer is enabled. (#5869) [@brainlag]
   1274 
   1275 
   1276 -----------------------------------------------------------------------
   1277  VERSION 1.88 (Released 2022-06-21)
   1278 -----------------------------------------------------------------------
   1279 
   1280 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.88
   1281 
   1282 Breaking changes:
   1283 
   1284 - Renamed IMGUI_DISABLE_METRICS_WINDOW to IMGUI_DISABLE_DEBUG_TOOLS for correctness.
   1285   Kept support for old define (will obsolete).
   1286 - Renamed CaptureMouseFromApp() and CaptureKeyboardFromApp() to SetNextFrameWantCaptureMouse()
   1287   and SetNextFrameWantCaptureKeyboard() to clarify purpose, old name was too misleading.
   1288   Kept inline redirection functions (will obsolete).
   1289 - Renamed ImGuiKeyModFlags to ImGuiModFlags. Kept inline redirection enums (will obsolete).
   1290   (This was never used in public API functions but technically present in imgui.h and ImGuiIO).
   1291 - Backends: OSX: Removed ImGui_ImplOSX_HandleEvent() from backend API in favor of backend
   1292   automatically handling event capture. Examples that are using the OSX backend have removed
   1293   all the now-unnecessary calls to ImGui_ImplOSX_HandleEvent(), applications can do as well.
   1294   [@stuartcarnie] (#4821)
   1295 - Internals: calling ButtonBehavior() without calling ItemAdd() now requires a KeepAliveID()
   1296   call. This is because the KeepAliveID() call was moved from GetID() to ItemAdd(). (#5181)
   1297 
   1298 Other Changes:
   1299 
   1300 - IO: Fixed backward-compatibility regression introduced in 1.87: (#4921, #4858)
   1301   - Direct accesses to io.KeysDown[] with legacy indices didn't work (with new backends).
   1302   - Direct accesses to io.KeysDown[GetKeyIndex(XXX)] would access invalid data (with old/new backends).
   1303   - Calling IsKeyDown() didn't have those problems, and is recommended as io.KeysDown[] is obsolete.
   1304 - IO: Fixed input queue trickling of interleaved keys/chars events (which are frequent especially
   1305   when holding down a key as OS submits chars repeat events) delaying key presses and mouse movements.
   1306   In particular, using the input system for fast game-like actions (e.g. WASD camera move) would
   1307   typically have been impacted, as well as holding a key while dragging mouse. Constraints have
   1308   been lifted and are now only happening when e.g. an InputText() widget is active. (#4921, #4858)
   1309   Note that even thought you shouldn't need to disable io.ConfigInputTrickleEventQueue, you can
   1310   technically dynamically change its setting based on the context (e.g. disable only when hovering
   1311   or interacting with a game/3D view).
   1312 - IO: Fixed input queue trickling of mouse wheel events: multiple wheel events are merged, while
   1313   a mouse pos followed by a mouse wheel are now trickled. (#4921, #4821)
   1314 - IO: Added io.SetAppAcceptingEvents() to set a master flag for accepting key/mouse/characters
   1315   events (default to true). Useful if you have native dialog boxes that are interrupting your
   1316   application loop/refresh, and you want to disable events being queued while your app is frozen.
   1317 - Windows: Fixed first-time windows appearing in negative coordinates from being initialized
   1318   with a wrong size. This would most often be noticeable in multi-viewport mode (docking branch)
   1319   when spawning a window in a monitor with negative coordinates. (#5215, #3414) [@DimaKoltun]
   1320 - Clipper: Fixed a regression in 1.86 when not calling clipper.End() and late destructing the
   1321   clipper instance. High-level languages (Lua,Rust etc.) would typically be affected. (#4822)
   1322 - Layout: Fixed mixing up SameLine() and SetCursorPos() together from creating situations where line
   1323   height would be emitted from the wrong location (e.g. 'ItemA+SameLine()+SetCursorPos()+ItemB' would
   1324   emit ItemA worth of height from the position of ItemB, which is not necessarily aligned with ItemA).
   1325 - Sliders: An initial click within the knob/grab doesn't shift its position. (#1946, #5328)
   1326 - Sliders, Drags: Fixed dragging when using hexadecimal display format string. (#5165, #3133)
   1327 - Sliders, Drags: Fixed manual input when using hexadecimal display format string. (#5165, #3133)
   1328 - InputScalar: Fixed manual input when using %03d style width in display format string. (#5165, #3133)
   1329 - InputScalar: Automatically allow hexadecimal input when format is %X (without extra flag).
   1330 - InputScalar: Automatically allow scientific input when format is float/double (without extra flag).
   1331 - Nav: Fixed nav movement in a scope with only one disabled item from focusing the disabled item. (#5189)
   1332 - Nav: Fixed issues with nav request being transferred to another window when calling SetKeyboardFocusHere()
   1333   and simultaneous changing window focus. (#4449)
   1334 - Nav: Changed SetKeyboardFocusHere() to not behave if a drag or window moving is in progress.
   1335 - Nav: Fixed inability to cancel nav in modal popups. (#5400) [@rokups]
   1336 - IsItemHovered(): added ImGuiHoveredFlags_NoNavOverride to disable the behavior where the
   1337   return value is overridden by focus when gamepad/keyboard navigation is active.
   1338 - InputText: Fixed pressing Tab emitting two tabs characters because of dual Keys/Chars events being
   1339   trickled with the new input queue (happened on some backends only). (#2467, #1336)
   1340 - InputText: Fixed a one-frame display glitch where pressing Escape to revert after a deletion
   1341   would lead to small garbage being displayed for one frame. Curiously a rather old bug! (#3008)
   1342 - InputText: Fixed an undo-state corruption issue when editing main buffer before reactivating item. (#4947)
   1343 - InputText: Fixed an undo-state corruption issue when editing in-flight buffer in user callback.
   1344   (#4947, #4949] [@JoshuaWebb]
   1345 - Tables: Fixed incorrect border height used for logic when resizing one of several synchronized
   1346   instance of a same table ID, when instances have a different height. (#3955).
   1347 - Tables: Fixed incorrect auto-fit of parent windows when using non-resizable weighted columns. (#5276)
   1348 - Tables: Fixed draw-call merging of last column. Depending on some unrelated settings (e.g. BorderH)
   1349   merging draw-call of the last column didn't always work (regression since 1.87). (#4843, #4844) [@rokups]
   1350 - Inputs: Fixed IsMouseClicked() repeat mode rate being half of keyboard repeat rate.
   1351 - ColorEdit: Fixed text baseline alignment after a SameLine() after a ColorEdit() with visible label.
   1352 - Tabs: BeginTabItem() now reacts to SetNextItemWidth(). (#5262)
   1353 - Tabs: Tweak shrinking policy so that while resizing tabs that don't need shrinking keep their
   1354   initial width more precisely (without the occasional +1 worth of width).
   1355 - Menus: Adjusted BeginMenu() closing logic so hovering void or non-MenuItem() in parent window
   1356   always lead to menu closure. Fixes using items that are not MenuItem() or BeginItem() at the root
   1357   level of a popup with a child menu opened.
   1358 - Menus: Menus emitted from the main/scrolling layer are not part of the same menu-set as menus emitted
   1359   from the menu-bar, avoiding  accidental hovering from one to the other. (#3496, #4797) [@rokups]
   1360 - Style: Adjust default value of GrabMinSize from 10.0f to 12.0f.
   1361 - Stack Tool: Added option to copy item path to clipboard. (#4631)
   1362 - Settings: Fixed out-of-bounds read when .ini file on disk is empty. (#5351) [@quantum5]
   1363 - Settings: Fixed some SetNextWindowPos/SetNextWindowSize API calls not marking settings as dirty.
   1364 - DrawList: Fixed PathArcTo() emitting terminating vertices too close to arc vertices. (#4993) [@thedmd]
   1365 - DrawList: Fixed texture-based anti-aliasing path with RGBA textures (#5132, #3245) [@cfillion]
   1366 - DrawList: Fixed divide-by-zero or glitches with Radius/Rounding values close to zero. (#5249, #5293, #3491)
   1367 - DrawList: Circle with a radius smaller than 0.5f won't appear, to be consistent with other primitives. [@thedmd]
   1368 - Debug Tools: Debug Log: Added ShowDebugLogWindow() showing an opt-in synthetic log of principal events
   1369   (focus, popup, active id changes) helping to diagnose issues.
   1370 - Debug Tools: Added DebugTextEncoding() function to facilitate diagnosing issues when not sure about
   1371   whether you have a UTF-8 text encoding issue or a font loading issue. [@LaMarche05, @ocornut]
   1372 - Demo: Add better demo of how to use SetNextFrameWantCaptureMouse()/SetNextFrameWantCaptureKeyboard().
   1373 - Metrics: Added a "UTF-8 Encoding Viewer" section using the aforementioned DebugTextEncoding() function.
   1374 - Metrics: Added "InputText" section to visualize internal state (#4947, #4949).
   1375 - Misc: Fixed calling GetID("label") _before_ a widget emitting this item inside a group (such as InputInt())
   1376   from causing an assertion when closing the group. (#5181).
   1377 - Misc: Fixed IsAnyItemHovered() returning false when using navigation.
   1378 - Misc: Allow redefining IM_COL32_XXX layout macros to facilitate use on big-endian systems. (#5190, #767, #844)
   1379 - Misc: Added IMGUI_STB_SPRINTF_FILENAME to support custom path to stb_sprintf. (#5068, #2954) [@jakubtomsu]
   1380 - Misc: Added constexpr to ImVec2/ImVec4 inline constructors. (#4995) [@Myriachan]
   1381 - Misc: Updated stb_truetype.h from 1.20 to 1.26 (many fixes). (#5075)
   1382 - Misc: Updated stb_textedit.h from 1.13 to 1.14 (our changes so this effectively is a no-op). (#5075)
   1383 - Misc: Updated stb_rect_pack.h from 1.00 to 1.01 (minor). (#5075)
   1384 - Misc: binary_to_compressed_c tool: Added -nostatic option. (#5021) [@podsvirov]
   1385 - ImVector: Fixed erase() with empty range. (#5009) [@thedmd]
   1386 - Backends: Vulkan: Don't use VK_PRESENT_MODE_MAX_ENUM_KHR as specs state it isn't part of the API. (#5254)
   1387 - Backends: GLFW: Fixed a regression in 1.87 which resulted in keyboard modifiers events being
   1388   reported incorrectly on Linux/X11, due to a bug in GLFW. [@rokups]
   1389 - Backends: GLFW: Fixed untranslated keys when pressing lower case letters on OSX (#5260, #5261) [@cpichard]
   1390 - Backends: SDL: Fixed dragging out viewport broken on some SDL setups. (#5012) [@rokups]
   1391 - Backends: SDL: Added support for extra mouse buttons (SDL_BUTTON_X1/SDL_BUTTON_X2). (#5125) [@sgiurgiu]
   1392 - Backends: SDL, OpenGL3: Fixes to facilitate building on AmigaOS4. (#5190) [@afxgroup]
   1393 - Backends: OSX: Monitor NSKeyUp events to catch missing keyUp for key when user press Cmd + key (#5128) [@thedmd]
   1394 - Backends: OSX, Metal: Store backend data in a per-context struct, allowing to use these backends with
   1395   multiple contexts. (#5203, #5221, #4141) [@noisewuwei]
   1396 - Backends: Metal: Fixed null dereference on exit inside command buffer completion handler. (#5363, #5365) [@warrenm]
   1397 - Backends: OpenGL3: Partially revert 1.86 change of using glBufferSubData(): now only done on Windows and
   1398   Intel GPU, based on querying glGetString(GL_VENDOR). Essentially we got report of accumulating leaks on Intel
   1399   with multi-viewports when using simple glBufferData() without orphaning, and report of corruptions on other
   1400   GPUs with multi-viewports when using orphaning and glBufferSubData(), so currently switching technique based
   1401   on GPU vendor, which unfortunately reinforce the cargo-cult nature of dealing with OpenGL drivers.
   1402   Navigating the space of mysterious OpenGL drivers is particularly difficult as they are known to rely on
   1403   application specific whitelisting. (#4468, #3381, #2981, #4825, #4832, #5127).
   1404 - Backends: OpenGL3: Fix state corruption on OpenGL ES 2.0 due to not preserving GL_ELEMENT_ARRAY_BUFFER_BINDING
   1405   and vertex attribute states. [@rokups]
   1406 - Examples: Emscripten+WebGPU: Fix building for latest WebGPU specs. (#3632)
   1407 - Examples: OSX+Metal, OSX+OpenGL: Removed now-unnecessary calls to ImGui_ImplOSX_HandleEvent(). (#4821)
   1408 
   1409 
   1410 -----------------------------------------------------------------------
   1411  VERSION 1.87 (Released 2022-02-07)
   1412 -----------------------------------------------------------------------
   1413 
   1414 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.87
   1415 
   1416 Breaking Changes:
   1417 
   1418 - Removed support for pre-C++11 compilers. We'll stop supporting VS2010. (#4537)
   1419 - Reworked IO mouse input API: (#4921, #4858) [@thedmd, @ocornut]
   1420   - Added io.AddMousePosEvent(), io.AddMouseButtonEvent(), io.AddMouseWheelEvent() functions,
   1421     obsoleting writing directly to io.MousePos, io.MouseDown[], io.MouseWheel, etc.
   1422   - This enable input queue trickling to support low framerates. (#2787, #1992, #3383, #2525, #1320)
   1423   - For all calls to IO new functions, the Dear ImGui context should be bound/current.
   1424 - Reworked IO keyboard input API: (#4921, #2625, #3724) [@thedmd, @ocornut]
   1425   - Added io.AddKeyEvent() function, obsoleting writing directly to io.KeyMap[], io.KeysDown[] arrays.
   1426   - For keyboard modifiers, you can call io.AddKeyEvent() with ImGuiKey_ModXXX values,
   1427     obsoleting writing directly to io.KeyCtrl, io.KeyShift etc.
   1428   - Added io.SetKeyEventNativeData() function (optional) to pass native and old legacy indices.
   1429   - Added full range of key enums in ImGuiKey (e.g. ImGuiKey_F1).
   1430   - Added GetKeyName() helper function.
   1431   - Obsoleted GetKeyIndex(): it is now unnecessary and will now return the same value.
   1432   - All keyboard related functions taking 'int user_key_index' now take 'ImGuiKey key':
   1433     - IsKeyDown(), IsKeyPressed(), IsKeyReleased(), GetKeyPressedAmount().
   1434   - Added io.ConfigInputTrickleEventQueue (defaulting to true) to disable input queue trickling.
   1435   - Backward compatibility:
   1436     - All backends updated to use new functions.
   1437     - Old backends populating those arrays should still work!
   1438     - Calling e.g. IsKeyPressed(MY_NATIVE_KEY_XXX) will still work! (for a while)
   1439     - Those legacy arrays will only be disabled if '#define IMGUI_DISABLE_OBSOLETE_KEYIO' is set in your imconfig.
   1440       In a few versions, IMGUI_DISABLE_OBSOLETE_FUNCTIONS will automatically enable IMGUI_DISABLE_OBSOLETE_KEYIO,
   1441       so this will be moved into the regular obsolescence path.
   1442     - BREAKING: If your custom backend used ImGuiKey as mock native indices (e.g. "io.KeyMap[ImGuiKey_A] = ImGuiKey_A")
   1443       this is a use case that will now assert and be breaking for your old backend.
   1444   - Transition guide:
   1445      - IsKeyPressed(MY_NATIVE_KEY_XXX)           -> use IsKeyPressed(ImGuiKey_XXX)
   1446      - IsKeyPressed(GetKeyIndex(ImGuiKey_XXX))   -> use IsKeyPressed(ImGuiKey_XXX)
   1447      - Backend writing to io.KeyMap[],KeysDown[] -> backend should call io.AddKeyEvent(), if legacy indexing is desired, call io.SetKeyEventNativeData()
   1448      - Basically the trick we took advantage of is that we previously only supported native keycode from 0 to 511,
   1449        so ImGuiKey values can still express a legacy native keycode, and new named keys are all >= 512.
   1450   - This will enable a few things in the future:
   1451      - Access to portable keys allows for backend-agnostic keyboard input code. Until now it was difficult
   1452        to share code using keyboard across project because of this gap. (#2625, #3724)
   1453      - Access to full key ranges will allow us to develop a proper keyboard shortcut system. (#456)
   1454      - io.SetKeyEventNativeData() include native keycode/scancode which may later be exposed. (#3141, #2959)
   1455 - Reworked IO nav/gamepad input API and unifying inputs sources: (#4921, #4858, #787)
   1456   - Added full range of ImGuiKey_GamepadXXXX enums (e.g. ImGuiKey_GamepadDpadUp, ImGuiKey_GamepadR2) to use with
   1457     io.AddKeyEvent(), io.AddKeyAnalogEvent().
   1458   - Added io.AddKeyAnalogEvent() function, obsoleting writing directly to io.NavInputs[] arrays.
   1459 - Renamed ImGuiKey_KeyPadEnter to ImGuiKey_KeypadEnter to align with new symbols. Kept redirection enum. (#2625)
   1460 - Removed support for legacy arithmetic operators (+,+-,*,/) when inputing text into a slider/drag. (#4917, #3184)
   1461   This doesn't break any api/code but a feature that was accessible by end-users (which seemingly no one used).
   1462   (Instead you may implement custom expression evaluators to provide a better version of this).
   1463 - Backends: GLFW: backend now uses glfwSetCursorPosCallback().
   1464   - If calling ImGui_ImplGlfw_InitXXX with install_callbacks=true: nothing to do. is already done for you.
   1465   - If calling ImGui_ImplGlfw_InitXXX with install_callbacks=false: you WILL NEED to register the GLFW callback
   1466     using glfwSetCursorPosCallback() and forward it to the backend function ImGui_ImplGlfw_CursorPosCallback().
   1467 - Backends: SDL: Added SDL_Renderer* parameter to ImGui_ImplSDL2_InitForSDLRenderer(), so backend can call
   1468   SDL_GetRendererOutputSize() to obtain framebuffer size valid for hi-dpi. (#4927) [@Clownacy]
   1469 - Commented out redirecting functions/enums names that were marked obsolete in 1.69, 1.70, 1.71, 1.72 (March-July 2019)
   1470   - ImGui::SetNextTreeNodeOpen()        -> use ImGui::SetNextItemOpen()
   1471   - ImGui::GetContentRegionAvailWidth() -> use ImGui::GetContentRegionAvail().x
   1472   - ImGui::TreeAdvanceToLabelPos()      -> use ImGui::SetCursorPosX(ImGui::GetCursorPosX() + ImGui::GetTreeNodeToLabelSpacing());
   1473   - ImFontAtlas::CustomRect             -> use ImFontAtlasCustomRect
   1474   - ImGuiColorEditFlags_RGB/HSV/HEX     -> use ImGuiColorEditFlags_DisplayRGB/HSV/Hex
   1475 - Removed io.ImeSetInputScreenPosFn() in favor of more flexible io.SetPlatformImeDataFn() for IME support.
   1476   Because this field was mostly only ever used by Dear ImGui internally, not by backends nor the vast majority
   1477   of user code, this should only affect a very small fraction for users who are already very IME-aware.
   1478 - Obsoleted 'void* io.ImeWindowHandle' in favor of writing to 'void* ImGuiViewport::PlatformHandleRaw'.
   1479   This removes an incompatibility between 'master' and 'multi-viewports' backends and toward enabling
   1480   better support for IME. Updated backends accordingly. Because the old field is set by existing backends,
   1481   we are keeping it (marked as obsolete).
   1482 
   1483 Other Changes:
   1484 
   1485 - IO: Added event based input queue API, which now trickles events to support low framerates. [@thedmd, @ocornut]
   1486   Previously the most common issue case (button presses in low framerates) was handled by backend. This is now
   1487   handled by core automatically for all kind of inputs. (#4858, #2787, #1992, #3383, #2525, #1320)
   1488   - New IO functions for keyboard/gamepad: AddKeyEvent(), AddKeyAnalogEvent().
   1489   - New IO functions for mouse: AddMousePosEvent(), AddMouseButtonEvent(), AddMouseWheelEvent().
   1490 - IO: Unified key enums allow using key functions on key mods and gamepad values.
   1491 - Fixed CTRL+Tab into an empty window causing artifacts on the highlight rectangle due to bad reordering on ImDrawCmd.
   1492 - Fixed a situation where CTRL+Tab or Modal can occasionally lead to the creation of ImDrawCmd with zero triangles,
   1493   which would makes the draw operation of some backends assert (e.g. Metal with debugging). (#4857)
   1494 - Popups: Fixed a regression crash when a new window is created after a modal on the same frame. (#4920) [@rokups]
   1495 - Popups: Fixed an issue when reopening a same popup multiple times would offset them by 1 pixel on the right. (#4936)
   1496 - Tables, ImDrawListSplitter: Fixed erroneously stripping trailing ImDrawList::AddCallback() when submitted in
   1497   last column or last channel and when there are no other drawing operation. (#4843, #4844) [@hoffstadt]
   1498 - Tables: Fixed positioning of Sort icon on right-most column with some settings (not resizable + no borders). (#4918).
   1499 - Nav: Fixed gamepad navigation in wrapping popups not wrapping all the way. (#4365)
   1500 - Sliders, Drags: Fixed text input of values with a leading sign, common when using a format enforcing sign. (#4917)
   1501 - Demo: draw a section of keyboard in "Inputs > Keyboard, Gamepad & Navigation state" to visualize keys. [@thedmd]
   1502 - Platform IME: changed io.ImeSetInputScreenPosFn() to io.SetPlatformImeDataFn() API,
   1503   now taking a ImGuiPlatformImeData structure which we can more easily extend in the future.
   1504 - Platform IME: moved io.ImeWindowHandle to GetMainViewport()->PlatformHandleRaw.
   1505 - Platform IME: add ImGuiPlatformImeData::WantVisible, hide IME composition window when not used. (#2589) [@actboy168]
   1506 - Platform IME: add ImGuiPlatformImeData::InputLineHeight. (#3113) [@liuliu]
   1507 - Platform IME: [windows] call ImmSetCandidateWindow() to position candidate window.
   1508 - Backends: GLFW: Pass localized keys (matching keyboard layout). Fix e.g. CTRL+A, CTRL+Z, CTRL+Y shortcuts.
   1509   We are now converting GLFW untranslated keycodes back to translated keycodes in order to match the behavior of
   1510   other backend, and facilitate the use of GLFW with lettered-shortcuts API. (#456, #2625)
   1511 - Backends: GLFW: Submit keys and key mods using io.AddKeyEvent(). (#2625, #4921)
   1512 - Backends: GLFW: Submit mouse data using io.AddMousePosEvent(), io.AddMouseButtonEvent(), io.AddMouseWheelEvent() functions. (#4921)
   1513 - Backends: GLFW: Retrieve mouse position using glfwSetCursorPosCallback() + fallback when focused but not hovered/captured.
   1514 - Backends: GLFW: Submit gamepad data using io.AddKeyEvent/AddKeyAnalogEvent() functions, stopped writing to io.NavInputs[]. (#4921)
   1515 - Backends: GLFW: Added ImGui_ImplGlfw_InstallCallbacks()/ImGui_ImplGlfw_RestoreCallbacks() helpers to facilitate user installing
   1516   callbacks after iniitializing backend. (#4981)
   1517 - Backends: Win32: Submit keys and key mods using io.AddKeyEvent(). (#2625, #4921)
   1518 - Backends: Win32: Retrieve mouse position using WM_MOUSEMOVE/WM_MOUSELEAVE + fallback when focused but not hovered/captured.
   1519 - Backends: Win32: Submit mouse data using io.AddMousePosEvent(), AddMouseButtonEvent(), AddMouseWheelEvent() functions. (#4921)
   1520 - Backends: Win32: Maintain a MouseButtonsDown mask instead of using ImGui::IsAnyMouseDown() which will be obsoleted.
   1521 - Backends: Win32: Submit gamepad data using io.AddKeyEvent/AddKeyAnalogEvent() functions, stopped writing to io.NavInputs[]. (#4921)
   1522 - Backends: SDL: Pass localized keys (matching keyboard layout). Fix e.g. CTRL+A, CTRL+Z, CTRL+Y shortcuts. (#456, #2625)
   1523 - Backends: SDL: Submit key data using io.AddKeyEvent(). Submit keymods using io.AddKeyModsEvent() at the same time. (#2625)
   1524 - Backends: SDL: Retrieve mouse position using SDL_MOUSEMOTION/SDL_WINDOWEVENT_LEAVE + fallback when focused but not hovered/captured.
   1525 - Backends: SDL: Submit mouse data using io.AddMousePosEvent(), AddMouseButtonEvent(), AddMouseWheelEvent() functions. (#4921)
   1526 - Backends: SDL: Maintain a MouseButtonsDown mask instead of using ImGui::IsAnyMouseDown() which will be obsoleted.
   1527 - Backends: SDL: Submit gamepad data using io.AddKeyEvent/AddKeyAnalogEvent() functions, stopped writing to io.NavInputs[]. (#4921)
   1528 - Backends: Allegro5: Submit keys using io.AddKeyEvent(). Submit keymods using io.AddKeyModsEvent() at the same time. (#2625)
   1529 - Backends: Allegro5: Submit mouse data using io.AddMousePosEvent(), AddMouseButtonEvent(), AddMouseWheelEvent() functions. (#4921)
   1530 - Backends: OSX: Submit keys using io.AddKeyEvent(). Submit keymods using io.AddKeyModsEvent() at the same time. (#2625)
   1531 - Backends: OSX: Submit mouse data using io.AddMousePosEvent(), AddMouseButtonEvent(), AddMouseWheelEvent() functions. (#4921)
   1532 - Backends: OSX: Submit gamepad data using io.AddKeyEvent/AddKeyAnalogEvent() functions, stopped writing to io.NavInputs[]. (#4921)
   1533 - Backends: OSX: Added basic Platform IME support. (#3108, #2598) [@liuliu]
   1534 - Backends: OSX: Fix Game Controller nav mapping to use shoulder for both focusing and tweak speed. (#4759)
   1535 - Backends: OSX: Fix building with old Xcode versions that are missing gamepad features. [@rokups]
   1536 - Backends: OSX: Forward keyDown/keyUp events to OS when unused by Dear ImGui.
   1537 - Backends: Android, GLUT: Submit keys using io.AddKeyEvent(). Submit keymods using io.AddKeyModsEvent() at the same time. (#2625)
   1538 - Backends: Android, GLUT: Submit mouse data using io.AddMousePosEvent(), AddMouseButtonEvent(), AddMouseWheelEvent() functions. (#4858)
   1539 - Backends: OpenGL3: Fixed a buffer overflow in imgui_impl_opengl3_loader.h init (added in 1.86). (#4468, #4830) [@dymk]
   1540   It would generally not have noticeable side-effect at runtime but would be detected by runtime checkers.
   1541 - Backends: OpenGL3: Fix OpenGL ES2 includes on Apple systems. [@rokups]
   1542 - Backends: Metal: Added Apple Metal C++ API support. (#4824, #4746) [@luigifcruz]
   1543   Enable with '#define IMGUI_IMPL_METAL_CPP' in your imconfig.h file.
   1544 - Backends: Metal: Ignore ImDrawCmd where ElemCount == 0, which are normally not emitted by the library but
   1545   can theoretically be created by user code manipulating a ImDrawList. (#4857)
   1546 - Backends: Vulkan: Added support for ImTextureID as VkDescriptorSet, add ImGui_ImplVulkan_AddTexture(). (#914) [@martty]
   1547 - Backends: SDL_Renderer: Fix texture atlas format on big-endian hardware (#4927) [@Clownacy]
   1548 - Backends: WebGPU: Fixed incorrect size parameters in wgpuRenderPassEncoderSetIndexBuffer() and
   1549   wgpuRenderPassEncoderSetVertexBuffer() calls. (#4891) [@FeepsDev]
   1550 
   1551 
   1552 -----------------------------------------------------------------------
   1553  VERSION 1.86 (Released 2021-12-22)
   1554 -----------------------------------------------------------------------
   1555 
   1556 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.86
   1557 
   1558 Breaking Changes:
   1559 
   1560 - Removed CalcListClipping() function. Prefer using ImGuiListClipper which can return non-contiguous ranges.
   1561   Please open an issue if you think you really need this function. (#3841)
   1562 - Backends: OSX: Added NSView* parameter to ImGui_ImplOSX_Init(). (#4759) [@stuartcarnie]
   1563 - Backends: Marmalade: Removed obsolete Marmalade backend (imgui_impl_marmalade.cpp) + example app. (#368, #375)
   1564   Find last supported version at https://github.com/ocornut/imgui/wiki/Bindings
   1565 
   1566 Other Changes:
   1567 
   1568 - Added an assertion for the common user mistake of using "" as an identifier at the root level of a window
   1569   instead of using "##something". Empty identifiers are valid and useful in a very small amount of cases,
   1570   but 99.9% of the time if you need an empty label you should use "##something". (#1414, #2562, #2807, #4008,
   1571   #4158, #4375, #4548, #4657, #4796). READ THE FAQ ABOUT HOW THE ID STACK WORKS -> https://dearimgui.com/faq
   1572 - Added GetMouseClickedCount() function, returning the number of successive clicks. (#3229) [@kudaba]
   1573   (so IsMouseDoubleClicked(ImGuiMouseButton_Left) is same as GetMouseClickedCount(ImGuiMouseButton_Left) == 2,
   1574   but it allows testing for triple clicks and more).
   1575 - Modals: fixed issue hovering popups inside a child windows inside a modal. (#4676, #4527)
   1576 - Modals, Popups, Windows: changes how appearing windows are interrupting popups and modals. (#4317) [@rokups]
   1577   - appearing windows created from within the begin stack of a popup/modal will no longer close it.
   1578   - appearing windows created not within the begin stack of a modal will no longer close the modal,
   1579     and automatically appear behind it.
   1580 - Fixed IsWindowFocused()/IsWindowHovered() issues with child windows inside popups. (#4676)
   1581 - Nav: Ctrl+tabbing to cycle through windows is now enabled regardless of using the _NavEnableKeyboard
   1582   configuration flag. This is part of an effort to generalize the use of keyboard inputs. (#4023, #787).
   1583   Note that while this is active you can also moving windows (with arrow) and resize (shift+arrows).
   1584 - Nav: tabbing now cycles through clipped items and scroll accordingly. (#4449)
   1585 - Nav: pressing PageUp/PageDown/Home/End when in Menu layer automatically moves back to Main layer.
   1586 - Nav: fixed resizing window from borders setting navigation to Menu layer.
   1587 - Nav: prevent child from clipping items when using _NavFlattened and parent has a pending request.
   1588 - Nav: pressing Esc to exit a child window reactivates the Nav highlight if it was disabled by mouse.
   1589 - Nav: with ImGuiConfigFlags_NavEnableSetMousePos enabled: Fixed absolute mouse position when using
   1590   Home/End leads to scrolling. Fixed not setting mouse position when a failed move request (e.g. when
   1591   already at edge) reactivates the navigation highlight.
   1592 - Menus: fixed closing a menu inside a popup/modal by clicking on the popup/modal. (#3496, #4797)
   1593 - Menus: fixed closing a menu by clicking on its menu-bar item when inside a popup. (#3496, #4797) [@xndcn]
   1594 - Menus: fixed menu inside a popup/modal not inhibiting hovering of items in the popup/modal. (#3496, #4797)
   1595 - Menus: fixed sub-menu items inside a popups from closing the popup.
   1596 - Menus: fixed top-level menu from not consistently using style.PopupRounding. (#4788)
   1597 - InputText, Nav: fixed repeated calls to SetKeyboardFocusHere() preventing to use InputText(). (#4682)
   1598 - Inputtext, Nav: fixed using SetKeyboardFocusHere() on InputTextMultiline(). (#4761)
   1599 - InputText: made double-click select word, triple-line select line. Word delimitation logic differs
   1600   slightly from the one used by CTRL+arrows. (#2244)
   1601 - InputText: fixed ReadOnly flag preventing callbacks from receiving the text buffer. (#4762) [@actondev]
   1602 - InputText: fixed Shift+Delete from not cutting into clipboard. (#4818, #1541) [@corporateshark]
   1603 - InputTextMultiline: fixed incorrect padding when FrameBorder > 0. (#3781, #4794)
   1604 - InputTextMultiline: fixed vertical tracking with large values of FramePadding.y. (#3781, #4794)
   1605 - Separator: fixed cover all columns while called inside a table. (#4787)
   1606 - Clipper: currently focused item is automatically included in clipper range.
   1607   Fixes issue where e.g. drag and dropping an item and scrolling ensure the item source location is
   1608   still submitted. (#3841, #1725) [@GamingMinds-DanielC, @ocornut]
   1609 - Clipper: added ForceDisplayRangeByIndices() to force a given item (or several) to be stepped out
   1610   during a clipping operation. (#3841) [@GamingMinds-DanielC]
   1611 - Clipper: rework so gamepad/keyboard navigation doesn't create spikes in number of items requested
   1612   by the clipper to display. (#3841)
   1613 - Clipper: fixed content height declaration slightly mismatching the value of when not using a clipper.
   1614   (an additional ItemSpacing.y was declared, affecting scrollbar range).
   1615 - Clipper: various and incomplete changes to tame down scrolling and precision issues on very large ranges.
   1616   Passing an explicit height to the clipper now allows larger ranges. (#3609, #3962).
   1617 - Clipper: fixed invalid state when number of frozen table row is smaller than ItemCount.
   1618 - Drag and Drop: BeginDragDropSource() with ImGuiDragDropFlags_SourceAllowNullID doesn't lose
   1619   tooltip when scrolling. (#143)
   1620 - Fonts: fixed infinite loop in ImFontGlyphRangesBuilder::AddRanges() when passing UINT16_MAX or UINT32_MAX
   1621   without the IMGUI_USE_WCHAR32 compile-time option. (#4802) [@SlavicPotato]
   1622 - Metrics: Added a node showing windows in submission order and showing the Begin() stack.
   1623 - Misc: Added missing ImGuiMouseCursor_NotAllowed cursor for software rendering (when the
   1624   io.MouseDrawCursor flag is enabled). (#4713) [@nobody-special666]
   1625 - Misc: Fixed software mouse cursor being rendered multiple times if Render() is called more than once.
   1626 - Misc: Fix MinGW DLL build issue (when IMGUI_API is defined). [@rokups]
   1627 - CI: Add MinGW DLL build to test suite. [@rokups]
   1628 - Backends: Vulkan: Call vkCmdSetScissor() at the end of render with a full-viewport to reduce
   1629   likehood of issues with people using VK_DYNAMIC_STATE_SCISSOR in their app without calling
   1630   vkCmdSetScissor() explicitly every frame. (#4644)
   1631 - Backends: OpenGL3: Using buffer orphaning + glBufferSubData(), seems to fix leaks with multi-viewports
   1632   with some Intel HD drivers, and perhaps improve performances. (#4468, #4504, #2981, #3381) [@parbo]
   1633 - Backends: OpenGL2, Allegro5, Marmalade: Fixed mishandling of the ImDrawCmd::IdxOffset field.
   1634   This is an old bug, but due to the way we created drawlists, it never had any visible side-effect before.
   1635   The new code for handling Modal and CTRL+Tab dimming/whitening recently made the bug surface. (#4790)
   1636 - Backends: Win32: Store left/right variants of Ctrl/Shift/Alt mods in KeysDown[] array. (#2625) [@thedmd]
   1637 - Backends: DX12: Fixed DRAW_EMPTY_SCISSOR_RECTANGLE warnings. (#4775)
   1638 - Backends: SDL_Renderer: Added support for large meshes (64k+ vertices) with 16-bit indices,
   1639   enabling 'ImGuiBackendFlags_RendererHasVtxOffset' in the backend. (#3926) [@rokups]
   1640 - Backends: SDL_Renderer: Fix for SDL 2.0.19+ RenderGeometryRaw() API signature change. (#4819) [@sridenour]
   1641 - Backends: OSX: Generally fix keyboard support. Keyboard arrays indexed using kVK_* codes, e.g.
   1642   ImGui::IsKeyPressed(kVK_Space). Don't set mouse cursor shape unconditionally. Handle two fingers scroll
   1643   cancel event. (#4759, #4253, #1873) [@stuartcarnie]
   1644 - Backends: OSX: Add Game Controller support (need linking GameController framework) (#4759) [@stuartcarnie]
   1645 - Backends: WebGPU: Passing explicit buffer sizes to wgpuRenderPassEncoderSetVertexBuffer() and
   1646   wgpuRenderPassEncoderSetIndexBuffer() functions as validation layers appears to not do what the
   1647   in-flux specs says. (#4766) [@meshula]
   1648 
   1649 
   1650 -----------------------------------------------------------------------
   1651  VERSION 1.85 (Released 2021-10-12)
   1652 -----------------------------------------------------------------------
   1653 
   1654 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.85
   1655 
   1656 This is the last release officially supporting C++03 and Visual Studio 2008/2010. (#4537)
   1657 We expect that the next release will require a subset of the C++11 language (VS 2012~, GCC 4.8.1, Clang 3.3).
   1658 We may use some C++11 language features but we will not use any C++ library headers.
   1659 If you are stuck on ancient compiler you may need to stay at this version onward.
   1660 
   1661 Breaking Changes:
   1662 
   1663 - Removed GetWindowContentRegionWidth() function. Kept inline redirection helper.
   1664   Can use 'GetWindowContentRegionMax().x - GetWindowContentRegionMin().x' instead but it's not
   1665   very useful in practice, and the only use of it in the demo was illfit.
   1666   Using 'GetContentRegionAvail().x' is generally a better choice.
   1667 
   1668 Other Changes:
   1669 
   1670 - Debug: Stack Tool: Added "Stack Tool" available in "Demo->Tools->Stack Tool", "Metrics->Tools",
   1671   or by calling the ShowStackToolWindow() function. The tool run queries on hovered id to display
   1672   details about individual components that were hashed to create an ID. It helps understanding
   1673   the ID stack system and debugging potential ID collisions. (#4631) [@ocornut, @rokups]
   1674 - Windows: Fixed background order of overlapping childs submitted sequentially. (#4493)
   1675 - IsWindowFocused: Added ImGuiFocusedFlags_NoPopupHierarchy flag allowing to exclude child popups
   1676   from the tested windows when combined with _ChildWindows.
   1677 - IsWindowHovered: Added ImGuiHoveredFlags_NoPopupHierarchy flag allowing to exclude child popups
   1678   from the tested windows when combined with _ChildWindows.
   1679 - InputTextMultiline: Fixed label size not being included into window contents rect unless
   1680   the whole widget is clipped.
   1681 - InputText: Allow activating/cancelling/validating input with gamepad nav events. (#2321, #4552)
   1682 - InputText: Fixed selection rectangle appearing one frame late when selecting all.
   1683 - TextUnformatted: Accept null ranges including (NULL,NULL) without asserting, in order to conform
   1684   to common idioms (e.g. passing .data(), .data() + .size() from a null string). (#3615)
   1685 - Disabled: Added assert guard for mismatching BeginDisabled()/EndDisabled() blocks. (#211)
   1686 - Nav: Fixed using SetKeyboardFocusHere() on non-visible/clipped items. It now works and will scroll
   1687   toward the item. When called during a frame where the parent window is appearing, scrolling will
   1688   aim to center the item in the window. When calling during a frame where the parent window is already
   1689   visible, scrolling will aim to scroll as little as possible to make the item visible. We will later
   1690   expose scroll functions and flags in public API to select those behaviors. (#343, #4079, #2352)
   1691 - Nav: Fixed using SetKeyboardFocusHere() from activating a different item on the next frame if
   1692   submitted items have changed during that frame. (#432)
   1693 - Nav: Fixed toggling menu layer with Alt or exiting menu layer with Esc not moving mouse when
   1694   the ImGuiConfigFlags_NavEnableSetMousePos config flag is set.
   1695 - Nav: Fixed a few widgets from not setting reference keyboard/gamepad navigation ID when
   1696   activated with mouse. More specifically: BeginTabItem(), the scrolling arrows of BeginTabBar(),
   1697   the arrow section of TreeNode(), the +/- buttons of InputInt()/InputFloat(), Selectable() with
   1698   ImGuiSelectableFlags_SelectOnRelease. More generally: any direct use of ButtonBehavior() with
   1699   the PressedOnClick/PressedOnDoubleClick/PressedOnRelease button policy.
   1700 - Nav: Fixed an issue with losing focus on docked windows when pressing Alt while keyboard navigation
   1701   is disabled. (#4547, #4439) [@PathogenDavid]
   1702 - Nav: Fixed vertical scoring offset when wrapping on Y in a decorated window.
   1703 - Nav: Improve scrolling behavior when navigating to an item larger than view.
   1704 - TreePush(): removed unnecessary/inconsistent legacy behavior where passing a NULL value to
   1705   the TreePush(const char*) and TreePush(const void*) functions would use an hard-coded replacement.
   1706   The only situation where that change would make a meaningful difference is TreePush((const char*)NULL)
   1707   (_explicitly_ casting a null pointer to const char*), which is unlikely and will now crash.
   1708   You may replace it with anything else.
   1709 - ColorEdit4: Fixed not being able to change hue when saturation is 0. (#4014) [@rokups]
   1710 - ColorEdit4: Fixed hue resetting to 0 when it is set to 255. [@rokups]
   1711 - ColorEdit4: Fixed hue value jitter when source color is stored as RGB in 32-bit integer and perform
   1712   RGB<>HSV round trips every frames. [@rokups]
   1713 - ColorPicker4: Fixed picker being unable to select exact 1.0f color when dragging toward the edges
   1714   of the SV square (previously picked 0.999989986f). (#3517) [@rokups]
   1715 - Menus: Fixed vertical alignments of MenuItem() calls within a menu bar (broken in 1.84). (#4538)
   1716 - Menus: Improve closing logic when moving diagonally in empty between between parent and child menus to
   1717   accommodate for varying font size and dpi.
   1718 - Menus: Fixed crash when navigating left inside a child window inside a sub-menu. (#4510).
   1719 - Menus: Fixed an assertion happening in some situations when closing nested menus (broken in 1.83). (#4640)
   1720 - Drag and Drop: Fixed using BeginDragDropSource() inside a BeginChild() that returned false. (#4515)
   1721 - PlotHistogram: Fixed zero-line position when manually specifying min<0 and max>0. (#4349) [@filippocrocchini]
   1722 - Misc: Added asserts for missing PopItemFlag() calls.
   1723 - Misc: Fixed printf-style format checks on Clang+MinGW. (#4626, #4183, #3592) [@guusw]
   1724 - IO: Added 'io.WantCaptureMouseUnlessPopupClose' alternative to `io.WantCaptureMouse'. (#4480)
   1725   This allows apps to receive the click on void when that click is used to close popup (by default,
   1726   clicking on a void when a popup is open will close the popup but not release io.WantCaptureMouse).
   1727 - Fonts: imgui_freetype: Fixed crash when FT_Render_Glyph() fails to render a glyph and returns NULL
   1728   (which apparently happens with Freetype 2.11). (#4394, #4145?).
   1729 - Fonts: Fixed ImFontAtlas::ClearInputData() marking atlas as not built. (#4455, #3487)
   1730 - Backends: Added more implicit asserts to detect invalid/redundant calls to Shutdown functions. (#4562)
   1731 - Backends: OpenGL3: Fixed our custom GL loader conflicting with user using GL3W. (#4445) [@rokups]
   1732 - Backends: WebGPU: Fixed for latest specs. (#4472, #4512) [@Kangz, @bfierz]
   1733 - Backends: SDL_Renderer: Added SDL_Renderer backend compatible with upcoming SDL 2.0.18. (#3926) [@1bsyl]
   1734 - Backends: Metal: Fixed a crash when clipping rect larger than framebuffer is submitted via
   1735   a direct unclipped PushClipRect() call. (#4464)
   1736 - Backends: OSX: Use mach_absolute_time as CFAbsoluteTimeGetCurrent can jump backwards. (#4557, #4563) [@lfnoise]
   1737 - Backends: All renderers: Normalize clipping rect handling across backends. (#4464)
   1738 - Examples: Added SDL + SDL_Renderer example in "examples/example_sdl_sdlrenderer/" folder. (#3926) [@1bsyl]
   1739 
   1740 
   1741 -----------------------------------------------------------------------
   1742  VERSION 1.84.2 (Released 2021-08-23)
   1743 -----------------------------------------------------------------------
   1744 
   1745 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.84.2
   1746 
   1747 - Disabled: Fixed nested BeginDisabled()/EndDisabled() calls. (#211, #4452, #4453, #4462) [@Legulysse]
   1748 - Backends: OpenGL3: OpenGL: Fixed ES 3.0 shader ("#version 300 es") to use normal precision
   1749   floats. Avoid wobbly rendering at HD resolutions. (#4463) [@nicolasnoble]
   1750 
   1751 
   1752 -----------------------------------------------------------------------
   1753  VERSION 1.84.1 (Released 2021-08-20)
   1754 -----------------------------------------------------------------------
   1755 
   1756 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.84.1
   1757 
   1758 - Disabled: Fixed BeginDisabled(false) - BeginDisabled(true) was working. (#211, #4452, #4453)
   1759 
   1760 
   1761 -----------------------------------------------------------------------
   1762  VERSION 1.84 (Released 2021-08-20)
   1763 -----------------------------------------------------------------------
   1764 
   1765 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.84
   1766 
   1767 Breaking Changes:
   1768 
   1769 - Commented out redirecting functions/enums names that were marked obsolete in 1.67 and 1.69 (March 2019):
   1770   - ImGui::GetOverlayDrawList() -> use ImGui::GetForegroundDrawList()
   1771   - ImFont::GlyphRangesBuilder  -> use ImFontGlyphRangesBuilder
   1772 - Backends: OpenGL3: added a third source file "imgui_impl_opengl3_loader.h". (#4445) [@rokups]
   1773 - Backends: GLFW: backend now uses glfwSetCursorEnterCallback(). (#3751, #4377, #2445)
   1774 - Backends: GLFW: backend now uses glfwSetWindowFocusCallback(). (#4388) [@thedmd]
   1775   - If calling ImGui_ImplGlfw_InitXXX with install_callbacks=true: this is already done for you.
   1776   - If calling ImGui_ImplGlfw_InitXXX with install_callbacks=false: you WILL NEED to register the GLFW callbacks
   1777     and forward them to the backend:
   1778     - Register glfwSetCursorEnterCallback, forward events to ImGui_ImplGlfw_CursorEnterCallback().
   1779     - Register glfwSetWindowFocusCallback, forward events to ImGui_ImplGlfw_WindowFocusCallback().
   1780 - Backends: SDL2: removed unnecessary SDL_Window* parameter from ImGui_ImplSDL2_NewFrame(). (#3244) [@funchal]
   1781   Kept inline redirection function (will obsolete).
   1782 - Backends: SDL2: backend needs to set 'SDL_SetHint(SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH, "1")' in order to
   1783   receive mouse clicks events on window focus, otherwise SDL doesn't emit the event. (#3751, #4377, #2445)
   1784   This is unfortunately a global SDL setting, so enabling it _might_ have a side-effect on your application.
   1785   It is unlikely to make a difference, but if your app absolutely needs to ignore the initial on-focus click:
   1786   you can ignore SDL_MOUSEBUTTONDOWN events coming right after a SDL_WINDOWEVENT_FOCUS_GAINED event).
   1787 - Internals: (for custom widgets): because disabled items now sets HoveredId, if you want custom widgets to
   1788   not react as hovered when disabled, in the majority of use cases it is preferable to check the "hovered"
   1789   return value of ButtonBehavior() rather than (HoveredId == id).
   1790 
   1791 Other Changes:
   1792 
   1793 - IO: Added io.AddFocusEvent() api for backend to tell when host window has gained/lost focus. (#4388) [@thedmd]
   1794   If you use a custom backend, consider adding support for this!
   1795 - Disabled: added BeginDisabled()/EndDisabled() api to create a scope where interactions are disabled. (#211)
   1796   - Added style.DisabledAlpha (default to 0.60f) and ImGuiStyleVar_DisabledAlpha. (#211)
   1797   - Unlike the internal-and-undocumented-but-somehow-known PushItemFlag(ImGuiItemFlags_Disabled), this also alters
   1798     visuals. Currently this is done by lowering alpha of all widgets. Future styling system may do that differently.
   1799   - Disabled items set HoveredId, allowing e.g. HoveredIdTimer to run. (#211, #3419) [@rokups]
   1800   - Disabled items more consistently release ActiveId if the active item got disabled. (#211)
   1801   - Nav: Fixed disabled items from being candidate for default focus. (#211, #787)
   1802   - Fixed Selectable() selection not showing when disabled. (#211)
   1803   - Fixed IsItemHovered() returning true on disabled item when navigated to. (#211)
   1804   - Fixed IsItemHovered() when popping disabled state after item, or when using Selectable_Disabled. (#211)
   1805 - Windows: ImGuiWindowFlags_UnsavedDocument/ImGuiTabItemFlags_UnsavedDocument displays a dot instead of a '*' so it
   1806   is independent from font style. When in a tab, the dot is displayed at the same position as the close button.
   1807   Added extra comments to clarify the purpose of this flag in the context of docked windows.
   1808 - Tables: Added ImGuiTableColumnFlags_Disabled acting a master disable over (hidden from user/context menu). (#3935)
   1809 - Tables: Clarified that TableSetColumnEnabled() requires the table to use the ImGuiTableFlags_Hideable flag,
   1810   because it manipulates the user-accessible show/hide state. (#3935)
   1811 - Tables: Added ImGuiTableColumnFlags_NoHeaderLabel to request TableHeadersRow() to not submit label for a column.
   1812   Convenient for some small columns. Name will still appear in context menu. (#4206).
   1813 - Tables: Fixed columns order on TableSetupScrollFreeze() if previous data got frozen columns out of their section.
   1814 - Tables: Fixed invalid data in TableGetSortSpecs() when SpecsDirty flag is unset. (#4233)
   1815 - Tabs: Fixed using more than 32 KB-worth of tab names. (#4176)
   1816 - InputInt/InputFloat: When used with Steps values and _ReadOnly flag, the step button look disabled. (#211)
   1817 - InputText: Fixed named filtering flags disabling newline or tabs in multiline inputs (#4409, #4410) [@kfsone]
   1818 - Drag and Drop: drop target highlight doesn't try to bypass host clipping rectangle. (#4281, #3272)
   1819 - Drag and Drop: Fixed using AcceptDragDropPayload() with ImGuiDragDropFlags_AcceptNoPreviewTooltip. [@JeffM2501]
   1820 - Menus: MenuItem() and BeginMenu() are not affected/overlapping when style.SelectableTextAlign is altered.
   1821 - Menus: Fixed hovering a disabled menu or menu item not closing other menus. (#211)
   1822 - Popups: Fixed BeginPopup/OpenPopup sequence failing when there are no focused windows. (#4308) [@rokups]
   1823 - Nav: Alt doesn't toggle menu layer if other modifiers are held. (#4439)
   1824 - Fixed printf-style format checks on non-MinGW flavors. (#4183, #3592)
   1825 - Fonts: Functions with a 'float size_pixels' parameter can accept zero if it is set in ImFontSize::SizePixels.
   1826 - Fonts: Prefer using U+FFFD character for fallback instead of '?', if available. (#4269)
   1827 - Fonts: Use U+FF0E dot character to construct an ellipsis if U+002E '.' is not available. (#4269)
   1828 - Fonts: Added U+FFFD ("replacement character") to default asian glyphs ranges. (#4269)
   1829 - Fonts: Fixed calling ClearTexData() (clearing CPU side font data) triggering an assert in NewFrame(). (#3487)
   1830 - DrawList: Fixed AddCircle/AddCircleFilled() with auto-tesselation not using accelerated paths for small circles.
   1831   Fixed AddCircle/AddCircleFilled() with 12 segments which had a broken edge. (#4419, #4421) [@thedmd]
   1832 - Demo: Fixed requirement in 1.83 to link with imgui_demo.cpp if IMGUI_DISABLE_METRICS_WINDOW is not set. (#4171)
   1833   Normally the right way to disable compiling the demo is to set IMGUI_DISABLE_DEMO_WINDOWS, but we want to avoid
   1834   implying that the file is required.
   1835 - Metrics: Fixed a crash when inspecting the individual draw command of a foreground drawlist. [@rokups]
   1836 - Backends: Reorganized most backends (Win32, SDL, GLFW, OpenGL2/3, DX9/10/11/12, Vulkan, Allegro) to pull their
   1837   data from a single structure stored inside the main Dear ImGui context. This facilitate/allow usage of standard
   1838   backends with multiple-contexts BUT is only partially tested and not well supported. It is generally advised to
   1839   instead use the multi-viewports feature of docking branch where a single Dear ImGui context can be used across
   1840   multiple windows. (#586, #1851, #2004, #3012, #3934, #4141)
   1841 - Backends: Win32: Rework to handle certain Windows 8.1/10 features without a manifest. (#4200, #4191)
   1842   - ImGui_ImplWin32_GetDpiScaleForMonitor() will handle per-monitor DPI on Windows 10 without a manifest.
   1843   - ImGui_ImplWin32_EnableDpiAwareness() will call SetProcessDpiAwareness() fallback on Windows 8.1 without a manifest.
   1844 - Backends: Win32: IME functions are disabled by default for non-Visual Studio compilers (MinGW etc.). Enable with
   1845   '#define IMGUI_ENABLE_WIN32_DEFAULT_IME_FUNCTIONS' for those compilers. Undo change from 1.82. (#2590, #738, #4185, #4301)
   1846 - Backends: Win32: Mouse position is correctly reported when the host window is hovered but not focused. (#2445, #2696, #3751, #4377)
   1847 - Backends: Win32, SDL2, GLFW, OSX, Allegro: now calling io.AddFocusEvent() on focus gain/loss. (#4388) [@thedmd]
   1848   This allow us to ignore certain inputs on focus loss (previously relied on mouse loss but backends are now
   1849   reporting mouse even when host window is unfocused, as per #2445, #2696, #3751, #4377)
   1850 - Backends: Fixed keyboard modifiers being reported when host window doesn't have focus. (#2622)
   1851 - Backends: GLFW: Mouse position is correctly reported when the host window is hovered but not focused. (#3751, #4377, #2445)
   1852   (backend now uses glfwSetCursorEnterCallback(). If you called ImGui_ImplGlfw_InitXXX with install_callbacks=false, you will
   1853   need to install this callback and forward the data to the backend via ImGui_ImplGlfw_CursorEnterCallback).
   1854 - Backends: SDL2: Mouse position is correctly reported when the host window is hovered but not focused. (#3751, #4377, #2445)
   1855   (enabled with SDL 2.0.5+ as SDL_GetMouseFocus() is only usable with SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH).
   1856 - Backends: DX9: Explicitly disable texture state stages after >= 1. (#4268) [@NZJenkins]
   1857 - Backends: DX12: Fix texture casting crash on 32-bit systems (introduced on 2021/05/19 and v1.83) + added comments
   1858   about building on 32-bit systems. (#4225) [@kingofthebongo2008]
   1859 - Backends: OpenGL3: Embed our own minimal GL headers/loader (imgui_impl_opengl3_loader.h) based on gl3w.
   1860   Reduces the frequent issues and confusion coming from having to support multiple loaders and requiring users to use and
   1861   initialize the same loader as the backend. (#4445) [@rokups]
   1862   Removed support for gl3w, glew, glad, glad2, glbinding2, glbinding3 (all now unnecessary).
   1863 - Backends: OpenGL3: Handle GL_CLIP_ORIGIN on <4.5 contexts if "GL_ARB_clip_control" extension is detected. (#4170, #3998)
   1864 - Backends: OpenGL3: Destroy vertex/fragment shader objects right after they are linked into main shader. (#4244) [@Crowbarous]
   1865 - Backends: OpenGL3: Use OES_vertex_array extension on Emscripten + backup/restore current state. (#4266, #4267) [@harry75369]
   1866 - Backends: GLFW: Installing and exposed ImGui_ImplGlfw_MonitorCallback() for forward compatibility with docking branch.
   1867 - Backends: OSX: Added a fix for shortcuts using CTRL key instead of CMD key. (#4253) [@rokups]
   1868 - Examples: DX12: Fixed handling of Alt+Enter in example app (using swapchain's ResizeBuffers). (#4346) [@PathogenDavid]
   1869 - Examples: DX12: Removed unnecessary recreation of backend-owned device objects when window is resized. (#4347) [@PathogenDavid]
   1870 - Examples: OpenGL3+GLFW,SDL: Remove include cruft to support variety of GL loaders (no longer necessary). [@rokups]
   1871 - Examples: OSX+OpenGL2: Fix event forwarding (fix key remaining stuck when using shortcuts with Cmd/Super key).
   1872   Other OSX examples were not affected. (#4253, #1873) [@rokups]
   1873 - Examples: Updated all .vcxproj to VS2015 (toolset v140) to facilitate usage with vcpkg.
   1874 - Examples: SDL2: Accommodate  for vcpkg install having headers in SDL2/SDL.h vs SDL.h.
   1875 
   1876 
   1877 -----------------------------------------------------------------------
   1878  VERSION 1.83 (Released 2021-05-24)
   1879 -----------------------------------------------------------------------
   1880 
   1881 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.83
   1882 
   1883 Breaking Changes:
   1884 
   1885 - Backends: Obsoleted direct access to ImDrawCmd::TextureId in favor of calling ImDrawCmd::GetTexID(). (#3761) [@thedmd]
   1886   - If you are using official backends from the source tree: you have nothing to do.
   1887   - If you copied old backend code or using your own: change access to draw_cmd->TextureId to draw_cmd->GetTexID().
   1888   Why are we doing this?
   1889   - This change will be required in the future when adding support for incremental texture atlas updates.
   1890   - Please note this won't break soon, but we are making the change ahead of time.
   1891 
   1892 Other Changes:
   1893 
   1894 - Scrolling: Fix scroll tracking with e.g. SetScrollHereX/Y() when WindowPadding < ItemSpacing.
   1895 - Scrolling: Fix scroll snapping on edge of scroll region when both scrollbars are enabled.
   1896 - Scrolling: Fix mouse wheel axis swap when using SHIFT on macOS (system already does it). (#4010)
   1897 - Window: Fix IsWindowAppearing() from returning true twice in most cases. (#3982, #1497, #1061)
   1898 - Nav: Fixed toggling menu layer while an InputText() is active not stealing active id. (#787)
   1899 - Nav: Fixed pressing Escape to leave menu layer while in a popup or child window. (#787)
   1900 - Nav, InputText: Fixed accidental menu toggling while typing non-ascii characters using AltGR. [@rokups] (#370)
   1901 - Nav: Fixed using SetItemDefaultFocus() on windows with _NavFlattened flag. (#787)
   1902 - Nav: Fixed Tabbing initial activation from skipping the first item if it is tabbable through. (#787)
   1903 - Nav: Fixed fast CTRL+Tab (where keys are only held for one single frame) from properly enabling the
   1904   menu layer of target window if it doesn't have other active layers.
   1905 - Tables: Expose TableSetColumnEnabled() in public api. (#3935)
   1906 - Tables: Better preserve widths when columns count changes. (#4046)
   1907 - Tables: Sharing more memory buffers between tables, reducing general memory footprints. (#3740)
   1908 - Tabs: Fixed mouse reordering with very fast movements (e.g. crossing multiple tabs in a single
   1909   frame and then immediately standing still (would only affect automation/bots). [@rokups]
   1910 - Menus: made MenuItem() in a menu bar reflect the 'selected' argument with a highlight. (#4128) [@mattelegende]
   1911 - Drags, Sliders, Inputs: Specifying a NULL format to Float functions default them to "%.3f" to be
   1912   consistent with the compile-time default. (#3922)
   1913 - DragScalar: Add default value for v_speed argument to match higher-level functions. (#3922) [@eliasdaler]
   1914 - ColorEdit4: Alpha default to 255 (instead of 0) when omitted in hex input. (#3973) [@squadack]
   1915 - InputText: Fix handling of paste failure (buffer full) which in some cases could corrupt the undo stack. (#4038)
   1916   (fix submitted to https://github.com/nothings/stb/pull/1158) [@Unit2Ed, @ocornut]
   1917 - InputText: Do not filter private unicode codepoints (e.g. icons) when pasted from clipboard. (#4005) [@dougbinks]
   1918 - InputText: Align caret/cursor to pixel coordinates. (#4080) [@elvissteinjr]
   1919 - InputText: Fixed CTRL+Arrow or OSX double-click leaking the presence of spaces when ImGuiInputTextFlags_Password
   1920   is used. (#4155, #4156) [@michael-swan]
   1921 - LabelText: Fixed clipping of multi-line value text when label is single-line. (#4004)
   1922 - LabelText: Fixed vertical alignment of single-line value text when label is multi-line. (#4004)
   1923 - Combos: Changed the combo popup to use a different id to also using a context menu with the default item id.
   1924   Fixed using BeginPopupContextItem() with no parameter after a combo. (#4167)
   1925 - Popups: Added 'OpenPopup(ImGuiID id)' overload to facilitate calling from nested stacks. (#3993, #331) [@zlash]
   1926 - Tweak computation of io.Framerate so it is less biased toward high-values in the first 120 frames. (#4138)
   1927 - Optimization: Disabling some of MSVC most aggressive Debug runtime checks for some simple/low-level functions
   1928   (e.g. ImVec2, ImVector) leading to a 10-20% increase of performances with MSVC "default" Debug settings.
   1929 - ImDrawList: Add and use SSE-enabled ImRsqrt() in place of 1.0f / ImSqrt(). (#4091) [@wolfpld]
   1930 - ImDrawList: Fixed/improved thickness of thick strokes with sharp angles. (#4053, #3366, #2964, #2868, #2518, #2183)
   1931   Effectively introduced a regression in 1.67 (Jan 2019), and a fix in 1.70 (Apr 2019) but the fix wasn't actually on
   1932   par with original version. Now incorporating the correct revert.
   1933 - ImDrawList: Fixed PathArcTo() regression from 1.82 preventing use of counter-clockwise angles. (#4030, #3491) [@thedmd]
   1934 - Demo: Improved popups demo and comments.
   1935 - Metrics: Added "Fonts" section with same information as available in "Style Editor">"Fonts".
   1936 - Backends: SDL2: Rework global mouse pos availability check listing supported platforms explicitly,
   1937   effectively fixing mouse access on Raspberry Pi. (#2837, #3950) [@lethal-guitar, @hinxx]
   1938 - Backends: Win32: Clearing keyboard down array when losing focus (WM_KILLFOCUS). (#2062, #3532, #3961)
   1939   [@1025798851]
   1940 - Backends: OSX: Fix keys remaining stuck when CMD-tabbing to a different application. (#3832) [@rokups]
   1941 - Backends: DirectX9: calling IDirect3DStateBlock9::Capture() after CreateStateBlock() which appears to
   1942   workaround/fix state restoring issues. Unknown exactly why so, bit of a cargo-cult fix. (#3857)
   1943 - Backends: DirectX9: explicitly setting up more graphics states to increase compatibility with unusual
   1944   non-default states. (#4063)
   1945 - Backends: DirectX10, DirectX11: fixed a crash when backing/restoring state if nothing is bound when
   1946   entering the rendering function. (#4045) [@Nemirtingas]
   1947 - Backends: GLFW: Adding bound check in KeyCallback because GLFW appears to send -1 on some setups. [#4124]
   1948 - Backends: Vulkan: Fix mapped memory Vulkan validation error when buffer sizes are not multiple of
   1949   VkPhysicalDeviceLimits::nonCoherentAtomSize. (#3957) [@AgentX1994]
   1950 - Backends: WebGPU: Update to latest specs (Chrome Canary 92 and Emscripten 2.0.20). (#4116, #3632) [@bfierz, @Kangz]
   1951 - Backends: OpenGL3: Don't try to read GL_CLIP_ORIGIN unless we're OpenGL 4.5. (#3998, #2366, #2186) [@s7jones]
   1952 - Examples: OpenGL: Add OpenGL ES 2.0 support to modern GL examples. (#2837, #3951) [@lethal-guitar, @hinxx]
   1953 - Examples: Vulkan: Rebuild swapchain on VK_SUBOPTIMAL_KHR. (#3881)
   1954 - Examples: Vulkan: Prefer using discrete GPU if there are more than one available. (#4012) [@rokups]
   1955 - Examples: SDL2: Link with shell32.lib required by SDL2main.lib since SDL 2.0.12. [#3988]
   1956 - Examples: Android: Make Android example build compatible with Gradle 7.0. (#3446)
   1957 - Docs: Improvements to description of using colored glyphs/emojis. (#4169, #3369)
   1958 - Docs: Improvements to minor mistakes in documentation comments (#3923) [@ANF-Studios]
   1959 
   1960 
   1961 -----------------------------------------------------------------------
   1962  VERSION 1.82 (Released 2021-02-15)
   1963 -----------------------------------------------------------------------
   1964 
   1965 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.82
   1966 
   1967 Breaking Changes:
   1968 
   1969 - Removed redirecting functions/enums names that were marked obsolete in 1.66 (September 2018):
   1970     - ImGui::SetScrollHere() --> use ImGui::SetScrollHereY()
   1971 - ImDrawList: upgraded AddPolyline()/PathStroke()'s "bool closed" parameter to use "ImDrawFlags flags".
   1972     - bool closed = false    --> use ImDrawFlags_None, or 0
   1973     - bool closed = true     --> use ImDrawFlags_Closed
   1974   The matching ImDrawFlags_Closed value is guaranteed to always stay == 1 in the future.
   1975   Difference may not be noticeable for most but zealous type-checking tools may report a need to change.
   1976 - ImDrawList: upgraded AddRect(), AddRectFilled(), PathRect() to use ImDrawFlags instead of ImDrawCornersFlags.
   1977     - ImDrawCornerFlags_TopLeft  --> use ImDrawFlags_RoundCornersTopLeft
   1978     - ImDrawCornerFlags_BotRight --> use ImDrawFlags_RoundCornersBottomRight
   1979     - ImDrawCornerFlags_None     --> use ImDrawFlags_RoundCornersNone etc.
   1980   Flags now sanely defaults to 0 instead of 0x0F, consistent with all other flags in the API.
   1981   IMPORTANT: The default with rounding > 0.0f is now "round all corners" vs old implicit "round no corners":
   1982     - rounding == 0.0f + flags == 0 --> meant no rounding  --> unchanged (common use)
   1983     - rounding  > 0.0f + flags != 0 --> meant rounding     --> unchanged (common use)
   1984     - rounding == 0.0f + flags != 0 --> meant no rounding  --> unchanged (unlikely use)
   1985     - rounding  > 0.0f + flags == 0 --> meant no rounding  --> BREAKING (unlikely use)!
   1986        - this ONLY matters for hardcoded use of 0 with rounding > 0.0f.
   1987        - fix by using named ImDrawFlags_RoundCornersNone or rounding == 0.0f!
   1988        - this is technically the only real breaking change which we can't solve automatically (it's also uncommon).
   1989   The old ImDrawCornersFlags used awkward default values of ~0 or 0xF (4 lower bits set) to signify "round all corners"
   1990   and we sometimes encouraged using them as shortcuts. As a result the legacy path still support use of hardcoded ~0
   1991   or any value from 0x1 or 0xF. They will behave the same with legacy paths enabled (will assert otherwise).
   1992   Courtesy of legacy untangling commity: [@rokups, @ocornut, @thedmd]
   1993 - ImDrawList: clarified that PathArcTo()/PathArcToFast() won't render with radius < 0.0f. Previously it sorts
   1994   of accidentally worked but would lead to counter-clockwise paths which and have an effect on anti-aliasing.
   1995 - InputText: renamed ImGuiInputTextFlags_AlwaysInsertMode to ImGuiInputTextFlags_AlwaysOverwrite, old name was an
   1996   incorrect description of behavior. Was ostly used by memory editor. Kept inline redirection function. (#2863)
   1997 - Moved 'misc/natvis/imgui.natvis' to 'misc/debuggers/imgui.natvis' as we will provide scripts for other debuggers.
   1998 - Style: renamed rarely used style.CircleSegmentMaxError (old default = 1.60f)
   1999   to style.CircleTessellationMaxError (new default = 0.30f) as its meaning changed. (#3808) [@thedmd]
   2000 - Win32+MinGW: Re-enabled IME functions by default even under MinGW. In July 2016, issue #738 had me incorrectly
   2001   disable those default functions for MinGW. MinGW users should: either link with -limm32, either set their
   2002   imconfig file with '#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS'. (#2590, #738) [@actboy168]
   2003   *EDIT* Undid in 1.84.
   2004 - Backends: Win32: Pragma linking with dwmapi.lib (Vista-era, ~9 kb). MinGW users will need to link with -ldwmapi.
   2005 
   2006 Other Changes:
   2007 
   2008 - Window, Nav: Fixed crash when calling SetWindowFocus(NULL) at the time a new window appears. (#3865) [@nem0]
   2009 - Window: Shrink close button hit-testing region when it covers an abnormally high portion of the window visible
   2010   area (e.g. when window is collapsed + moved in a corner) to facilitate moving the window away. (#3825)
   2011 - Nav: Various fixes for losing gamepad/keyboard navigation reference point when a window reappears or
   2012   when it appears while gamepad/keyboard are not being used. (#787)
   2013 - Drags: Fixed crash when using DragScalar() directly (not via common wrapper like DragFloat() etc.)
   2014   with ImGuiSliderFlags_AlwaysClamp + only one of either p_min or p_max set. (#3824) [@harry75369]
   2015 - Drags, Sliders: Fixed a bug where editing value would use wrong number if there were digits right after
   2016   format specifier (e.g. using "%f123" as a format string). [@rokups]
   2017 - Drags, Sliders: Fixed a bug where using custom formatting flags (',$,_) supported by stb_sprintf.h
   2018   would cause incorrect value to be displayed. (#3604) [@rokups]
   2019 - Drags, Sliders: Support ImGuiSliderFlags_Logarithmic flag with integers. Because why not? (#3786)
   2020 - Tables: Fixed unaligned accesses when using TableSetBgColor(ImGuiTableBgTarget_CellBg). (#3872)
   2021 - IsItemHovered(): fixed return value false positive when used after EndChild(), EndGroup() or widgets using
   2022   either of them, when the hovered location is located within a child window, e.g. InputTextMultiline().
   2023   This is intended to have no side effects, but brace yourself for the possible comeback.. (#3851, #1370)
   2024 - Drag and Drop: can use BeginDragDropSource() for other than the left mouse button as long as the item
   2025   has an ID (for ID-less items will add new functionalities later). (#1637, #3885)
   2026 - ImFontAtlas: Added 'bool TexPixelsUseColors' output to help backend decide of underlying texture format. (#3369)
   2027   This can currently only ever be set by the Freetype renderer.
   2028 - imgui_freetype: Added ImGuiFreeTypeBuilderFlags_Bitmap flag to request Freetype loading bitmap data.
   2029   This may have an effect on size and must be called with correct size values. (#3879) [@metarutaiga]
   2030 - ImDrawList: PathArcTo() now supports "int num_segments = 0" (new default) and adaptively tessellate.
   2031   The adaptive tessellation uses look up tables, tends to be faster than old PathArcTo() while maintaining
   2032   quality for large arcs (tessellation quality derived from "style.CircleTessellationMaxError") (#3491) [@thedmd]
   2033 - ImDrawList: PathArcToFast() also adaptively tessellate efficiently. This means that large rounded corners
   2034   in e.g. hi-dpi settings will generally look better. (#3491) [@thedmd]
   2035 - ImDrawList: AddCircle, AddCircleFilled(): Tweaked default segment count calculation to honor MaxError
   2036   with more accuracy. Made default segment count always even for better looking result. (#3808) [@thedmd]
   2037 - Misc: Added GetAllocatorFunctions() to facilitate sharing allocators across DLL boundaries. (#3836)
   2038 - Misc: Added 'debuggers/imgui.gdb' and 'debuggers/imgui.natstepfilter' (along with existing 'imgui.natvis')
   2039   scripts to configure popular debuggers into skipping trivial functions when using StepInto. [@rokups]
   2040 - Backends: Android: Added native Android backend. (#3446) [@duddel]
   2041 - Backends: Win32: Added ImGui_ImplWin32_EnableAlphaCompositing() to facilitate experimenting with
   2042   alpha compositing and transparent windows. (#2766, #3447 etc.).
   2043 - Backends: OpenGL, Vulkan, DX9, DX10, DX11, DX12, Metal, WebGPU, Allegro: Rework blending equation to
   2044   preserve alpha in output buffer (using SrcBlendAlpha = ONE, DstBlendAlpha = ONE_MINUS_SRC_ALPHA consistently
   2045   accross all backends), facilitating compositing of the output buffer with another buffer.
   2046   (#2693, #2764, #2766, #2873, #3447, #3813, #3816) [@ocornut, @thedmd, @ShawnM427, @Ubpa, @aiekick]
   2047 - Backends: DX9: Fix to support IMGUI_USE_BGRA_PACKED_COLOR. (#3844) [@Xiliusha]
   2048 - Backends: DX9: Fix to support colored glyphs, using newly introduced 'TexPixelsUseColors' info. (#3844)
   2049 - Examples: Android: Added Android + GL ES3 example. (#3446) [@duddel]
   2050 - Examples: Reworked setup of clear color to be compatible with transparent values.
   2051 - CI: Use a dedicated "scheduled" workflow to trigger scheduled builds. Forks may disable this workflow if
   2052   scheduled builds builds are not required. [@rokups]
   2053 - Log/Capture: Added LogTextV, a va_list variant of LogText. [@PathogenDavid]
   2054 
   2055 
   2056 -----------------------------------------------------------------------
   2057  VERSION 1.81 (Released 2021-02-10)
   2058 -----------------------------------------------------------------------
   2059 
   2060 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.81
   2061 
   2062 Breaking Changes:
   2063 
   2064 - ListBox helpers:
   2065   - Renamed ListBoxHeader(const char* label, ImVec2 size) to BeginListBox().
   2066   - Renamed ListBoxFooter() to EndListBox().
   2067   - Removed ListBoxHeader(const char* label, int items_count, int height_in_items = -1) in favor of specifying size.
   2068     In the redirection function, made vertical padding consistent regardless of (items_count <= height_in_items) or not.
   2069   - Kept inline redirection function for all threes (will obsolete).
   2070 - imgui_freetype:
   2071   - Removed ImGuiFreeType::BuildFontAtlas(). Kept inline redirection function.
   2072     Prefer using '#define IMGUI_ENABLE_FREETYPE', but there's a runtime selection path available too.
   2073   - The shared extra flags parameters (very rarely used) are now stored in ImFontAtlas::FontBuilderFlags.
   2074   - Renamed ImFontConfig::RasterizerFlags (used by FreeType) to ImFontConfig::FontBuilderFlags.
   2075   - Renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API.
   2076 
   2077 Other Changes:
   2078 
   2079 - Viewports Added ImGui::GetMainViewport() as a way to get the bounds and work area of the host display. (#3789, #1542)
   2080   - In 'master' branch or without multi-viewports feature enabled:
   2081     - GetMainViewport()->Pos is always == (0,0)
   2082     - GetMainViewport()->Size is always == io.DisplaySize
   2083   - In 'docking' branch and with the multi-viewports feature enabled:
   2084     - GetMainViewport() will return information from your host Platform Window.
   2085     - In the future, we will support a "no main viewport" mode and this may return bounds of your main monitor.
   2086   - For forward compatibility with multi-viewports/multi-monitors:
   2087      - Code using (0,0) as a way to signify "upper-left of the host window" should use GetMainViewport()->Pos.
   2088      - Code using io.DisplaySize as a way to signify "size of the host window" should use GetMainViewport()->Size.
   2089   - We are also exposing a work area in ImGuiViewport ('WorkPos', 'WorkSize' vs 'Pos', 'Size' for full area):
   2090      - For a Platform Window, the work area is generally the full area minus space used by menu-bars.
   2091      - For a Platform Monitor, the work area is generally the full area minus space used by task-bars.
   2092   - All of this has been the case in 'docking' branch for a long time. What we've done is merely merging
   2093     a small chunk of the multi-viewport logic into 'master' to standardize some concepts ahead of time.
   2094 - Tables: Fixed PopItemWidth() or multi-components items not restoring per-colum ItemWidth correctly. (#3760)
   2095 - Window: Fixed minor title bar text clipping issue when FramePadding is small/zero and there are no
   2096   close button in the window. (#3731)
   2097 - SliderInt: Fixed click/drag when v_min==v_max from setting the value to zero. (#3774) [@erwincoumans]
   2098   Would also repro with DragFloat() when using ImGuiSliderFlags_Logarithmic with v_min==v_max.
   2099 - Menus: Fixed an issue with child-menu auto sizing (issue introduced in 1.80 on 2021/01/25) (#3779)
   2100 - InputText: Fixed slightly off ScrollX tracking, noticeable with large values of FramePadding.x. (#3781)
   2101 - InputText: Multiline: Fixed padding/cliprect not precisely matching single-line version. (#3781)
   2102 - InputText: Multiline: Fixed FramePadding.y worth of vertical offset when aiming with mouse.
   2103 - ListBox: Tweaked default height calculation.
   2104 - Fonts: imgui_freetype: Facilitated using FreeType integration: [@Xipiryon, @ocornut]
   2105   - Use '#define IMGUI_ENABLE_FREETYPE' in imconfig.h should make it work with no other modifications
   2106     other than compiling misc/freetype/imgui_freetype.cpp and linking with FreeType.
   2107   - Use '#define IMGUI_ENABLE_STB_TRUETYPE' if you somehow need the stb_truetype rasterizer to be
   2108     compiled in along with the FreeType one, otherwise it is enabled by default.
   2109 - Fonts: imgui_freetype: Added support for colored glyphs as supported by Freetype 2.10+ (for .ttf using CPAL/COLR
   2110   tables only). Enable the ImGuiFreeTypeBuilderFlags_LoadColor on a given font. Atlas always output directly
   2111   as RGBA8 in this situation. Likely to make sense with IMGUI_USE_WCHAR32. (#3369) [@pshurgal]
   2112 - Fonts: Fixed CalcTextSize() width rounding so it behaves more like a ceil. This is in order for text wrapping
   2113   to have enough space when provided width precisely calculated with CalcTextSize().x. (#3776)
   2114   Note that the rounding of either positions and widths are technically undesirable (e.g. #3437, #791) but
   2115   variety of code is currently on it so we are first fixing current behavior before we'll eventually change it.
   2116 - Log/Capture: Fix various new line/spacing issue when logging widgets. [@Xipiryon, @ocornut]
   2117 - Log/Capture: Improved the ASCII look of various widgets, making large dumps more easily human readable.
   2118 - ImDrawList: Fixed AddCircle()/AddCircleFilled() with (rad > 0.0f && rad < 1.0f && num_segments == 0). (#3738)
   2119   Would lead to a buffer read overflow.
   2120 - ImDrawList: Clarified PathArcTo() need for a_min <= a_max with an assert.
   2121 - ImDrawList: Fixed PathArcToFast() handling of a_min > a_max.
   2122 - Metrics: Back-ported "Viewports" debug visualizer from 'docking' branch.
   2123 - Demo: Added 'Examples->Fullscreen Window' demo using GetMainViewport() values. (#3789)
   2124 - Demo: 'Simple Overlay' demo now moves under main menu-bar (if any) using GetMainViewport()'s work area.
   2125 - Backends: Win32: Dynamically loading XInput DLL instead of linking with it, facilitate compiling with
   2126   old WindowSDK versions or running on Windows 7. (#3646, #3645, #3248, #2716) [@Demonese]
   2127 - Backends: Vulkan: Add support for custom Vulkan function loader and VK_NO_PROTOTYPES. (#3759, #3227) [@Hossein-Noroozpour]
   2128   User needs to call ImGui_ImplVulkan_LoadFunctions() with their custom loader prior to other functions.
   2129 - Backends: Metal: Fixed texture storage mode when building on Mac Catalyst. (#3748) [@Belinsky-L-V]
   2130 - Backends: OSX: Fixed mouse position not being reported when mouse buttons other than left one are down. (#3762) [@rokups]
   2131 - Backends: WebGPU: Added enderer backend for WebGPU support (imgui_impl_wgpu.cpp) (#3632) [@bfierz]
   2132   Please note that WebGPU is currently experimental, will not run on non-beta browsers, and may break.
   2133 - Examples: WebGPU: Added Emscripten+WebGPU example. (#3632) [@bfierz]
   2134 - Backends: GLFW: Added ImGui_ImplGlfw_InitForOther() initialization call to use with non OpenGL API. (#3632)
   2135 
   2136 
   2137 -----------------------------------------------------------------------
   2138  VERSION 1.80 (Released 2021-01-21)
   2139 -----------------------------------------------------------------------
   2140 
   2141 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.80
   2142 
   2143 Breaking Changes:
   2144 
   2145 - Added imgui_tables.cpp file! Manually constructed project files will need the new file added! (#3740)
   2146 - Backends: moved all backends files (imgui_impl_XXXX.cpp, imgui_impl_XXXX.h) from examples/ to backends/. (#3513)
   2147 - Renamed ImDrawList::AddBezierCurve() to ImDrawList::AddBezierCubic(). Kept inline redirection function (will obsolete).
   2148 - Renamed ImDrawList::PathBezierCurveTo() to ImDrawList::PathBezierCubicCurveTo(). Kept inline redirection function (will obsolete).
   2149 - Removed redirecting functions/enums names that were marked obsolete in 1.60 (April 2018):
   2150   - io.RenderDrawListsFn pointer                -> use ImGui::GetDrawData() value and call the render function of your backend
   2151   - ImGui::IsAnyWindowFocused()                 -> use ImGui::IsWindowFocused(ImGuiFocusedFlags_AnyWindow)
   2152   - ImGui::IsAnyWindowHovered()                 -> use ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow)
   2153   - ImGuiStyleVar_Count_                        -> use ImGuiStyleVar_COUNT
   2154   - ImGuiMouseCursor_Count_                     -> use ImGuiMouseCursor_COUNT
   2155 - Removed redirecting functions/enums names that were marked obsolete in 1.61 (May 2018):
   2156   - InputFloat (... int decimal_precision ...)  -> use InputFloat (... const char* format ...) with format = "%.Xf" where X was value for decimal_precision.
   2157   - same for InputFloat2()/InputFloat3()/InputFloat4() variants taking a `int decimal_precision` parameter.
   2158 - Removed redirecting functions/enums names that were marked obsolete in 1.63 (August 2018):
   2159   - ImGui::IsItemDeactivatedAfterChange()       -> use ImGui::IsItemDeactivatedAfterEdit().
   2160   - ImGuiCol_ModalWindowDarkening               -> use ImGuiCol_ModalWindowDimBg
   2161   - ImGuiInputTextCallback                      -> use ImGuiTextEditCallback
   2162   - ImGuiInputTextCallbackData                  -> use ImGuiTextEditCallbackData
   2163 - If you were still using the old names, while you are cleaning up, considering enabling
   2164   IMGUI_DISABLE_OBSOLETE_FUNCTIONS in imconfig.h even temporarily to have a pass at finding
   2165   and removing up old API calls, if any remaining.
   2166 - Internals: Columns: renamed undocumented/internals ImGuiColumnsFlags_* to ImGuiOldColumnFlags_* to reduce
   2167   confusion with Tables API. Keep redirection enums (will obsolete). (#125, #513, #913, #1204, #1444, #2142, #2707)
   2168 - Renamed io.ConfigWindowsMemoryCompactTimer to io.ConfigMemoryCompactTimer as the feature now applies
   2169   to other data structures. (#2636)
   2170 
   2171 Other Changes:
   2172 
   2173 - Tables: added new Tables Beta API as a replacement for old Columns. (#3740, #2957, #125)
   2174   Check out 'Demo->Tables' for many demos.
   2175   Read API comments in imgui.h for details. Read extra commentary in imgui_tables.cpp.
   2176   - Added 16 functions:
   2177      - BeginTable(), EndTable()
   2178      - TableNextRow(), TableNextColumn(), TableSetColumnIndex()
   2179      - TableSetupColumn(), TableSetupScrollFreeze()
   2180      - TableHeadersRow(), TableHeader()
   2181      - TableGetRowIndex(), TableGetColumnCount(), TableGetColumnIndex(), TableGetColumnName(), TableGetColumnFlags()
   2182      - TableGetSortSpecs(), TableSetBgColor()
   2183   - Added 3 flags sets:
   2184     - ImGuiTableFlags (29 flags for: features, decorations, sizing policies, padding, clipping, scrolling, sorting etc.)
   2185     - ImGuiTableColumnFlags (24 flags for: width policies, default settings, sorting options, indentation options etc.)
   2186     - ImGuiTableRowFlags (1 flag for: header row)
   2187   - Added 2 structures: ImGuiTableSortSpecs, ImGuiTableColumnSortSpecs
   2188   - Added 2 enums: ImGuiSortDirection, ImGuiTableBgTarget
   2189   - Added 1 style variable: ImGuiStyleVar_CellPadding
   2190   - Added 5 style colors: ImGuiCol_TableHeaderBg, ImGuiCol_TableBorderStrong, ImGuiCol_TableBorderLight, ImGuiCol_TableRowBg, ImGuiCol_TableRowBgAlt.
   2191 - Tabs: Made it possible to append to an existing tab bar by calling BeginTabBar()/EndTabBar() again.
   2192 - Tabs: Fixed using more than 128 tabs in a tab bar (scrolling policy recommended).
   2193 - Tabs: Do not display a tooltip if the name already fits over a given tab. (#3521)
   2194 - Tabs: Fixed minor/unlikely bug skipping over a button when scrolling left with arrows.
   2195 - Tabs: Requested ideal content size (for auto-fit) doesn't affect horizontal scrolling. (#3414)
   2196 - Drag and Drop: Fix losing drop source ActiveID (and often source tooltip) when opening a TreeNode()
   2197   or CollapsingHeader() while dragging. (#1738)
   2198 - Drag and Drop: Fix drag and drop to tie same-size drop targets by chosen the later one. Fixes dragging
   2199   into a full-window-sized dockspace inside a zero-padded window. (#3519, #2717) [@Black-Cat]
   2200 - Checkbox: Added CheckboxFlags() helper with int* type (internals have a template version, not exposed).
   2201 - Clipper: Fixed incorrect end-list positioning when using ImGuiListClipper with 1 item (bug in 1.79). (#3663) [@nyorain]
   2202 - InputText: Fixed updating cursor/selection position when a callback altered the buffer in a way
   2203   where the byte count is unchanged but the decoded character count changes. (#3587) [@gqw]
   2204 - InputText: Fixed switching from single to multi-line while preserving same ID.
   2205 - Combo: Fixed using IsItemEdited() after Combo() not matching the return value from Combo(). (#2034)
   2206 - DragFloat, DragInt: very slightly increased mouse drag threshold + expressing it as a factor of default value.
   2207 - DragFloat, DragInt: added experimental io.ConfigDragClickToInputText feature to enable turning DragXXX widgets
   2208   into text input with a simple mouse click-release (without moving). (#3737)
   2209 - Nav: Fixed IsItemFocused() from returning false when Nav highlight is hidden because mouse has moved.
   2210   It's essentially been always the case but it doesn't make much sense. Instead we will aim at exposing
   2211   feedback and control of keyboard/gamepad navigation highlight and mouse hover disable flag. (#787, #2048)
   2212 - Metrics: Fixed mishandling of ImDrawCmd::VtxOffset in wireframe mesh renderer.
   2213 - Metrics: Rebranded as "Dear ImGui Metrics/Debugger" to clarify its purpose.
   2214 - ImDrawList: Added ImDrawList::AddQuadBezierCurve(), ImDrawList::PathQuadBezierCurveTo() quadratic bezier
   2215   helpers. (#3127, #3664, #3665) [@aiekick]
   2216 - Fonts: Updated GetGlyphRangesJapanese() to include a larger 2999 ideograms selection of Joyo/Jinmeiyo
   2217   kanjis, from the previous 1946 ideograms selection. This will consume a some more memory but be generally
   2218   much more fitting for Japanese display, until we switch to a more dynamic atlas. (#3627) [@vaiorabbit]
   2219 - Log/Capture: fix capture to work on clipped child windows.
   2220 - Misc: Made the ItemFlags stack shared, so effectively the ButtonRepeat/AllowKeyboardFocus states
   2221   (and others exposed in internals such as PushItemFlag) are inherited by stacked Begin/End pairs,
   2222   vs previously a non-child stacked Begin() would reset those flags back to zero for the stacked window.
   2223 - Misc: Replaced UTF-8 decoder with one based on branchless one by Christopher Wellons. [@rokups]
   2224   Super minor fix handling incomplete UTF-8 contents: if input does not contain enough bytes, decoder
   2225   returns IM_UNICODE_CODEPOINT_INVALID and consume remaining bytes (vs old decoded consumed only 1 byte).
   2226 - Misc: Fix format warnings when using gnu printf extensions in a setup that supports them (gcc/mingw). (#3592)
   2227 - Misc: Made EndFrame() assertion for key modifiers being unchanged during the frame (added in 1.76) more
   2228   lenient, allowing full mid-frame releases. This is to accommodate the use of mid-frame modal native
   2229   windows calls, which leads backends such as GLFW to send key clearing events on focus loss. (#3575)
   2230 - Style: Changed default style.WindowRounding value to 0.0f (matches default for multi-viewports).
   2231 - Style: Reduced the size of the resizing grip, made alpha less prominent.
   2232 - Style: Classic: Increase the default alpha value of WindowBg to be closer to other styles.
   2233 - Demo: Clarify usage of right-aligned items in Demo>Layout>Widgets Width.
   2234 - Backends: OpenGL3: Use glGetString(GL_VERSION) query instead of glGetIntegerv(GL_MAJOR_VERSION, ...)
   2235   when the later returns zero (e.g. Desktop GL 2.x). (#3530) [@xndcn]
   2236 - Backends: OpenGL2: Backup and restore GL_SHADE_MODEL and disable GL_NORMAL_ARRAY state to increase
   2237   compatibility with legacy code. (#3671)
   2238 - Backends: OpenGL3: Backup and restore GL_PRIMITIVE_RESTART state. (#3544) [@Xipiryon]
   2239 - Backends: OpenGL2, OpenGL3: Backup and restore GL_STENCIL_TEST enable state. (#3668)
   2240 - Backends: Vulkan: Added support for specifying which sub-pass to reference during VkPipeline creation. (@3579) [@bdero]
   2241 - Backends: DX12: Improve Windows 7 compatibility (for D3D12On7) by loading d3d12.dll dynamically. (#3696) [@Mattiwatti]
   2242 - Backends: Win32: Fix setting of io.DisplaySize to invalid/uninitialized data after hwnd has been closed.
   2243 - Backends: OSX: Fix keypad-enter key not working on MacOS. (#3554) [@rokups, @lfnoise]
   2244 - Examples: Apple+Metal: Consolidated/simplified to get closer to other examples. (#3543) [@warrenm]
   2245 - Examples: Apple+Metal: Forward events down so OS key combination like Cmd+Q can work. (#3554) [@rokups]
   2246 - Examples: Emscripten: Renamed example_emscripten/ to example_emscripten_opengl3/. (#3632)
   2247 - Examples: Emscripten: Added 'make serve' helper to spawn a web-server on localhost. (#3705) [@Horki]
   2248 - Examples: DirectX12: Move ImGui::Render() call above the first barrier to clarify its lack of effect on the graphics pipe.
   2249 - CI: Fix testing for Windows DLL builds. (#3603, #3601) [@iboB]
   2250 - Docs: Improved the wiki and added a https://github.com/ocornut/imgui/wiki/Useful-Widgets page. [@Xipiryon]
   2251   [2021/05/20: moved to https://github.com/ocornut/imgui/wiki/Useful-Extensions]
   2252 - Docs: Split examples/README.txt into docs/BACKENDS.md and docs/EXAMPLES.md, and improved them.
   2253 - Docs: Consistently renamed all occurrences of "binding" and "back-end" to "backend" in comments and docs.
   2254 
   2255 
   2256 -----------------------------------------------------------------------
   2257  VERSION 1.79 (Released 2020-10-08)
   2258 -----------------------------------------------------------------------
   2259 
   2260 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.79
   2261 
   2262 Breaking Changes:
   2263 
   2264 - Fonts: Removed ImFont::DisplayOffset in favor of ImFontConfig::GlyphOffset. DisplayOffset was applied
   2265   after scaling and not very meaningful/useful outside of being needed by the default ProggyClean font.
   2266   It was also getting in the way of better font scaling, so let's get rid of it now!
   2267   If you used DisplayOffset it was probably in association to rasterizing a font at a specific size,
   2268   in which case the corresponding offset may be reported into GlyphOffset. (#1619)
   2269   If you scaled this value after calling AddFontDefault(), this is now done automatically.
   2270 - ImGuiListClipper: Renamed constructor parameters which created an ambiguous alternative to using
   2271   the ImGuiListClipper::Begin() function, with misleading edge cases. Always use ImGuiListClipper::Begin()!
   2272   Kept inline redirection function (will obsolete).
   2273   (note: imgui_memory_editor <0.40 from imgui_club/ used this old clipper API. Update your copy if needed).
   2274 - Style: Renamed style.TabMinWidthForUnselectedCloseButton to style.TabMinWidthForCloseButton.
   2275 - Renamed ImGuiSliderFlags_ClampOnInput to ImGuiSliderFlags_AlwaysClamp. Kept redirection enum (will obsolete).
   2276 - Renamed OpenPopupContextItem() back to OpenPopupOnItemClick(), REVERTED CHANGE FROM 1.77.
   2277   For variety of reason this is more self-explanatory and less error-prone. Kept inline redirection function.
   2278 - Removed return value from OpenPopupOnItemClick() - returned true on mouse release on an item - because it
   2279   is inconsistent with other popups API and makes others misleading. It's also and unnecessary: you can
   2280   use IsWindowAppearing() after BeginPopup() for a similar result.
   2281 
   2282 Other Changes:
   2283 
   2284 - Window: Fixed using non-zero pivot in SetNextWindowPos() when the window is collapsed. (#3433)
   2285 - Nav: Fixed navigation resuming on first visible item when using gamepad. [@rokups]
   2286 - Nav: Fixed using Alt to toggle the Menu layer when inside a Modal window. (#787)
   2287 - Scrolling: Fixed SetScrollHere(0) functions edge snapping when called during a frame where
   2288   ContentSize is changing (issue introduced in 1.78). (#3452).
   2289 - InputText: Added support for Page Up/Down in InputTextMultiline(). (#3430) [@Xipiryon]
   2290 - InputText: Added selection helpers in ImGuiInputTextCallbackData().
   2291 - InputText: Added ImGuiInputTextFlags_CallbackEdit to modify internally owned buffer after an edit.
   2292   (note that InputText() already returns true on edit, the callback is useful mainly to manipulate the
   2293   underlying buffer while focus is active).
   2294 - InputText: Fixed using ImGuiInputTextFlags_Password with InputTextMultiline(). (#3427, #3428)
   2295   It is a rather unusual or useless combination of features but no reason it shouldn't work!
   2296 - InputText: Fixed minor scrolling glitch when erasing trailing lines in InputTextMultiline().
   2297 - InputText: Fixed cursor being partially covered after using Ctrl+End key.
   2298 - InputText: Fixed callback's helper DeleteChars() function when cursor is inside the deleted block. (#3454)
   2299 - InputText: Made pressing Down arrow on the last line when it doesn't have a carriage return not move to
   2300   the end of the line (so it is consistent with Up arrow, and behave same as Notepad and Visual Studio.
   2301   Note that some other text editors instead would move the cursor to the end of the line). [@Xipiryon]
   2302 - DragFloat, DragScalar: Fixed ImGuiSliderFlags_ClampOnInput not being honored in the special case
   2303   where v_min == v_max. (#3361)
   2304 - SliderInt, SliderScalar: Fixed reaching of maximum value with inverted integer min/max ranges, both
   2305   with signed and unsigned types. Added reverse Sliders to Demo. (#3432, #3449) [@rokups]
   2306 - Text: Bypass unnecessary formatting when using the TextColored()/TextWrapped()/TextDisabled() helpers
   2307   with a "%s" format string. (#3466)
   2308 - CheckboxFlags: Display mixed-value/tristate marker when passed flags that have multiple bits set and
   2309   stored value matches neither zero neither the full set.
   2310 - BeginMenuBar: Fixed minor bug where CursorPosMax gets pushed to CursorPos prior to calling BeginMenuBar(),
   2311   so e.g. calling the function at the end of a window would often add +ItemSpacing.y to scrolling range.
   2312 - TreeNode, CollapsingHeader: Made clicking on arrow toggle toggle the open state on the Mouse Down event
   2313   rather than the Mouse Down+Up sequence, even if the _OpenOnArrow flag isn't set. This is standard behavior
   2314   and amends the change done in 1.76 which only affected cases were _OpenOnArrow flag was set.
   2315   (This is also necessary to support full multi/range-select/drag and drop operations.)
   2316 - Tabs: Added TabItemButton() to submit tab that behave like a button. (#3291) [@Xipiryon]
   2317 - Tabs: Added ImGuiTabItemFlags_Leading and ImGuiTabItemFlags_Trailing flags to position tabs or button
   2318   at either end of the tab bar. Those tabs won't be part of the scrolling region, and when reordering cannot
   2319   be moving outside of their section. Most often used with TabItemButton(). (#3291) [@Xipiryon]
   2320 - Tabs: Added ImGuiTabItemFlags_NoReorder flag to disable reordering a given tab.
   2321 - Tabs: Keep tab item close button visible while dragging a tab (independent of hovering state).
   2322 - Tabs: Fixed a small bug where closing a tab that is not selected would leave a tab hole for a frame.
   2323 - Tabs: Fixed a small bug where scrolling buttons (with ImGuiTabBarFlags_FittingPolicyScroll) would
   2324   generate an unnecessary extra draw call.
   2325 - Tabs: Fixed a small bug where toggling a tab bar from Reorderable to not Reorderable would leave
   2326   tabs reordered in the tab list popup. [@Xipiryon]
   2327 - Columns: Fix inverted ClipRect being passed to renderer when using certain primitives inside of
   2328   a fully clipped column. (#3475) [@szreder]
   2329 - Popups, Tooltips: Fix edge cases issues with positioning popups and tooltips when they are larger than
   2330   viewport on either or both axises. [@Rokups]
   2331 - Fonts: AddFontDefault() adjust its vertical offset based on floor(size/13) instead of always +1.
   2332   Was previously done by altering DisplayOffset.y but wouldn't work for DPI scaled font.
   2333 - Metrics: Various tweaks, listing windows front-to-back, greying inactive items when possible.
   2334 - Demo: Add simple InputText() callbacks demo (aside from the more elaborate ones in 'Examples->Console').
   2335 - Backends: OpenGL3: Fix to avoid compiling/calling glBindSampler() on ES or pre 3.3 contexts which have
   2336   the defines set by a loader. (#3467, #1985) [@jjwebb]
   2337 - Backends: Vulkan: Some internal refactor aimed at allowing multi-viewport feature to create their
   2338   own render pass. (#3455, #3459) [@FunMiles]
   2339 - Backends: DX12: Clarified that imgui_impl_dx12 can be compiled on 32-bit systems by redefining
   2340   the ImTextureID to be 64-bit (e.g. '#define ImTextureID ImU64' in imconfig.h). (#301)
   2341 - Backends: DX12: Fix debug layer warning when scissor rect is zero-sized. (#3472, #3462) [@StoneWolf]
   2342 - Examples: Vulkan: Reworked buffer resize handling, fix for Linux/X11. (#3390, #2626) [@RoryO]
   2343 - Examples: Vulkan: Switch validation layer to use "VK_LAYER_KHRONOS_validation" instead of
   2344   "VK_LAYER_LUNARG_standard_validation" which is deprecated (#3459) [@FunMiles]
   2345 - Examples: DX12: Enable breaking on any warning/error when debug interface is enabled.
   2346 - Examples: DX12: Added '#define ImTextureID ImU64' in project and build files to also allow building
   2347   on 32-bit systems. Added project to default Visual Studio solution file. (#301)
   2348 
   2349 
   2350 -----------------------------------------------------------------------
   2351  VERSION 1.78 (Released 2020-08-18)
   2352 -----------------------------------------------------------------------
   2353 
   2354 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.78
   2355 
   2356 Breaking Changes:
   2357 
   2358 - Obsoleted use of the trailing 'float power=1.0f' parameter for those functions: [@Shironekoben, @ocornut]
   2359   - DragFloat(), DragFloat2(), DragFloat3(), DragFloat4(), DragFloatRange2(), DragScalar(), DragScalarN()
   2360   - SliderFloat(), SliderFloat2(), SliderFloat3(), SliderFloat4(), SliderScalar(), SliderScalarN()
   2361   - VSliderFloat(), VSliderScalar()
   2362   Replaced the final 'float power=1.0f' argument with ImGuiSliderFlags defaulting to 0 (as with all our flags).
   2363   Worked out a backward-compatibility scheme so hopefully most C++ codebase should not be affected.
   2364   In short, when calling those functions:
   2365   - If you omitted the 'power' parameter (likely!), you are not affected.
   2366   - If you set the 'power' parameter to 1.0f (same as previous default value):
   2367     - Your compiler may warn on float>int conversion.
   2368     - Everything else will work (but will assert if IMGUI_DISABLE_OBSOLETE_FUNCTIONS is defined).
   2369     - You can replace the 1.0f value with 0 to fix the warning, and be technically correct.
   2370   - If you set the 'power' parameter to >1.0f (to enable non-linear editing):
   2371     - Your compiler may warn on float>int conversion.
   2372     - Code will assert at runtime for IM_ASSERT(power == 1.0f) with the following assert description:
   2373       "Call Drag function with ImGuiSliderFlags_Logarithmic instead of using the old 'float power' function!".
   2374     - In case asserts are disabled, the code will not crash and enable the _Logarithmic flag.
   2375     - You can replace the >1.0f value with ImGuiSliderFlags_Logarithmic to fix the warning/assert
   2376       and get a _similar_ effect as previous uses of power >1.0f.
   2377   See https://github.com/ocornut/imgui/issues/3361 for all details.
   2378   For shared code, you can version check at compile-time with `#if IMGUI_VERSION_NUM >= 17704`.
   2379   Kept inline redirection functions (will obsolete) apart for: DragFloatRange2(), VSliderFloat(), VSliderScalar().
   2380   For those three the 'float power=1.0f' version was removed directly as they were most unlikely ever used.
   2381 - DragInt, DragFloat, DragScalar: Obsoleted use of v_min > v_max to lock edits (introduced in 1.73, this was not
   2382   demoed nor documented much, will be replaced a more generic ReadOnly feature).
   2383 
   2384 Other Changes:
   2385 
   2386 - Nav: Fixed clicking on void (behind any windows) from not clearing the focused window.
   2387   This would be problematic e.g. in situation where the application relies on io.WantCaptureKeyboard
   2388   flag being cleared accordingly. (bug introduced in 1.77 WIP on 2020/06/16) (#3344, #2880)
   2389 - Window: Fixed clicking over an item which hovering has been disabled (e.g inhibited by a popup)
   2390   from marking the window as moved.
   2391 - Drag, Slider: Added ImGuiSliderFlags parameters.
   2392   - For float functions they replace the old trailing 'float power=1.0' parameter.
   2393     (See #3361 and the "Breaking Changes" block above for all details).
   2394   - Added ImGuiSliderFlags_Logarithmic flag to enable logarithmic editing
   2395     (generally more precision around zero), as a replacement to the old 'float power' parameter
   2396     which was obsoleted. (#1823, #1316, #642) [@Shironekoben, @AndrewBelt]
   2397   - Added ImGuiSliderFlags_ClampOnInput flag to force clamping value when using
   2398     CTRL+Click to type in a value manually. (#1829, #3209, #946, #413).
   2399     [note: RENAMED to ImGuiSliderFlags_AlwaysClamp in 1.79].
   2400   - Added ImGuiSliderFlags_NoRoundToFormat flag to disable rounding underlying
   2401     value to match precision of the display format string. (#642)
   2402   - Added ImGuiSliderFlags_NoInput flag to disable turning widget into a text input
   2403     with CTRL+Click or Nav Enter.
   2404 - Nav, Slider: Fix using keyboard/gamepad controls with certain logarithmic sliders where
   2405   pushing a direction near zero values would be cancelled out. [@Shironekoben]
   2406 - DragFloatRange2, DragIntRange2: Fixed an issue allowing to drag out of bounds when both
   2407   min and max value are on the same value. (#1441)
   2408 - InputText, ImDrawList: Fixed assert triggering when drawing single line of text with more
   2409   than ~16 KB characters. (Note that current code is going to show corrupted display if after
   2410   clipping, more than 16 KB characters are visible in the same low-level ImDrawList::RenderText()
   2411   call. ImGui-level functions such as TextUnformatted() are not affected. This is quite rare
   2412   but it will be addressed later). (#3349)
   2413 - Selectable: Fixed highlight/hit extent when used with horizontal scrolling (in or outside columns).
   2414   Also fixed related text clipping when used in a column after the first one. (#3187, #3386)
   2415 - Scrolling: Avoid SetScroll, SetScrollFromPos functions from snapping on the edge of scroll
   2416   limits when close-enough by (WindowPadding - ItemPadding), which was a tweak with too many
   2417   side-effects. The behavior is still present in SetScrollHere functions as they are more explicitly
   2418   aiming at making widgets visible. May later be moved to a flag.
   2419 - Tabs: Allow calling SetTabItemClosed() after a tab has been submitted (will process next frame).
   2420 - InvisibleButton: Made public a small selection of ImGuiButtonFlags (previously in imgui_internal.h)
   2421   and allowed to pass them to InvisibleButton(): ImGuiButtonFlags_MouseButtonLeft/Right/Middle.
   2422   This is a small but rather important change because lots of multi-button behaviors could previously
   2423   only be achieved using lower-level/internal API. Now also available via high-level InvisibleButton()
   2424   with is a de-facto versatile building block to creating custom widgets with the public API.
   2425 - Fonts: Fixed ImFontConfig::GlyphExtraSpacing and ImFontConfig::PixelSnapH settings being pulled
   2426   from the merged/target font settings when merging fonts, instead of being pulled from the source
   2427   font settings.
   2428 - ImDrawList: Thick anti-aliased strokes (> 1.0f) with integer thickness now use a texture-based
   2429   path, reducing the amount of vertices/indices and CPU/GPU usage. (#3245) [@Shironekoben]
   2430   - This change will facilitate the wider use of thick borders in future style changes.
   2431   - Requires an extra bit of texture space (~64x64 by default), relies on GPU bilinear filtering.
   2432   - Set `io.AntiAliasedLinesUseTex = false` to disable rendering using this method.
   2433   - Clear `ImFontAtlasFlags_NoBakedLines` in ImFontAtlas::Flags to disable baking data in texture.
   2434 - ImDrawList: changed AddCircle(), AddCircleFilled() default num_segments from 12 to 0, effectively
   2435   enabling auto-tessellation by default. Tweak tessellation in Style Editor->Rendering section, or
   2436   by modifying the 'style.CircleSegmentMaxError' value. [@ShironekoBen]
   2437 - ImDrawList: Fixed minor bug introduced in 1.75 where AddCircle() with 12 segments would generate
   2438   an extra vertex. (This bug was mistakenly marked as fixed in earlier 1.77 release). [@ShironekoBen]
   2439 - Demo: Improved "Custom Rendering"->"Canvas" demo with a grid, scrolling and context menu.
   2440   Also showcase using InvisibleButton() with multiple mouse buttons flags.
   2441 - Demo: Improved "Layout & Scrolling" -> "Clipping" section.
   2442 - Demo: Improved "Layout & Scrolling" -> "Child Windows" section.
   2443 - Style Editor: Added preview of circle auto-tessellation when editing the corresponding value.
   2444 - Backends: OpenGL3: Added support for glad2 loader. (#3330) [@moritz-h]
   2445 - Backends: Allegro 5: Fixed horizontal scrolling direction with mouse wheel / touch pads (it seems
   2446   like Allegro 5 reports it differently from GLFW and SDL). (#3394, #2424, #1463) [@nobody-special666]
   2447 - Examples: Vulkan: Fixed GLFW+Vulkan and SDL+Vulkan clear color not being set. (#3390) [@RoryO]
   2448 - CI: Emscripten has stopped their support for their fastcomp backend, switching to latest sdk [@Xipiryon]
   2449 
   2450 
   2451 -----------------------------------------------------------------------
   2452  VERSION 1.77 (Released 2020-06-29)
   2453 -----------------------------------------------------------------------
   2454 
   2455 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.77
   2456 
   2457 Breaking Changes:
   2458 
   2459 - Removed unnecessary ID (first arg) of ImFontAtlas::AddCustomRectRegular() function. Please
   2460   note that this is a Beta api and will likely be reworked in order to support multi-DPI across
   2461   multiple monitors.
   2462 - Renamed OpenPopupOnItemClick() to OpenPopupContextItem(). Kept inline redirection function (will obsolete).
   2463   [NOTE: THIS WAS REVERTED IN 1.79]
   2464 - Removed BeginPopupContextWindow(const char*, int mouse_button, bool also_over_items) in favor
   2465   of BeginPopupContextWindow(const char*, ImGuiPopupFlags flags) with ImGuiPopupFlags_NoOverItems.
   2466   Kept inline redirection function (will obsolete).
   2467 - Removed obsoleted CalcItemRectClosestPoint() entry point (has been asserting since December 2017).
   2468 
   2469 Other Changes:
   2470 
   2471 - TreeNode: Fixed bug where BeginDragDropSource() failed when the _OpenOnDoubleClick flag is
   2472   enabled (bug introduced in 1.76, but pre-1.76 it would also fail unless the _OpenOnArrow
   2473   flag was also set, and _OpenOnArrow is frequently set along with _OpenOnDoubleClick).
   2474 - TreeNode: Fixed bug where dragging a payload over a TreeNode() with either _OpenOnDoubleClick
   2475   or _OpenOnArrow would open the node. (#143)
   2476 - Windows: Fix unintended feedback loops when resizing windows close to main viewport edges. [@rokups]
   2477 - Tabs: Added style.TabMinWidthForUnselectedCloseButton settings:
   2478   - Set to 0.0f (default) to always make a close button appear on hover (same as Chrome, VS).
   2479   - Set to FLT_MAX to only display a close button when selected (merely hovering is not enough).
   2480   - Set to an intermediary value to toggle behavior based on width (same as Firefox).
   2481 - Tabs: Added a ImGuiTabItemFlags_NoTooltip flag to disable the tooltip for individual tab item
   2482   (vs ImGuiTabBarFlags_NoTooltip for entire tab bar). [@Xipiryon]
   2483 - Popups: All functions capable of opening popups (OpenPopup*, BeginPopupContext*) now take a new
   2484   ImGuiPopupFlags sets of flags instead of a mouse button index. The API is automatically backward
   2485   compatible as ImGuiPopupFlags is guaranteed to hold mouse button index in the lower bits.
   2486 - Popups: Added ImGuiPopupFlags_NoOpenOverExistingPopup for OpenPopup*/BeginPopupContext* functions
   2487   to first test for the presence of another popup at the same level.
   2488 - Popups: Added ImGuiPopupFlags_NoOpenOverItems for BeginPopupContextWindow() - similar to testing
   2489   for !IsAnyItemHovered() prior to doing an OpenPopup().
   2490 - Popups: Added ImGuiPopupFlags_AnyPopupId and ImGuiPopupFlags_AnyPopupLevel flags for IsPopupOpen(),
   2491   allowing to check if any popup is open at the current level, if a given popup is open at any popup
   2492   level, if any popup is open at all.
   2493 - Popups: Fix an edge case where programmatically closing a popup while clicking on its empty space
   2494   would attempt to focus it and close other popups. (#2880)
   2495 - Popups: Fix BeginPopupContextVoid() when clicking over the area made unavailable by a modal. (#1636)
   2496 - Popups: Clarified some of the comments and function prototypes.
   2497 - Modals: BeginPopupModal() doesn't set the ImGuiWindowFlags_NoSavedSettings flag anymore, and will
   2498   not always be auto-centered. Note that modals are more similar to regular windows than they are to
   2499   popups, so api and behavior may evolve further toward embracing this. (#915, #3091)
   2500   Enforce centering using e.g. SetNextWindowPos(io.DisplaySize * 0.5f, ImGuiCond_Appearing, ImVec2(0.5f,0.5f)).
   2501 - Metrics: Added a "Settings" section with some details about persistent ini settings.
   2502 - Nav, Menus: Fix vertical wrap-around in menus or popups created with multiple appending calls to
   2503   BeginMenu()/EndMenu() or BeginPopup(0/EndPopup(). (#3223, #1207) [@rokups]
   2504 - Drag and Drop: Fixed unintended fallback "..." tooltip display during drag operation when
   2505   drag source uses _SourceNoPreviewTooltip flags. (#3160) [@rokups]
   2506 - Columns: Lower overhead on column switches and switching to background channel.
   2507   Benefits Columns but was primarily made with Tables in mind!
   2508 - Fonts: Fix GetGlyphRangesKorean() end-range to end at 0xD7A3 (instead of 0xD79D). (#348, #3217) [@marukrap]
   2509 - ImDrawList: Fixed an issue where draw command merging or primitive unreserve while crossing the
   2510   VtxOffset boundary would lead to draw commands with wrong VtxOffset. (#3129, #3163, #3232, #2591)
   2511   [@thedmd, @Shironekoben, @sergeyn, @ocornut]
   2512 - ImDrawList, ImDrawListSplitter, Columns: Fixed an issue where changing channels with different
   2513   TextureId, VtxOffset would incorrectly apply new settings to draw channels. (#3129, #3163)
   2514   [@ocornut, @thedmd, @Shironekoben]
   2515 - ImDrawList, ImDrawListSplitter, Columns: Fixed an issue where starting a split when current
   2516   VtxOffset was not zero would lead to draw commands with wrong VtxOffset. (#2591)
   2517 - ImDrawList, ImDrawListSplitter, Columns: Fixed an issue where starting a split right after
   2518   a callback draw command would incorrectly override the callback draw command.
   2519 - Misc, Freetype: Fix for rare case where FT_Get_Char_Index() succeeds but FT_Load_Glyph() fails.
   2520 - Docs: Improved and moved font documentation to docs/FONTS.md so it can be readable on the web.
   2521   Updated various links/wiki accordingly. Added FAQ entry about DPI. (#2861) [@ButternCream, @ocornut]
   2522 - CI: Added CI test to verify we're never accidentally dragging libstdc++ (on some compiler setups,
   2523   static constructors for non-pod data seems to drag in libstdc++ due to thread-safety concerns).
   2524   Fixed a static constructor which led to this dependency on some compiler setups. [@rokups]
   2525 - Backends: Win32: Support for #define NOGDI, won't try to call GetDeviceCaps(). (#3137, #2327)
   2526 - Backends: Win32: Fix _WIN32_WINNT < 0x0600 (MinGW defaults to 0x502 == Windows 2003). (#3183)
   2527 - Backends: SDL: Report a zero display-size when window is minimized, consistent with other backends,
   2528   making more render/clipping code use an early out path.
   2529 - Backends: OpenGL: Fixed handling of GL 4.5+ glClipControl(GL_UPPER_LEFT) by inverting the
   2530   projection matrix top and bottom values. (#3143, #3146) [@u3shit]
   2531 - Backends: OpenGL: On OSX, if unspecified by app, made default GLSL version 150. (#3199) [@albertvaka]
   2532 - Backends: OpenGL: Fixed loader auto-detection to not interfere with ES2/ES3 defines. (#3246) [@funchal]
   2533 - Backends: Vulkan: Fixed error in if initial frame has no vertices. (#3177)
   2534 - Backends: Vulkan: Fixed edge case where render callbacks wouldn't be called if the ImDrawData
   2535   structure didn't have any vertices. (#2697) [@kudaba]
   2536 - Backends: OSX: Added workaround to avoid fast mouse clicks. (#3261, #1992, #2525) [@nburrus]
   2537 - Examples: GLFW+Vulkan, SDL+Vulkan: Fix for handling of minimized windows. (#3259)
   2538 - Examples: Apple: Fixed example_apple_metal and example_apple_opengl2 using imgui_impl_osx.mm
   2539   not forwarding right and center mouse clicks. (#3260) [@nburrus]
   2540 
   2541 
   2542 -----------------------------------------------------------------------
   2543  VERSION 1.76 (Released 2020-04-12)
   2544 -----------------------------------------------------------------------
   2545 
   2546 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.76
   2547 
   2548 Other Changes:
   2549 
   2550 - Drag and Drop, Nav: Disabling navigation arrow keys when drag and drop is active. In the docking
   2551   branch pressing arrow keys while dragging a window from a tab could trigger an assert. (#3025)
   2552 - BeginMenu: Using same ID multiple times appends content to a menu. (#1207) [@rokups]
   2553 - BeginMenu: Fixed a bug where SetNextWindowXXX data before a BeginMenu() would not be cleared
   2554   when the menu is not open. (#3030)
   2555 - InputText: Fixed password fields displaying ASCII spaces as blanks instead of using the '*'
   2556   glyph. (#2149, #515)
   2557 - Selectable: Fixed honoring style.SelectableTextAlign with unspecified size. (#2347, #2601)
   2558 - Selectable: Allow using ImGuiSelectableFlags_SpanAllColumns in other columns than first. (#125)
   2559 - TreeNode: Made clicking on arrow with _OpenOnArrow toggle the open state on the Mouse Down
   2560   event rather than the Mouse Down+Up sequence (this is rather standard behavior).
   2561 - ColorButton: Added ImGuiColorEditFlags_NoBorder flag to remove the border normally enforced
   2562   by default for standalone ColorButton.
   2563 - Nav: Fixed interactions with ImGuiListClipper, so e.g. Home/End result would not clip the
   2564   landing item on the landing frame. (#787)
   2565 - Nav: Fixed currently focused item from ever being clipped by ItemAdd(). (#787)
   2566 - Scrolling: Fixed scrolling centering API leading to non-integer scrolling values and initial
   2567   cursor position. This would often get fixed after the fix item submission, but using the
   2568   ImGuiListClipper as the first thing after Begin() could largely break size calculations. (#3073)
   2569 - Added optional support for Unicode plane 1-16 (#2538, #2541, #2815) [@cloudwu, @samhocevar]
   2570   - Compile-time enable with '#define IMGUI_USE_WCHAR32' in imconfig.h.
   2571   - More onsistent handling of unsupported code points (0xFFFD).
   2572   - Surrogate pairs are supported when submitting UTF-16 data via io.AddInputCharacterUTF16(),
   2573     allowing for more complete CJK input.
   2574   - sizeof(ImWchar) goes from 2 to 4. IM_UNICODE_CODEPOINT_MAX goes from 0xFFFF to 0x10FFFF.
   2575   - Various structures such as ImFont, ImFontGlyphRangesBuilder will use more memory, this
   2576     is currently not particularly efficient.
   2577 - Columns: undid the change in 1.75 were Columns()/BeginColumns() were preemptively limited
   2578   to 64 columns with an assert. (#3037, #125)
   2579 - Window: Fixed a bug with child window inheriting ItemFlags from their parent when the child
   2580   window also manipulate the ItemFlags stack. (#3024) [@Stanbroek]
   2581 - Font: Fixed non-ASCII space occasionally creating unnecessary empty looking polygons.
   2582 - Misc: Added an explicit compile-time test for non-scoped IM_ASSERT() macros to redirect users
   2583   to a solution rather than encourage people to add braces in the codebase.
   2584 - Misc: Added additional checks in EndFrame() to verify that io.KeyXXX values have not been
   2585   tampered with between NewFrame() and EndFrame().
   2586 - Misc: Made default clipboard handlers for Win32 and OSX use a buffer inside the main context
   2587   instead of a static buffer, so it can be freed properly on Shutdown. (#3110)
   2588 - Misc, Freetype: Fixed support for IMGUI_STB_RECT_PACK_FILENAME compile time directive
   2589   in imgui_freetype.cpp (matching support in the regular code path). (#3062) [@DonKult]
   2590 - Metrics: Made Tools section more prominent. Showing wire-frame mesh directly hovering the ImDrawCmd
   2591   instead of requiring to open it. Added options to disable bounding box and mesh display.
   2592   Added notes on inactive/gc-ed windows.
   2593 - Demo: Added black and white and color gradients to Demo>Examples>Custom Rendering.
   2594 - CI: Added more tests on the continuous-integration server: extra warnings for Clang/GCC, building
   2595   SDL+Metal example, building imgui_freetype.cpp, more compile-time imconfig.h settings: disabling
   2596   obsolete functions, enabling 32-bit ImDrawIdx, enabling 32-bit ImWchar, disabling demo. [@rokups]
   2597 - Backends: OpenGL3: Fixed version check mistakenly testing for GL 4.0+ instead of 3.2+ to enable
   2598   ImGuiBackendFlags_RendererHasVtxOffset, leaving 3.2 contexts without it. (#3119, #2866) [@wolfpld]
   2599 - Backends: OpenGL3: Added include support for older glbinding 2.x loader. (#3061) [@DonKult]
   2600 - Backends: Win32: Added ImGui_ImplWin32_EnableDpiAwareness(), ImGui_ImplWin32_GetDpiScaleForHwnd(),
   2601   ImGui_ImplWin32_GetDpiScaleForMonitor() helpers functions (backported from the docking branch).
   2602   Those functions makes it easier for example apps to support hi-dpi features without setting up
   2603   a manifest.
   2604 - Backends: Win32: Calling AddInputCharacterUTF16() from WM_CHAR message handler in order to support
   2605   high-plane surrogate pairs. (#2815) [@cloudwu, @samhocevar]
   2606 - Backends: SDL: Added ImGui_ImplSDL2_InitForMetal() for API consistency (even though the function
   2607   currently does nothing).
   2608 - Backends: SDL: Fixed mapping for ImGuiKey_KeyPadEnter. (#3031) [@Davido71]
   2609 - Examples: Win32+DX12: Fixed resizing main window, enabled debug layer. (#3087, #3115) [@sergeyn]
   2610 - Examples: SDL+DX11: Fixed resizing main window. (#3057) [@joeslay]
   2611 - Examples: Added SDL+Metal example application. (#3017) [@coding-jackalope]
   2612 
   2613 
   2614 -----------------------------------------------------------------------
   2615  VERSION 1.75 (Released 2020-02-10)
   2616 -----------------------------------------------------------------------
   2617 
   2618 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.75
   2619 
   2620 Breaking Changes:
   2621 
   2622 - Removed redirecting functions/enums names that were marked obsolete in 1.53 (December 2017):
   2623   - ShowTestWindow()                    -> use ShowDemoWindow()
   2624   - IsRootWindowFocused()               -> use IsWindowFocused(ImGuiFocusedFlags_RootWindow)
   2625   - IsRootWindowOrAnyChildFocused()     -> use IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows)
   2626   - SetNextWindowContentWidth(w)        -> use SetNextWindowContentSize(ImVec2(w, 0.0f)
   2627   - GetItemsLineHeightWithSpacing()     -> use GetFrameHeightWithSpacing()
   2628   - ImGuiCol_ChildWindowBg              -> use ImGuiCol_ChildBg
   2629   - ImGuiStyleVar_ChildWindowRounding   -> use ImGuiStyleVar_ChildRounding
   2630   - ImGuiTreeNodeFlags_AllowOverlapMode -> use ImGuiTreeNodeFlags_AllowItemOverlap
   2631   - IMGUI_DISABLE_TEST_WINDOWS          -> use IMGUI_DISABLE_DEMO_WINDOWS
   2632   If you were still using the old names, while you are cleaning up, considering enabling
   2633   IMGUI_DISABLE_OBSOLETE_FUNCTIONS in imconfig.h even temporarily to have a pass at finding
   2634   and removing up old API calls, if any remaining.
   2635 - Removed implicit default parameter to IsMouseDragging(int button = 0) to be consistent
   2636   with other mouse functions (none of the other functions have it).
   2637 - Obsoleted calling ImDrawList::PrimReserve() with a negative count (which was vaguely
   2638   documented and rarely if ever used). Instead we added an explicit PrimUnreserve() API
   2639   which can be implemented faster. Also clarified pre-existing constraints which weren't
   2640   documented (can only unreserve from the last reserve call). If you suspect you ever
   2641   used that feature before (very unlikely, but grep for call to PrimReserve in your code),
   2642   you can #define IMGUI_DEBUG_PARANOID in imconfig.h to catch existing calls. [@ShironekoBen]
   2643 - ImDrawList::AddCircle()/AddCircleFilled() functions don't accept negative radius.
   2644 - Limiting Columns()/BeginColumns() api to 64 columns with an assert. While the current code
   2645   technically supports it, future code may not so we're putting the restriction ahead.
   2646   [Undid that change in 1.76]
   2647 - imgui_internal.h: changed ImRect() default constructor initializes all fields to 0.0f instead
   2648   of (FLT_MAX,FLT_MAX,-FLT_MAX,-FLT_MAX). If you used ImRect::Add() to create bounding boxes by
   2649   adding points into it without explicit initialization, you may need to fix your initial value.
   2650 
   2651 Other Changes:
   2652 
   2653 - Inputs: Added ImGuiMouseButton enum for convenience (e.g. ImGuiMouseButton_Right=1).
   2654   We forever guarantee that the existing value will not changes so existing code is free to use 0/1/2.
   2655 - Nav: Fixed a bug where the initial CTRL-Tab press while in a child window sometimes selected
   2656   the current root window instead of always selecting the previous root window. (#787)
   2657 - ColorEdit: Fix label alignment when using ImGuiColorEditFlags_NoInputs. (#2955) [@rokups]
   2658 - ColorEdit: In HSV display of a RGB stored value, attempt to locally preserve Saturation
   2659   when Value==0.0 (similar to changes done in 1.73 for Hue). Removed Hue editing lock since
   2660   those improvements in 1.73 makes them unnecessary. (#2722, #2770). [@rokups]
   2661 - ColorEdit: "Copy As" context-menu tool shows hex values with a '#' prefix instead of '0x'.
   2662 - ColorEdit: "Copy As" content-menu tool shows hex values both with/without alpha when available.
   2663 - InputText: Fix corruption or crash when executing undo after clearing input with ESC, as a
   2664   byproduct we are allowing to later undo the revert with a CTRL+Z. (#3008).
   2665 - InputText: Fix using a combination of _CallbackResize (e.g. for std::string binding), along with the
   2666   _EnterReturnsTrue flag along with the rarely used property of using an InputText without persisting
   2667   user-side storage. Previously if you had e.g. a local unsaved std::string and reading result back
   2668   from the widget, the user string object wouldn't be resized when Enter key was pressed. (#3009)
   2669 - MenuBar: Fix minor clipping issue where occasionally a menu text can overlap the right-most border.
   2670 - Window: Fix SetNextWindowBgAlpha(1.0f) failing to override alpha component. (#3007) [@Albog]
   2671 - Window: When testing for the presence of the ImGuiWindowFlags_NoBringToFrontOnFocus flag we
   2672   test both the focused/clicked window (which could be a child window) and the root window.
   2673 - ImDrawList: AddCircle(), AddCircleFilled() API can now auto-tessellate when provided a segment
   2674   count of zero. Alter tessellation quality with 'style.CircleSegmentMaxError'. [@ShironekoBen]
   2675 - ImDrawList: Add AddNgon(), AddNgonFilled() API with a guarantee on the explicit segment count.
   2676   In the current branch they are essentially the same as AddCircle(), AddCircleFilled() but as
   2677   we will rework the circle rendering functions to use textures and automatic segment count
   2678   selection, those new api can fill a gap. [@ShironekoBen]
   2679 - Columns: ImDrawList::Channels* functions now work inside columns. Added extra comments to
   2680   suggest using user-owned ImDrawListSplitter instead of ImDrawList functions. [@rokups]
   2681 - Misc: Added ImGuiMouseCursor_NotAllowed enum so it can be used by more shared widgets. [@rokups]
   2682 - Misc: Added IMGUI_DISABLE compile-time definition to make all headers and sources empty.
   2683 - Misc: Disable format checks when using stb_printf, to allow using extra formats.
   2684   Made IMGUI_USE_STB_SPRINTF a properly documented imconfig.h flag. (#2954) [@loicmolinari]
   2685 - Misc: Added misc/single_file/imgui_single_file.h, We use this to validate compiling all *.cpp
   2686   files in a same compilation unit. Actual users of that technique (also called "Unity builds")
   2687   can generally provide this themselves, so we don't really recommend you use this. [@rokups]
   2688 - CI: Added PVS-Studio static analysis on the continuous-integration server. [@rokups]
   2689 - Backends: GLFW, SDL, Win32, OSX, Allegro: Added support for ImGuiMouseCursor_NotAllowed. [@rokups]
   2690 - Backends: GLFW: Added support for the missing mouse cursors newly added in GLFW 3.4+. [@rokups]
   2691 - Backends: SDL: Wayland: use SDL_GetMouseState (because there is no global mouse state available
   2692   on Wayland). (#2800, #2802) [@NeroBurner]
   2693 - Backends: GLFW, SDL: report Windows key (io.KeySuper) as always released. Neither GLFW nor SDL can
   2694   correctly report the key release in every cases (e.g. when using Win+V) causing problems with some
   2695   widgets. The next release of GLFW (3.4+) will have a fix for it. However since it is both difficult
   2696   and discouraged to make use of this key for Windows application anyway, we just hide it. (#2976)
   2697 - Backends: Win32: Added support for #define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD to disable all
   2698   XInput using code, and IMGUI_IMPL_WIN32_DISABLE_LINKING_XINPUT to disable linking with XInput,
   2699   the later may be problematic if compiling with recent Windows SDK and you want your app to run
   2700   on Windows 7. You can instead try linking with Xinput9_1_0.lib instead. (#2716)
   2701 - Backends: Glut: Improved FreeGLUT support for MinGW. (#3004) [@podsvirov]
   2702 - Backends: Emscripten: Avoid forcefully setting IMGUI_DISABLE_FILE_FUNCTIONS. (#3005) [@podsvirov]
   2703 - Examples: OpenGL: Explicitly adding -DIMGUI_IMPL_OPENGL_LOADER_GL3W to Makefile to match linking
   2704   settings (otherwise if another loader such as Glew is accessible, the OpenGL3 backend might
   2705   automatically use it). (#2919, #2798)
   2706 - Examples: OpenGL: Added support for glbinding OpenGL loader. (#2870) [@rokups]
   2707 - Examples: Emscripten: Demonstrating embedding fonts in Makefile and code. (#2953) [@Oipo]
   2708 - Examples: Metal: Wrapped main loop in @autoreleasepool block to ensure allocations get freed
   2709   even if underlying system event loop gets paused due to app nap. (#2910, #2917) [@bear24rw]
   2710 
   2711 
   2712 -----------------------------------------------------------------------
   2713  VERSION 1.74 (Released 2019-11-25)
   2714 -----------------------------------------------------------------------
   2715 
   2716 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.74
   2717 
   2718 Breaking Changes:
   2719 
   2720 - Removed redirecting functions/enums names that were marked obsolete in 1.52 (October 2017):
   2721   - Begin() [old 5 args version]     -> use Begin() [3 args], use SetNextWindowSize() SetNextWindowBgAlpha() if needed
   2722   - IsRootWindowOrAnyChildHovered()  -> use IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows)
   2723   - AlignFirstTextHeightToWidgets()  -> use AlignTextToFramePadding()
   2724   - SetNextWindowPosCenter()         -> use SetNextWindowPos() with a pivot of (0.5f, 0.5f)
   2725   - ImFont::Glyph                    -> use ImFontGlyph
   2726   If you were still using the old names, read "API Breaking Changes" section of imgui.cpp to find out
   2727   the new names or equivalent features, or see how they were implemented until 1.73.
   2728 - Inputs: Fixed a miscalculation in the keyboard/mouse "typematic" repeat delay/rate calculation, used
   2729   by keys and e.g. repeating mouse buttons as well as the GetKeyPressedAmount() function.
   2730   If you were using a non-default value for io.KeyRepeatRate (previous default was 0.250), you can
   2731   add +io.KeyRepeatDelay to it to compensate for the fix.
   2732   The function was triggering on: 0.0 and (delay+rate*N) where (N>=1). Fixed formula responds to (N>=0).
   2733   Effectively it made io.KeyRepeatRate behave like it was set to (io.KeyRepeatRate + io.KeyRepeatDelay).
   2734   Fixed the code and altered default io.KeyRepeatRate,Delay from 0.250,0.050 to 0.300,0.050 to compensate.
   2735   If you never altered io.KeyRepeatRate nor used GetKeyPressedAmount() this won't affect you.
   2736 - Misc: Renamed IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS to IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS. (#1038)
   2737 - Misc: Renamed IMGUI_DISABLE_MATH_FUNCTIONS to IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS.
   2738 - Fonts: ImFontAtlas::AddCustomRectRegular() now requires an ID larger than 0x110000 (instead of 0x10000) to
   2739   conform with supporting Unicode planes 1-16 in a future update. ID below 0x110000 will now assert.
   2740 - Backends: DX12: Added extra ID3D12DescriptorHeap parameter to ImGui_ImplDX12_Init() function.
   2741   The value is unused in master branch but will be used by the multi-viewport feature. (#2851) [@obfuscate]
   2742 
   2743 Other Changes:
   2744 
   2745 - InputText, Nav: Fixed Home/End key broken when activating Keyboard Navigation. (#787)
   2746 - InputText: Filter out ASCII 127 (DEL) emitted by low-level OSX layer, as we are using the Key value. (#2578)
   2747 - Layout: Fixed a couple of subtle bounding box vertical positioning issues relating to the handling of text
   2748   baseline alignment. The issue would generally manifest when laying out multiple items on a same line,
   2749   with varying heights and text baseline offsets.
   2750   Some specific examples, e.g. a button with regular frame padding followed by another item with a
   2751   multi-line label and no frame padding, such as: multi-line text, small button, tree node item, etc.
   2752   The second item was correctly offset to match text baseline, and would interact/display correctly,
   2753   but it wouldn't push the contents area boundary low enough.
   2754 - Scrollbar: Fixed an issue where scrollbars wouldn't display on the frame following a frame where
   2755   all child window contents would be culled.
   2756 - ColorPicker: Fixed SV triangle gradient to block (broken in 1.73). (#2864, #2711). [@lewa-j]
   2757 - TreeNode: Fixed combination of ImGuiTreeNodeFlags_SpanFullWidth and ImGuiTreeNodeFlags_OpenOnArrow
   2758   incorrectly locating the arrow hit position to the left of the frame. (#2451, #2438, #1897)
   2759 - TreeNode: The collapsing arrow accepts click even if modifier keys are being held, facilitating
   2760   interactions with custom multi-selections patterns. (#2886, #1896, #1861)
   2761 - TreeNode: Added IsItemToggledOpen() to explicitly query if item was just open/closed, facilitating
   2762   interactions with custom multi-selections patterns. (#1896, #1861)
   2763 - DragScalar, SliderScalar, InputScalar: Added p_ prefix to parameter that are pointers to the data
   2764   to clarify how they are used, and more comments redirecting to the demo code. (#2844)
   2765 - Error handling: Assert if user mistakenly calls End() instead of EndChild() on a child window. (#1651)
   2766 - Misc: Optimized storage of window settings data (reducing allocation count).
   2767 - Misc: Windows: Do not use _wfopen() if IMGUI_DISABLE_WIN32_FUNCTIONS is defined. (#2815)
   2768 - Misc: Windows: Disabled win32 function by default when building with UWP. (#2892, #2895)
   2769 - Misc: Using static_assert() when using C++11, instead of our own construct (avoid zealous Clang warnings).
   2770 - Misc: Added IMGUI_DISABLE_FILE_FUNCTIONS/IMGUI_DISABLE_DEFAULT_FILE_FUNCTION to nullify or disable
   2771   default implementation of ImFileXXX functions linking with fopen/fclose/fread/fwrite. (#2734)
   2772 - Docs: Improved and moved FAQ to docs/FAQ.md so it can be readable on the web. [@ButternCream, @ocornut]
   2773 - Docs: Moved misc/fonts/README.txt to docs/FONTS.txt.
   2774 - Docs: Added permanent redirect from https://www.dearimgui.com/faq to FAQ page.
   2775 - Demo: Added simple item reordering demo in Widgets -> Drag and Drop section. (#2823, #143) [@rokups]
   2776 - Metrics: Show wire-frame mesh and approximate surface area when hovering ImDrawCmd. [@ShironekoBen]
   2777 - Metrics: Expose basic details of each window key/value state storage.
   2778 - Examples: DX12: Using IDXGIDebug1::ReportLiveObjects() when DX12_ENABLE_DEBUG_LAYER is enabled.
   2779 - Examples: Emscripten: Removed BINARYEN_TRAP_MODE=clamp from Makefile which was removed in Emscripten 1.39.0
   2780   but required prior to 1.39.0, making life easier for absolutely no-one. (#2877, #2878) [@podsvirov]
   2781 - Backends: OpenGL2: Explicitly backup, setup and restore GL_TEXTURE_ENV to increase compatibility with
   2782   legacy OpenGL applications. (#3000)
   2783 - Backends: OpenGL3: Fix building with pre-3.2 GL loaders which do not expose glDrawElementsBaseVertex(),
   2784   using runtime GL version to decide if we set ImGuiBackendFlags_RendererHasVtxOffset. (#2866, #2852) [@dpilawa]
   2785 - Backends: OSX: Fix using Backspace key. (#2578, #2817, #2818) [@DiligentGraphics]
   2786 - Backends: GLFW: Previously installed user callbacks are now restored on shutdown. (#2836) [@malte-v]
   2787 - CI: Set up a bunch of continuous-integration tests using GitHub Actions. We now compile many of the example
   2788   applications on Windows, Linux, MacOS, iOS, Emscripten. Removed Travis integration. (#2865) [@rokups]
   2789 
   2790 
   2791 -----------------------------------------------------------------------
   2792  VERSION 1.73 (Released 2019-09-24)
   2793 -----------------------------------------------------------------------
   2794 
   2795 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.73
   2796 
   2797 Other Changes:
   2798 
   2799 - Nav, Scrolling: Added support for Home/End key. (#787)
   2800 - ColorEdit: Disable Hue edit when Saturation==0 instead of letting Hue values jump around.
   2801 - ColorEdit, ColorPicker: In HSV display of a RGB stored value, attempt to locally preserve Hue
   2802   when Saturation==0, which reduces accidentally lossy interactions. (#2722, #2770) [@rokups]
   2803 - ColorPicker: Made rendering aware of global style alpha of the picker can be faded out. (#2711)
   2804   Note that some elements won't accurately fade down with the same intensity, and the color wheel
   2805   when enabled will have small overlap glitches with (style.Alpha < 1.0).
   2806 - Tabs: Fixed single-tab not shrinking their width down.
   2807 - Tabs: Fixed clicking on a tab larger than tab-bar width creating a bouncing feedback loop.
   2808 - Tabs: Feed desired width (sum of unclipped tabs width) into layout system to allow for auto-resize. (#2768)
   2809   (before 1.71 tab bars fed the sum of current width which created feedback loops in certain situations).
   2810 - Tabs: Improved shrinking for large number of tabs to avoid leaving extraneous space on the right side.
   2811   Individuals tabs are given integer-rounded width and remainder is spread between tabs left-to-right.
   2812 - Columns, Separator: Fixed a bug where non-visible separators within columns would alter the next row position
   2813   differently than visible ones.
   2814 - SliderScalar: Improved assert when using U32 or U64 types with a large v_max value. (#2765) [@loicmouton]
   2815 - DragInt, DragFloat, DragScalar: Using (v_min > v_max) allows locking any edits to the value.
   2816 - DragScalar: Fixed dragging of unsigned values on ARM cpu (float to uint cast is undefined). (#2780) [@dBagrat]
   2817 - TreeNode: Added ImGuiTreeNodeFlags_SpanAvailWidth flag. (#2451, #2438, #1897) [@Melix19, @PathogenDavid]
   2818   This extends the hit-box to the right-most edge, even if the node is not framed.
   2819   (Note: this is not the default in order to allow adding other items on the same line. In the future we will
   2820   aim toward refactoring the hit-system to be front-to-back, allowing more natural overlapping of items,
   2821   and then we will be able to make this the default.)
   2822 - TreeNode: Added ImGuiTreeNodeFlags_SpanFullWidth flag. This extends the hit-box to both the left-most and
   2823   right-most edge of the working area, bypassing indentation.
   2824 - CollapsingHeader: Added support for ImGuiTreeNodeFlags_Bullet and ImGuiTreeNodeFlags_Leaf on framed nodes,
   2825   mostly for consistency. (#2159, #2160) [@goran-w]
   2826 - Selectable: Added ImGuiSelectableFlags_AllowItemOverlap flag in public api (was previously internal only).
   2827 - Style: Allow style.WindowMenuButtonPosition to be set to ImGuiDir_None to hide the collapse button. (#2634, #2639)
   2828 - Font: Better ellipsis ("...") drawing implementation. Instead of drawing three pixel-ey dots (which was glaringly
   2829   unfitting with many types of fonts) we first attempt to find a standard ellipsis glyphs within the loaded set.
   2830   Otherwise we render ellipsis using '.' from the font from where we trim excessive spacing to make it as narrow
   2831   as possible. (#2775) [@rokups]
   2832 - ImDrawList: Clarified the name of many parameters so reading the code is a little easier. (#2740)
   2833 - ImDrawListSplitter: Fixed merging channels if the last submitted draw command used a different texture. (#2506)
   2834 - Using offsetof() when available in C++11. Avoids Clang sanitizer complaining about old-style macros. (#94)
   2835 - ImVector: Added find(), find_erase(), find_erase_unsorted() helpers.
   2836 - Added a mechanism to compact/free the larger allocations of unused windows (buffers are compacted when
   2837   a window is unused for 60 seconds, as per io.ConfigWindowsMemoryCompactTimer = 60.0f). Note that memory
   2838   usage has never been reported as a problem, so this is merely a touch of overzealous luxury. (#2636)
   2839 - Documentation: Various tweaks and improvements to the README page. [@ker0chan]
   2840 - Backends: OpenGL3: Tweaked initialization code allow application calling ImGui_ImplOpenGL3_CreateFontsTexture()
   2841   before ImGui_ImplOpenGL3_NewFrame(), which sometimes can be convenient.
   2842 - Backends: OpenGL3: Attempt to automatically detect default GL loader by using __has_include. (#2798) [@o-micron]
   2843 - Backends: DX11: Fixed GSGetShader() call not passing an initialized instance count, which would
   2844   generally make the DX11 debug layer complain (bug added in 1.72).
   2845 - Backends: Vulkan: Added support for specifying multisample count. Set 'ImGui_ImplVulkan_InitInfo::MSAASamples' to
   2846    one of the VkSampleCountFlagBits values to use, default is non-multisampled as before. (#2705, #2706) [@vilya]
   2847 - Examples: OSX: Fix example_apple_opengl2/main.mm not forwarding mouse clicks and drags correctly. (#1961, #2710)
   2848   [@intonarumori, @ElectricMagic]
   2849 - Misc: Updated stb_rect_pack.h from 0.99 to 1.00 (fixes by @rygorous: off-by-1 bug in best-fit heuristic,
   2850   fix handling of rectangles too large to fit inside texture). (#2762) [@tido64]
   2851 
   2852 
   2853 -----------------------------------------------------------------------
   2854  VERSION 1.72b (Released 2019-07-31)
   2855 -----------------------------------------------------------------------
   2856 
   2857 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.72b
   2858 
   2859 Other Changes:
   2860 
   2861 - Nav, Scrolling: Fixed programmatic scroll leading to a slightly incorrect scroll offset when
   2862   the window has decorations or a menu-bar (broken in 1.71). This was mostly noticeable when
   2863   a keyboard/gamepad movement led to scrolling the view, or using e.g. SetScrollHereY() function.
   2864 - Nav: Made hovering non-MenuItem Selectable not re-assign the source item for keyboard navigation.
   2865 - Nav: Fixed an issue with NavFlattened window flag (beta) where widgets not entirely fitting
   2866   in child window (often selectables because of their protruding sides) would be not considered
   2867   as entry points to to navigate toward the child window. (#787)
   2868 
   2869 
   2870 -----------------------------------------------------------------------
   2871  VERSION 1.72 (Released 2019-07-27)
   2872 -----------------------------------------------------------------------
   2873 
   2874 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.72
   2875 
   2876 Breaking Changes:
   2877 
   2878 - Removed redirecting functions/enums names that were marked obsolete in 1.51 (June 2017):
   2879   - ImGuiCol_Column*, ImGuiSetCond_* enums.
   2880   - IsItemHoveredRect(), IsPosHoveringAnyWindow(), IsMouseHoveringAnyWindow(), IsMouseHoveringWindow() functions.
   2881   - IMGUI_ONCE_UPON_A_FRAME macro.
   2882   If you were still using the old names, read "API Breaking Changes" section of imgui.cpp to find out
   2883   the new names or equivalent features.
   2884 - Renamed ImFontAtlas::CustomRect to ImFontAtlasCustomRect. Kept redirection typedef (will obsolete).
   2885 - Removed TreeAdvanceToLabelPos() which is rarely used and only does SetCursorPosX(GetCursorPosX() + GetTreeNodeToLabelSpacing()).
   2886   Kept redirection function (will obsolete). (#581, #324)
   2887 
   2888 Other Changes:
   2889 
   2890 - Scrolling: Made mouse-wheel scrolling lock the underlying window until the mouse is moved again or
   2891   until a short delay expires (~2 seconds). This allow uninterrupted scroll even if child windows are
   2892   passing under the mouse cursor. (#2604)
   2893 - Scrolling: Made it possible for mouse wheel and navigation-triggered scrolling to override a call to
   2894   SetScrollX()/SetScrollY(), making it possible to use a simpler stateless pattern for auto-scrolling:
   2895      // (Submit items..)
   2896      if (ImGui::GetScrollY() >= ImGui::GetScrollMaxY())  // If scrolling at the already at the bottom..
   2897          ImGui::SetScrollHereY(1.0f);                    // ..make last item fully visible
   2898 - Scrolling: Added SetScrollHereX(), SetScrollFromPosX() for completeness. (#1580) [@kevreco]
   2899 - Scrolling: Mouse wheel scrolling while hovering a child window is automatically forwarded to parent window
   2900   if ScrollMax is zero on the scrolling axis.
   2901   Also still the case if ImGuiWindowFlags_NoScrollWithMouse is set (not new), but previously the forwarding
   2902   would be disabled if ImGuiWindowFlags_NoScrollbar was set on the child window, which is not the case
   2903   any more. Forwarding can still be disabled by setting ImGuiWindowFlags_NoInputs. (amend #1502, #1380).
   2904 - Window: Fixed InnerClipRect right-most coordinates using wrong padding setting (introduced in 1.71).
   2905 - Window: Fixed old SetWindowFontScale() api value from not being inherited by child window. Added
   2906   comments about the right way to scale your UI (load a font at the right side, rebuild atlas, scale style).
   2907 - Scrollbar: Avoid overlapping the opposite side when window (often a child window) is forcibly too small.
   2908 - Combo: Hide arrow when there's not enough space even for the square button.
   2909 - InputText: Testing for newly added ImGuiKey_KeyPadEnter key. (#2677, #2005) [@amc522]
   2910 - Tabs: Fixed unfocused tab bar separator color (was using ImGuiCol_Tab, should use ImGuiCol_TabUnfocusedActive).
   2911 - Columns: Fixed a regression from 1.71 where the right-side of the contents rectangle within each column
   2912   would wrongly use a WindowPadding.x instead of ItemSpacing.x like it always did. (#125, #2666)
   2913 - Columns: Made the right-most edge reaches up to the clipping rectangle (removing half of WindowPadding.x
   2914   worth of asymmetrical/extraneous padding, note that there's another half that conservatively has to offset
   2915   the right-most column, otherwise it's clipping width won't match the other columns). (#125, #2666)
   2916 - Columns: Improved honoring alignment with various values of ItemSpacing.x and WindowPadding.x. (#125, #2666)
   2917 - Columns: Made GetColumnOffset() and GetColumnWidth() behave when there's no column set, consistently with
   2918   other column functions. (#2683)
   2919 - InputTextMultiline: Fixed vertical scrolling tracking glitch.
   2920 - Word-wrapping: Fixed overzealous word-wrapping when glyph edge lands exactly on the limit. Because
   2921   of this, auto-fitting exactly unwrapped text would make it wrap. (fixes initial 1.15 commit, 78645a7d).
   2922 - Style: Attenuated default opacity of ImGuiCol_Separator in Classic and Light styles.
   2923 - Style: Added style.ColorButtonPosition (left/right, defaults to ImGuiDir_Right) to move the color button
   2924   of ColorEdit3/ColorEdit4 functions to either side of the inputs.
   2925 - IO: Added ImGuiKey_KeyPadEnter and support in various backends (previously backends would need to
   2926   specifically redirect key-pad keys to their regular counterpart). This is a temporary attenuating measure
   2927   until we actually refactor and add whole sets of keys into the ImGuiKey enum. (#2677, #2005) [@amc522]
   2928 - Misc: Made Button(), ColorButton() not trigger an "edited" event leading to IsItemDeactivatedAfterEdit()
   2929   returning true. This also effectively make ColorEdit4() not incorrect trigger IsItemDeactivatedAfterEdit()
   2930   when clicking the color button to open the picker popup. (#1875)
   2931 - Misc: Added IMGUI_DISABLE_METRICS_WINDOW imconfig.h setting to explicitly compile out ShowMetricsWindow().
   2932 - Debug Tools: Added "Metrics->Tools->Item Picker" tool which allow clicking on a widget to break in the
   2933   debugger within the item code. The tool calls IM_DEBUG_BREAK() which can be redefined in imconfig.h.
   2934 - ImDrawList: Fixed CloneOutput() helper crashing. (#1860) [@gviot]
   2935 - ImDrawList::ChannelsSplit(), ImDrawListSplitter: Fixed an issue with merging draw commands between
   2936   channel 0 and 1. (#2624)
   2937 - ImDrawListSplitter: Fixed memory leak when using low-level split api (was not affecting ImDrawList api,
   2938   also this type was added in 1.71 and not advertised as a public-facing feature).
   2939 - Fonts: binary_to_compressed_c.cpp: Display an error message if failing to open/read the input font file.
   2940 - Demo: Log, Console: Using a simpler stateless pattern for auto-scrolling.
   2941 - Demo: Widgets: Showing how to use the format parameter of Slider/Drag functions to display the name
   2942   of an enum value instead of the underlying integer value.
   2943 - Demo: Renamed the "Help" menu to "Tools" (more accurate).
   2944 - Backends: DX10/DX11: Backup, clear and restore Geometry Shader is any is bound when calling renderer.
   2945 - Backends: DX11: Clear Hull Shader, Domain Shader, Compute Shader before rendering. Not backing/restoring them.
   2946 - Backends: OSX: Disabled default native Mac clipboard copy/paste implementation in core library (added in 1.71),
   2947   because it needs application to be linked with '-framework ApplicationServices'. It can be explicitly
   2948   enabled back by using '#define IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS' in imconfig.h. Re-added
   2949   equivalent using NSPasteboard api in the imgui_impl_osx.mm experimental backend. (#2546)
   2950 - Backends: SDL2: Added ImGui_ImplSDL2_InitForD3D() function to make D3D support more visible.
   2951   (#2482, #2632) [@josiahmanson]
   2952 - Examples: Added SDL2+DirectX11 example application. (#2632, #2612, #2482) [@vincenthamm]
   2953 
   2954 
   2955 -----------------------------------------------------------------------
   2956  VERSION 1.71 (Released 2019-06-12)
   2957 -----------------------------------------------------------------------
   2958 
   2959 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.71
   2960 
   2961 Breaking Changes:
   2962 
   2963 - IO: changed AddInputCharacter(unsigned short c) signature to AddInputCharacter(unsigned int c).
   2964 - Renamed SetNextTreeNodeOpen() to SetNextItemOpen(). Kept inline redirection function (will obsolete).
   2965 - Window: rendering of child windows outer decorations (e.g. bg color, border, scrollbars) is now
   2966   performed as part of their parent window, avoiding the creation of an extraneous draw commands.
   2967   If you have overlapping child windows with decorations, and relied on their relative z-order to be
   2968   mapped to submission their order, this will affect your rendering. The optimization is disabled
   2969   if the parent window has no visual output because it appears to be the most common situation leading
   2970   to the creation of overlapping child windows. Please reach out if you are affected by this change!
   2971 
   2972 Other Changes:
   2973 
   2974 - Window: clarified behavior of SetNextWindowContentSize(). Content size is defined as the size available
   2975   after removal of WindowPadding on each sides. So SetNextWindowContentSize(ImVec2(100,100)) + auto-resize
   2976   will always allow submitting a 100x100 item without creating a scrollbar, regarding of WindowPadding.
   2977   The exact meaning of ContentSize for decorated windows was previously ill-defined.
   2978 - Window: Fixed auto-resize with AlwaysVerticalScrollbar or AlwaysHorizontalScrollbar flags.
   2979 - Window: Fixed one case where auto-resize by double-clicking the resize grip would make either scrollbar
   2980   appear for a single frame after the resize.
   2981 - Separator: Revert 1.70 "Declare its thickness (1.0f) to the layout" change. It's not incorrect
   2982   but it breaks existing some layout patterns. Will return back to it when we expose Separator flags.
   2983 - Fixed InputScalar, InputScalarN, SliderScalarN, DragScalarN with non-visible label from inserting
   2984   style.ItemInnerSpacing.x worth of trailing spacing.
   2985 - Fixed InputFloatX, SliderFloatX, DragFloatX functions erroneously reporting IsItemEdited() multiple
   2986   times when the text input doesn't match the formatted output value (e.g. input "1" shows "1.000").
   2987   It wasn't much of a problem because we typically use the return value instead of IsItemEdited() here.
   2988 - Fixed uses of IsItemDeactivated(), IsItemDeactivatedAfterEdit() on multi-components widgets and
   2989   after EndGroup(). (#2550, #1875)
   2990 - Fixed crash when appending with BeginMainMenuBar() more than once and no other window are showing. (#2567)
   2991 - ColorEdit: Fixed the color picker popup only displaying inputs as HSV instead of showing multiple
   2992   options. (#2587, broken in 1.69 by #2384).
   2993 - CollapsingHeader: Better clipping when a close button is enabled and it overlaps the label. (#600)
   2994 - Scrollbar: Minor bounding box adjustment to cope with various border size.
   2995 - Scrollbar, Style: Changed default style.ScrollbarSize from 16 to 14.
   2996 - Combo: Fixed rounding not applying with the ImGuiComboFlags_NoArrowButton flag. (#2607) [@DucaRii]
   2997 - Nav: Fixed gamepad/keyboard moving of window affecting contents size incorrectly, sometimes leading
   2998   to scrollbars appearing during the movement.
   2999 - Nav: Fixed rare crash when e.g. releasing Alt-key while focusing a window with a menu at the same
   3000   frame as clearing the focus. This was in most noticeable in backends such as Glfw and SDL which
   3001   emits key release events when focusing another viewport, leading to Alt+clicking on void on another
   3002   viewport triggering the issue. (#2609)
   3003 - TreeNode, CollapsingHeader: Fixed highlight frame not covering horizontal area fully when using
   3004   horizontal scrolling. (#2211, #2579)
   3005 - Tabs: Fixed BeginTabBar() within a window with horizontal scrolling from creating a feedback
   3006   loop with the horizontal contents size.
   3007 - Columns: Fixed Columns() within a window with horizontal scrolling from not covering the full
   3008   horizontal area (previously only worked with an explicit contents size). (#125)
   3009 - Columns: Fixed Separator from creating an extraneous draw command. (#125)
   3010 - Columns: Fixed Selectable with SpanAllColumns flag from creating an extraneous draw command. (#125)
   3011 - Style: Added style.WindowMenuButtonPosition (left/right, defaults to ImGuiDir_Left) to move the
   3012   collapsing/docking button to the other side of the title bar.
   3013 - Style: Made window close button cross slightly smaller.
   3014 - Log/Capture: Fixed BeginTabItem() label not being included in a text log/capture.
   3015 - ImDrawList: Added ImDrawCmd::VtxOffset value to support large meshes (64k+ vertices) using 16-bit indices.
   3016   The renderer backend needs to set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' to enable
   3017   this, and honor the ImDrawCmd::VtxOffset field. Otherwise the value will always be zero. (#2591)
   3018   This has the advantage of preserving smaller index buffers and allowing to execute on hardware that do not
   3019   support 32-bit indices. Most examples backends have been modified to support the VtxOffset field.
   3020 - ImDrawList: Added ImDrawCmd::IdxOffset value, equivalent to summing element count for each draw command.
   3021   This is provided for convenience and consistency with VtxOffset. (#2591)
   3022 - ImDrawCallback: Allow to override the signature of ImDrawCallback by #define-ing it. This is meant to
   3023   facilitate custom rendering backends passing local render-specific data to the draw callback.
   3024 - ImFontAtlas: FreeType: Added RasterizerFlags::Monochrome flag to disable font anti-aliasing. Combine
   3025   with RasterizerFlags::MonoHinting for best results. (#2545) [@HolyBlackCat]
   3026 - ImFontGlyphRangesBuilder: Fixed unnecessarily over-sized buffer, which incidentally was also not
   3027   fully cleared. Fixed edge-case overflow when adding character 0xFFFF. (#2568). [@NIKE3500]
   3028 - Demo: Added full "Dear ImGui" prefix to the title of "Dear ImGui Demo" and "Dear ImGui Metrics" windows.
   3029 - Backends: Add native Mac clipboard copy/paste default implementation in core library to match what we are
   3030   dealing with Win32, and to facilitate integration in custom engines. (#2546) [@andrewwillmott]
   3031 - Backends: OSX: imgui_impl_osx: Added mouse cursor support. (#2585, #1873) [@actboy168]
   3032 - Examples/Backends: DirectX9/10/11/12, Metal, Vulkan, OpenGL3 (Desktop GL only): Added support for large meshes
   3033   (64k+ vertices) with 16-bit indices, enable 'ImGuiBackendFlags_RendererHasVtxOffset' in those backends. (#2591)
   3034 - Examples/Backends: Don't filter characters under 0x10000 before calling io.AddInputCharacter(),
   3035   the filtering is done in io.AddInputCharacter() itself. This is in prevision for fuller Unicode
   3036   support. (#2538, #2541)
   3037 
   3038 
   3039 -----------------------------------------------------------------------
   3040  VERSION 1.70 (Released 2019-05-06)
   3041 -----------------------------------------------------------------------
   3042 
   3043 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.70
   3044 
   3045 Breaking Changes:
   3046 
   3047 - ImDrawList: Improved algorithm for mitre joints on thick lines, preserving correct thickness
   3048   up to 90 degrees angles (e.g. rectangles). If you have custom rendering using thick lines,
   3049   they will appear a little thicker now. (#2518) [@rmitton]
   3050 - Obsoleted GetContentRegionAvailWidth(), use GetContentRegionAvail().x instead.
   3051   Kept inline redirection function.
   3052 - Examples: Vulkan: Added MinImageCount/ImageCount fields in ImGui_ImplVulkan_InitInfo, required
   3053   during initialization to specify the number of in-flight image requested by swap chains.
   3054   (was previously a hard #define IMGUI_VK_QUEUED_FRAMES 2). (#2071, #1677) [@nathanvoglsam]
   3055 - Examples: Vulkan: Tidying up the demo/internals helpers (most engine/app should not rely
   3056   on them but it is possible you have!).
   3057 
   3058 Other Changes:
   3059 
   3060 - ImDrawList: Added ImDrawCallback_ResetRenderState, a special ImDrawList::AddCallback() value
   3061   to request the renderer backend to reset its render state. (#2037, #1639, #2452)
   3062   Examples: Added support for ImDrawCallback_ResetRenderState in all renderer backends. Each
   3063   renderer code setting up initial render state has been moved to a function so it could be
   3064   called at the start of rendering and when a ResetRenderState is requested. [@ocornut, @bear24rw]
   3065 - InputText: Fixed selection background rendering one frame after the cursor movement when
   3066   first transitioning from no-selection to has-selection. (Bug in 1.69) (#2436) [@Nazg-Gul]
   3067 - InputText: Work-around for buggy standard libraries where isprint('\t') returns true. (#2467, #1336)
   3068 - InputText: Fixed ImGuiInputTextFlags_AllowTabInput leading to two tabs characters being inserted
   3069   if the backend provided both Key and Character input. (#2467, #1336)
   3070 - Layout: Added SetNextItemWidth() helper to avoid using PushItemWidth/PopItemWidth() for single items.
   3071   Note that SetNextItemWidth() currently only affect the same subset of items as PushItemWidth(),
   3072   generally referred to as the large framed+labeled items. Because the new SetNextItemWidth()
   3073   function is explicit we may later extend its effect to more items.
   3074 - Layout: Fixed PushItemWidth(-width) for right-side alignment laying out some items (button, listbox, etc.)
   3075   with negative sizes if the 'width' argument was smaller than the available width at the time of item
   3076   submission.
   3077 - Window: Fixed window with the AlwaysAutoResize flag unnecessarily extending their hovering boundaries
   3078   by a few pixels (this is used to facilitate resizing from borders when available for a given window).
   3079   One of the noticeable minor side effect was that navigating menus would have had a tendency to disable
   3080   highlight from parent menu items earlier than necessary while approaching the child menu.
   3081 - Window: Close button is horizontally aligned with style.FramePadding.x.
   3082 - Window: Fixed contents region being off by WindowBorderSize amount on the right when scrollbar is active.
   3083 - Window: Fixed SetNextWindowSizeConstraints() with non-rounded positions making windows drift. (#2067, #2530)
   3084 - Popups: Closing a popup restores the focused/nav window in place at the time of the popup opening,
   3085   instead of restoring the window that was in the window stack at the time of the OpenPopup call. (#2517)
   3086   Among other things, this allows opening a popup while no window are focused, and pressing Escape to
   3087   clear the focus again.
   3088 - Popups: Fixed right-click from closing all popups instead of aiming at the hovered popup level
   3089   (regression in 1.67).
   3090 - Selectable: With ImGuiSelectableFlags_AllowDoubleClick doesn't return true on the mouse button release
   3091   following the double-click. Only first mouse release + second mouse down (double-click) returns true.
   3092   Likewise for internal ButtonBehavior() with both _PressedOnClickRelease | _PressedOnDoubleClick. (#2503)
   3093 - GetMouseDragDelta(): also returns the delta on the mouse button released frame. (#2419)
   3094 - GetMouseDragDelta(): verify that mouse positions are valid otherwise returns zero.
   3095 - Inputs: Also add support for horizontal scroll with Shift+Mouse Wheel. (#2424, #1463) [@LucaRood]
   3096 - PlotLines, PlotHistogram: Ignore NaN values when calculating min/max bounds. (#2485)
   3097 - Columns: Fixed boundary of clipping being off by 1 pixel within the left column. (#125)
   3098 - Separator: Declare its thickness (1.0f) to the layout, making items around separator more symmetrical.
   3099 - Combo, Slider, Scrollbar: Improve rendering in situation when there's only a few pixels available (<3 pixels).
   3100 - Nav: Fixed Drag/Slider functions going into text input mode when keyboard CTRL is held while pressing NavActivate.
   3101 - Drag and Drop: Fixed drag source with ImGuiDragDropFlags_SourceAllowNullID and null ID from receiving click
   3102   regardless of being covered by another window (it didn't honor correct hovering rules). (#2521)
   3103 - ImDrawList: Improved algorithm for mitre joints on thick lines, preserving correct thickness up to 90 degrees
   3104   angles, also faster to output. (#2518) [@rmitton]
   3105 - Misc: Added IM_MALLOC/IM_FREE macros mimicking IM_NEW/IM_DELETE so user doesn't need to revert
   3106   to using the ImGui::MemAlloc()/MemFree() calls directly.
   3107 - Misc: Made IMGUI_CHECKVERSION() macro also check for matching size of ImDrawIdx.
   3108 - Metrics: Added "Show windows rectangles" tool to visualize the different rectangles.
   3109 - Demo: Improved trees in columns demo.
   3110 - Examples: OpenGL: Added a test GL call + comments in ImGui_ImplOpenGL3_Init() to detect uninitialized
   3111   GL function loaders early, and help users understand what they are missing. (#2421)
   3112 - Examples: SDL: Added support for SDL_GameController gamepads (enable with ImGuiConfigFlags_NavEnableGamepad). (#2509) [@DJLink]
   3113 - Examples: Emscripten: Added Emscripten+SDL+GLES2 example. (#2494, #2492, #2351, #336) [@nicolasnoble, @redblobgames]
   3114 - Examples: Metal: Added Glfw+Metal example. (#2527) [@bear24rw]
   3115 - Examples: OpenGL3: Minor tweaks + not calling glBindBuffer more than necessary in the render loop.
   3116 - Examples: Vulkan: Fixed in-flight buffers issues when using multi-viewports. (#2461, #2348, #2378, #2097)
   3117 - Examples: Vulkan: Added missing support for 32-bit indices (#define ImDrawIdx unsigned int).
   3118 - Examples: Vulkan: Avoid passing negative coordinates to vkCmdSetScissor, which debug validation layers do not like.
   3119 - Examples: Vulkan: Added ImGui_ImplVulkan_SetMinImageCount() to change min image count at runtime. (#2071) [@nathanvoglsam]
   3120 - Examples: DirectX9: Fixed erroneous assert in ImGui_ImplDX9_InvalidateDeviceObjects(). (#2454)
   3121 - Examples: DirectX10/11/12, Allegro, Marmalade: Render functions early out when display size is zero (minimized). (#2496)
   3122 - Examples: GLUT: Fixed existing FreeGLUT example to work with regular GLUT. (#2465) [@andrewwillmott]
   3123 - Examples: GLUT: Renamed imgui_impl_freeglut.cpp/.h to imgui_impl_glut.cpp/.h. (#2465) [@andrewwillmott]
   3124 - Examples: GLUT: Made io.DeltaTime always > 0. (#2430)
   3125 - Examples: Visual Studio: Updated default platform toolset+sdk in vcproj files from v100+sdk7 (vs2010)
   3126   to v110+sdk8 (vs2012). This is mostly so we can remove reliance on DXSDK_DIR for the DX10/DX11 example,
   3127   which if existing and when switching to recent SDK ends up conflicting and creating warnings.
   3128 
   3129 
   3130 -----------------------------------------------------------------------
   3131  VERSION 1.69 (Released 2019-03-13)
   3132 -----------------------------------------------------------------------
   3133 
   3134 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.69
   3135 
   3136 Breaking Changes:
   3137 
   3138 - Renamed ColorEdit/ColorPicker's ImGuiColorEditFlags_RGB/_HSV/_HEX flags to respectively
   3139   ImGuiColorEditFlags_DisplayRGB/_DisplayHSV/_DisplayHex. This is because the addition of
   3140   new flag ImGuiColorEditFlags_InputHSV makes the earlier one ambiguous.
   3141   Kept redirection enum values (will obsolete). (#2384) [@haldean]
   3142 - Renamed GetOverlayDrawList() to GetForegroundDrawList(). Kept redirection function (will obsolete). (#2391)
   3143 
   3144 Other Changes:
   3145 
   3146 - Added GetBackgroundDrawList() helper to quickly get access to a ImDrawList that will be rendered
   3147   behind every other windows. (#2391, #545)
   3148 - DragScalar, InputScalar, SliderScalar: Added support for u8/s8/u16/s16 data types (ImGuiDataType_S8, etc.)
   3149   We are reusing function instances of larger types to reduce code size. (#643, #320, #708, #1011)
   3150 - Added InputTextWithHint() to display a description/hint in the text box when no text
   3151   has been entered. (#2400) [@Organic-Code, @ocornut]
   3152 - Nav: Fixed a tap on AltGR (e.g. German keyboard) from navigating to the menu layer.
   3153 - Nav: Fixed Ctrl+Tab keeping active InputText() of a previous window active after the switch. (#2380)
   3154 - Fixed IsItemDeactivated()/IsItemDeactivatedAfterEdit() from not correctly returning true
   3155   when tabbing out of a focusable widget (Input/Slider/Drag) in most situations. (#2215, #1875)
   3156 - InputInt, InputFloat, InputScalar: Fix to keep the label of the +/- buttons centered when
   3157   style.FramePadding.x is abnormally larger than style.FramePadding.y. Since the buttons are
   3158   meant to be square (to align with e.g. color button) we always use FramePadding.y. (#2367)
   3159 - InputInt, InputScalar: +/- buttons now respects the natural type limits instead of
   3160   overflowing or underflowing the value.
   3161 - InputText: Fixed an edge case crash that would happen if another widget sharing the same ID
   3162   is being swapped with an InputText that has yet to be activated.
   3163 - InputText: Fixed various display corruption related to swapping the underlying buffer while
   3164   a input widget is active (both for writable and read-only paths). Often they would manifest
   3165   when manipulating the scrollbar of a multi-line input text.
   3166 - ColorEdit, ColorPicker, ColorButton: Added ImGuiColorEditFlags_InputHSV to manipulate color
   3167   values encoded as HSV (in order to avoid HSV<>RGB round trips and associated singularities).
   3168   (#2383, #2384) [@haldean]
   3169 - ColorPicker: Fixed a bug/assertion when displaying a color picker in a collapsed window
   3170   while dragging its title bar. (#2389)
   3171 - ColorEdit: Fixed tooltip not honoring the ImGuiColorEditFlags_NoAlpha contract of never
   3172   reading the 4th float in the array (value was read and discarded). (#2384) [@haldean]
   3173 - MenuItem, Selectable: Fixed disabled widget interfering with navigation (fix c2db7f63 in 1.67).
   3174 - Tabs: Fixed a crash when using many BeginTabBar() recursively (didn't affect docking). (#2371)
   3175 - Tabs: Added extra mis-usage error recovery. Past the assert, common mis-usage don't lead to
   3176   hard crashes any more, facilitating integration with scripting languages. (#1651)
   3177 - Tabs: Fixed ImGuiTabItemFlags_SetSelected being ignored if the tab is not visible (with
   3178   scrolling policy enabled) or if is currently appearing.
   3179 - Tabs: Fixed Tab tooltip code making drag and drop tooltip disappear during the frame where
   3180   the drag payload activate a tab.
   3181 - Tabs: Reworked scrolling policy (when ImGuiTabBarFlags_FittingPolicyScroll is set) to
   3182   teleport the view when aiming at a tab far away the visible section, and otherwise accelerate
   3183   the scrolling speed to cap the scrolling time to 0.3 seconds.
   3184 - Text: Fixed large Text/TextUnformatted calls not feeding their size into layout when starting
   3185   below the lower point of the current clipping rectangle. This bug has been there since v1.0!
   3186   It was hardly noticeable but would affect the scrolling range, which in turn would affect
   3187   some scrolling request functions when called during the appearing frame of a window.
   3188 - Plot: Fixed divide-by-zero in PlotLines() when passing a count of 1. (#2387) [@Lectem]
   3189 - Log/Capture: Fixed LogXXX functions emitting extraneous leading carriage return.
   3190 - Log/Capture: Fixed an issue when empty string on a new line would not emit a carriage return.
   3191 - Log/Capture: Fixed LogXXX functions 'auto_open_depth' parameter being treated as an absolute
   3192   tree depth instead of a relative one.
   3193 - Log/Capture: Fixed CollapsingHeader trailing ascii representation being "#" instead of "##".
   3194 - ImFont: Added GetGlyphRangesVietnamese() helper. (#2403)
   3195 - Misc: Asserting in NewFrame() if style.WindowMinSize is zero or smaller than (1.0f,1.0f).
   3196 - Demo: Using GetBackgroundDrawList() and GetForegroundDrawList() in "Custom Rendering" demo.
   3197 - Demo: InputText: Demonstrating use of ImGuiInputTextFlags_CallbackResize. (#2006, #1443, #1008).
   3198 - Examples: GLFW, SDL: Preserve DisplayFramebufferScale when main viewport is minimized.
   3199   (This is particularly useful for the viewport branch because we are not supporting per-viewport
   3200   frame-buffer scale. It fixes windows not refreshing when main viewport is minimized.) (#2416)
   3201 - Examples: OpenGL: Fix to be able to run on ES 2.0 / WebGL 1.0. [@rmitton, @gabrielcuvillier]
   3202 - Examples: OpenGL: Fix for OSX not supporting OpenGL 4.5, we don't try to read GL_CLIP_ORIGIN
   3203   even if the OpenGL headers/loader happens to define the value. (#2366, #2186)
   3204 - Examples: Allegro: Added support for touch events (emulating mouse). (#2219) [@dos1]
   3205 - Examples: DirectX9: Minor changes to match the other DirectX examples more closely. (#2394)
   3206 
   3207 
   3208 -----------------------------------------------------------------------
   3209  VERSION 1.68 (Released 2019-02-19)
   3210 -----------------------------------------------------------------------
   3211 
   3212 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.68
   3213 
   3214 Breaking Changes:
   3215 
   3216 - Removed io.DisplayVisibleMin/DisplayVisibleMax (which were marked obsolete and removed from viewport/docking branch already).
   3217 - Made it illegal/assert when io.DisplayTime == 0.0f (with an exception for the first frame).
   3218   If for some reason your time step calculation gives you a zero value, replace it with a arbitrarily small value!
   3219 
   3220 Other Changes:
   3221 
   3222 - Added .editorconfig file for text editors to standardize using spaces. (#2038) [@kudaba]
   3223 - ImDrawData: Added FramebufferScale field (currently a copy of the value from io.DisplayFramebufferScale).
   3224   This is to allow render functions being written without pulling any data from ImGuiIO, allowing incoming
   3225   multi-viewport feature to behave on Retina display and with multiple displays.
   3226   If you are not using a custom backend, please update your render function code ahead of time,
   3227   and use draw_data->FramebufferScale instead of io.DisplayFramebufferScale. (#2306, #1676)
   3228 - Added IsItemActivated() as an extension to the IsItemDeactivated/IsItemDeactivatedAfterEdit functions
   3229   which are useful to implement variety of undo patterns. (#820, #956, #1875)
   3230 - InputText: Fixed a bug where ESCAPE would not restore the initial value in all situations. (#2321) [@relick]
   3231 - InputText: Fixed a bug where ESCAPE would be first captured by the Keyboard Navigation code. (#2321, #787)
   3232 - InputText: Fixed redo buffer exhaustion handling (rare) which could corrupt the undo character buffer. (#2333)
   3233   The way the redo/undo buffers work would have made it generally unnoticeable to the user.
   3234 - Fixed range-version of PushID() and GetID() not honoring the ### operator to restart from the seed value.
   3235 - Fixed CloseCurrentPopup() on a child-menu of a modal incorrectly closing the modal. (#2308)
   3236 - Tabs: Added ImGuiTabBarFlags_TabListPopupButton flag to show a popup button on manual tab bars. (#261, #351)
   3237 - Tabs: Removed ImGuiTabBarFlags_NoTabListPopupButton which was available in 1.67 but actually had zero use.
   3238 - Tabs: Fixed a minor clipping glitch when changing style's FramePadding from frame to frame.
   3239 - Tabs: Fixed border (when enabled) so it is aligned correctly mid-pixel and appears as bright as other borders.
   3240 - Style, Selectable: Added ImGuiStyle::SelectableTextAlign and ImGuiStyleVar_SelectableTextAlign. (#2347) [@haldean]
   3241 - Menus: Tweaked horizontal overlap between parent and child menu (to help convey relative depth)
   3242   from using style.ItemSpacing.x to style.ItemInnerSpacing.x, the later being expected to be smaller. (#1086)
   3243 - RadioButton: Fixed label horizontal alignment to precisely match Checkbox().
   3244 - Window: When resizing from an edge, the border is more visible and better follow the rounded corners.
   3245 - Window: Fixed initial width of collapsed windows not taking account of contents width (broken in 1.67). (#2336, #176)
   3246 - Scrollbar: Fade out and disable interaction when too small, in order to facilitate using the resize grab on very
   3247   small window, as well as reducing visual noise/overlap.
   3248 - ListBox: Better optimized when clipped / non-visible.
   3249 - InputTextMultiline: Better optimized when clipped / non-visible.
   3250 - Font: Fixed high-level ImGui::CalcTextSize() used by most widgets from erroneously subtracting 1.0f*scale to
   3251   calculated text width. Among noticeable side-effects, it would make sequences of repeated Text/SameLine calls
   3252   not align the same as a single call, and create mismatch between high-level size calculation and those performed
   3253   with the lower-level ImDrawList api. (#792) [@SlNPacifist]
   3254 - Font: Fixed building atlas when specifying duplicate/overlapping ranges within a same font. (#2353, #2233)
   3255 - ImDrawList: Fixed AddCircle(), AddCircleFilled() angle step being off, which was visible when drawing a "circle"
   3256   with a small number of segments (e.g. an hexagon). (#2287) [@baktery]
   3257 - ImGuiTextBuffer: Added append() function (unformatted).
   3258 - ImFontAtlas: Added 0x2000-0x206F general punctuation range to default ChineseFull/ChineseSimplifiedCommon ranges. (#2093)
   3259 - ImFontAtlas: FreeType: Added support for imgui allocators + custom FreeType only SetAllocatorFunctions. (#2285) [@Vuhdo]
   3260 - ImFontAtlas: FreeType: Fixed using imgui_freetype.cpp in unity builds. (#2302)
   3261 - Demo: Fixed "Log" demo not initializing properly, leading to the first line not showing before a Clear. (#2318) [@bluescan]
   3262 - Demo: Added "Auto-scroll" option in Log/Console demos. (#2300) [@nicolasnoble, @ocornut]
   3263 - Examples: Metal, OpenGL2, OpenGL3, Vulkan: Fixed offsetting of clipping rectangle with ImDrawData::DisplayPos != (0,0)
   3264   when the display frame-buffer scale scale is not (1,1). While this doesn't make a difference when using master branch,
   3265   this is effectively fixing support for multi-viewport with Mac Retina Displays on those examples. (#2306) [@rasky, @ocornut]
   3266   Also using ImDrawData::FramebufferScale instead of io.DisplayFramebufferScale.
   3267 - Examples: Clarified the use the ImDrawData::DisplayPos to offset clipping rectangles.
   3268 - Examples: Win32: Using GetForegroundWindow()+IsChild() instead of GetActiveWindow() to be compatible with windows created
   3269   in a different thread or parent. (#1951, #2087, #2156, #2232) [many people]
   3270 - Examples: SDL: Using the SDL_WINDOW_ALLOW_HIGHDPI flag. (#2306, #1676) [@rasky]
   3271 - Examples: Win32: Added support for XInput gamepads (if ImGuiConfigFlags_NavEnableGamepad is enabled).
   3272 - Examples: Win32: Added support for mouse buttons 4 and 5 via WM_XBUTTON* messages. (#2264)
   3273 - Examples: DirectX9: Explicitly disable fog (D3DRS_FOGENABLE) before drawing in case user state has it set. (#2288, #2230)
   3274 - Examples: OpenGL2: Added #define GL_SILENCE_DEPRECATION to cope with newer XCode warnings.
   3275 - Examples: OpenGL3: Using GLSL 4.10 shaders for any GLSL version over 410 (e.g. 430, 450). (#2329) [@BrutPitt]
   3276 
   3277 
   3278 -----------------------------------------------------------------------
   3279  VERSION 1.67 (Released 2019-01-14)
   3280 -----------------------------------------------------------------------
   3281 
   3282 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.67
   3283 
   3284 Breaking Changes:
   3285 
   3286 - Made it illegal to call Begin("") with an empty string. This somehow half-worked before but had various undesirable
   3287   side-effect because the window would have ID zero. In particular it is causing problems in viewport/docking branches.
   3288 - Renamed io.ConfigResizeWindowsFromEdges to io.ConfigWindowsResizeFromEdges and removed its [Beta] mark.
   3289   The addition of new configuration options in the Docking branch is pushing for a little reorganization of those names.
   3290 - Renamed ImFontAtlas::GlyphRangesBuilder to ImFontGlyphRangesBuilder. Kept redirection typedef (will obsolete).
   3291 
   3292 Other Changes:
   3293 - Added BETA api for Tab Bar/Tabs widgets: (#261, #351)
   3294   - Added BeginTabBar(), EndTabBar(), BeginTabItem(), EndTabItem(), SetTabItemClosed() API.
   3295   - Added ImGuiTabBarFlags flags for BeginTabBar().
   3296   - Added ImGuiTabItemFlags flags for BeginTabItem().
   3297   - Style: Added ImGuiCol_Tab, ImGuiCol_TabHovered, ImGuiCol_TabActive, ImGuiCol_TabUnfocused, ImGuiCol_TabUnfocusedActive colors.
   3298   - Demo: Added Layout->Tabs demo code.
   3299   - Demo: Added "Documents" example app showcasing possible use for tabs.
   3300   This feature was merged from the Docking branch in order to allow the use of regular tabs in your code.
   3301   (It does not provide the docking/splitting/merging of windows available in the Docking branch)
   3302 - Added ImGuiWindowFlags_UnsavedDocument window flag to append '*' to title without altering the ID, as a convenience
   3303   to avoid using the ### operator. In the Docking branch this also has an effect on tab closing behavior.
   3304 - Window, Focus, Popup: Fixed an issue where closing a popup by clicking another window with the _NoMove flag would refocus
   3305   the parent window of the popup instead of the newly clicked window.
   3306 - Window: Contents size is preserved while a window collapsed. Fix auto-resizing window losing their size for one frame when uncollapsed.
   3307 - Window: Contents size is preserved while a window contents is hidden (unless it is hidden for resizing purpose).
   3308 - Window: Resizing windows from edge is now enabled by default (io.ConfigWindowsResizeFromEdges=true). Note that
   3309   it only works _if_ the backend sets ImGuiBackendFlags_HasMouseCursors, which the standard backends do.
   3310 - Window: Added io.ConfigWindowsMoveFromTitleBarOnly option. This is ignored by window with no title bars (often popups).
   3311   This affects clamping window within the visible area: with this option enabled title bars need to be visible. (#899)
   3312 - Window: Fixed using SetNextWindowPos() on a child window (which wasn't really documented) position the cursor as expected
   3313   in the parent window, so there is no mismatch between the layout in parent and the position of the child window.
   3314 - InputFloat: When using ImGuiInputTextFlags_ReadOnly the step buttons are disabled. (#2257)
   3315 - DragFloat: Fixed broken mouse direction change with power!=1.0. (#2174, #2206) [@Joshhua5]
   3316 - Nav: Fixed an keyboard issue where holding Activate/Space for longer than two frames on a button would unnecessary
   3317   keep the focus on the parent window, which could steal it from newly appearing windows. (#787)
   3318 - Nav: Fixed animated window titles from being updated when displayed in the CTRL+Tab list. (#787)
   3319 - Error recovery: Extraneous/undesired calls to End() are now being caught by an assert in the End() function closer
   3320   to the user call site (instead of being reported in EndFrame). Past the assert, they don't lead to crashes any more. (#1651)
   3321   Missing calls to End(), past the assert, should not lead to crashes or to the fallback Debug window appearing on screen.
   3322   Those changes makes it easier to integrate dear imgui with a scripting language allowing, given asserts are redirected
   3323   into e.g. an error log and stopping the script execution.
   3324 - ImFontAtlas: Stb and FreeType: Atlas width is now properly based on total surface rather than glyph count (unless overridden with TexDesiredWidth).
   3325 - ImFontAtlas: Stb and FreeType: Fixed atlas builder so missing glyphs won't influence the atlas texture width. (#2233)
   3326 - ImFontAtlas: Stb and FreeType: Fixed atlas builder so duplicate glyphs (when merging fonts) won't be included in the rasterized atlas.
   3327 - ImFontAtlas: FreeType: Fixed abnormally high atlas height.
   3328 - ImFontAtlas: FreeType: Fixed support for any values of TexGlyphPadding (not just only 1).
   3329 - ImDrawList: Optimized some of the functions for performance of debug builds where non-inline function call cost are non-negligible.
   3330   (Our test UI scene on VS2015 Debug Win64 with /RTC1 went ~5.9 ms -> ~4.9 ms. In Release same scene stays at ~0.3 ms.)
   3331 - IO: Added BackendPlatformUserData, BackendRendererUserData, BackendLanguageUserData void* for storage use by backends.
   3332 - IO: Renamed InputCharacters[], marked internal as was always intended. Please don't access directly, and use AddInputCharacter() instead!
   3333 - IO: AddInputCharacter() goes into a queue which can receive as many characters as needed during the frame. This is useful
   3334   for automation to not have an upper limit on typing speed. Will later transition key/mouse to use the event queue later.
   3335 - Style: Tweaked default value of style.DisplayWindowPadding from (20,20) to (19,19) so the default style as a value
   3336   which is the same as the title bar height.
   3337 - Demo: "Simple Layout" and "Style Editor" are now using tabs.
   3338 - Demo: Added a few more things under "Child windows" (changing ImGuiCol_ChildBg, positioning child, using IsItemHovered after a child).
   3339 - Examples: DirectX10/11/12: Made imgui_impl_dx10/dx11/dx12.cpp link d3dcompiler.lib from the .cpp file to ease integration.
   3340 - Examples: Allegro 5: Properly destroy globals on shutdown to allow for restart. (#2262) [@DomRe]
   3341 
   3342 
   3343 -----------------------------------------------------------------------
   3344  VERSION 1.66b (Released 2018-12-01)
   3345 -----------------------------------------------------------------------
   3346 
   3347 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.66b
   3348 
   3349 Other Changes:
   3350 
   3351 - Fixed a text rendering/clipping bug introduced in 1.66 (on 2018-10-12, commit ede3a3b9) that affect single ImDrawList::AddText()
   3352   calls with single strings larger than 10k. Text/TextUnformatted() calls were not affected, but e.g. InputText() was. [@pdoane]
   3353 - When the focused window become inactive don't restore focus to a window with the ImGuiWindowFlags_NoInputs flag. (#2213) [@zzzyap]
   3354 - Separator: Fixed Separator() outputting an extraneous empty line when captured into clipboard/text/file.
   3355 - Demo: Added ShowAboutWindow() call, previously was only accessible from the demo window.
   3356 - Demo: ShowAboutWindow() now display various Build/Config Information (compiler, os, etc.) that can easily be copied into bug reports.
   3357 - Fixed build issue with osxcross and macOS. (#2218) [@dos1]
   3358 - Examples: Setting up 'io.BackendPlatformName'/'io.BackendRendererName' fields to the current backend can be displayed in the About window.
   3359 - Examples: SDL: changed the signature of ImGui_ImplSDL2_ProcessEvent() to use a const SDL_Event*. (#2187)
   3360 
   3361 
   3362 -----------------------------------------------------------------------
   3363  VERSION 1.66 (Released 2018-11-22)
   3364 -----------------------------------------------------------------------
   3365 
   3366 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.66
   3367 
   3368 Breaking Changes:
   3369 
   3370 - Renamed SetScrollHere() to SetScrollHereY(). Kept redirection function (will obsolete).
   3371 - Renamed misc/stl/imgui_stl.* to misc/cpp/imgui_stdlib.* in prevision for other C++ helper files. (#2035, #2096)
   3372 
   3373 Other Changes:
   3374 
   3375 - Fixed calling SetNextWindowSize()/SetWindowSize() with non-integer values leading to
   3376   accidental alteration of window position. We now round the provided size. (#2067)
   3377 - Fixed calling DestroyContext() always saving .ini data with the current context instead
   3378   of the supplied context pointer. (#2066)
   3379 - Nav, Focus: Fixed ImGuiWindowFlags_NoBringToFrontOnFocus windows not being restoring focus
   3380   properly after the main menu bar or last focused window is deactivated.
   3381 - Nav: Fixed an assert in certain circumstance (mostly when using popups) when mouse positions stop being valid. (#2168)
   3382 - Nav: Fixed explicit directional input not re-highlighting current nav item if there is a single item in the window
   3383   and highlight has been previously disabled by the mouse. (#787)
   3384 - DragFloat: Fixed a situation where dragging with value rounding enabled or with a power curve
   3385   erroneously wrapped the value to one of the min/max edge. (#2024, #708, #320, #2075).
   3386 - DragFloat: Disabled using power curve when one edge is FLT_MAX (broken in 1.61). (#2024)
   3387 - DragFloat: Disabled setting a default drag speed when one edge is FLT_MAX. (#2024)
   3388 - SliderAngle: Added optional format argument to alter precision or localize the string. (#2150) [@podsvirov]
   3389 - Window: Resizing from edges (with io.ConfigResizeWindowsFromEdges Beta flag) extends the hit region
   3390   of root floating windows outside the window, making it easier to resize windows. Resize grips are also
   3391   extended accordingly so there are no discontinuity when hovering between borders and corners. (#1495, #822)
   3392 - Window: Added ImGuiWindowFlags_NoBackground flag to avoid rendering window background. This is mostly to allow
   3393   the creation of new flag combinations, as we could already use SetNextWindowBgAlpha(0.0f). (#1660) [@biojppm, @ocornut]
   3394 - Window: Added ImGuiWindowFlags_NoDecoration helper flag which is essentially NoTitleBar+NoResize+NoScrollbar+NoCollapse.
   3395 - Window: Added ImGuiWindowFlags_NoMouseInputs which is basically the old ImGuiWindowFlags_NoInputs (essentially
   3396   we have renamed ImGuiWindowFlags_NoInputs to ImGuiWindowFlags_NoMouseInputs). Made the new ImGuiWindowFlags_NoInputs
   3397   encompass both NoMouseInputs+NoNav, which is consistent with its description. (#1660, #787)
   3398 - Window, Inputs: Fixed resizing from edges when io.MousePos is not pixel-rounded by rounding mouse position input. (#2110)
   3399 - BeginChild(): Fixed BeginChild(const char*, ...) variation erroneously not applying the ID stack
   3400   to the provided string to uniquely identify the child window. This was undoing an intentional change
   3401   introduced in 1.50 and broken in 1.60. (#1698, #894, #713).
   3402 - TextUnformatted(): Fixed a case where large-text path would read bytes past the text_end marker depending
   3403   on the position of new lines in the buffer (it wasn't affecting the output but still not the right thing to do!)
   3404 - ListBox(): Fixed frame sizing when items_count==1 unnecessarily showing a scrollbar. (#2173) [@luk1337, @ocornut]
   3405 - ListBox(): Tweaked frame sizing so list boxes will look more consistent when FramePadding is far from ItemSpacing.
   3406 - RenderText(): Some optimization for very large text buffers, useful for non-optimized builds.
   3407 - BeginMenu(): Fixed menu popup horizontal offset being off the item in the menu bar when WindowPadding=0.0f.
   3408 - ArrowButton(): Fixed arrow shape being horizontally misaligned by (FramePadding.y-FramePadding.x) if they are different.
   3409 - Demo: Split the contents of ShowDemoWindow() into smaller functions as it appears to speed up link time with VS. (#2152)
   3410 - Drag and Drop: Added GetDragDropPayload() to peek directly into the payload (if any) from anywhere. (#143)
   3411 - ImGuiTextBuffer: Avoid heap allocation when empty.
   3412 - ImDrawList: Fixed AddConvexPolyFilled() undefined behavior when passing points_count smaller than 3,
   3413   in particular, points_count==0 could lead to a memory stomp if the draw list was previously empty.
   3414 - Examples: DirectX10, DirectX11: Removed seemingly unnecessary calls to invalidate and recreate device objects
   3415   in the WM_SIZE handler. (#2088) [@ice1000]
   3416 - Examples: GLFW: User previously installed GLFW callbacks are now saved and chain-called by the default callbacks. (#1759)
   3417 - Examples: OpenGL3: Added support for GL 4.5's glClipControl(GL_UPPER_LEFT). (#2186)
   3418 - Examples: OpenGL3+GLFW: Fixed error condition when using the GLAD loader. (#2157) [@blackball]
   3419 - Examples: OpenGL3+GLFW/SDL: Made main.cpp compile with IMGUI_IMPL_OPENGL_LOADER_CUSTOM (may be missing init). (#2178) [@doug-moen]
   3420 - Examples: SDL2+Vulkan: Fixed application shutdown which could deadlock on Linux + Xorg. (#2181) [@eRabbit0]
   3421 
   3422 
   3423 -----------------------------------------------------------------------
   3424  VERSION 1.65 (Released 2018-09-06)
   3425 -----------------------------------------------------------------------
   3426 
   3427 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.65
   3428 
   3429 Breaking Changes:
   3430 
   3431 - Renamed stb_truetype.h to imstb_truetype.h, stb_textedit.h to imstb_textedit.h, and
   3432   stb_rect_pack.h to imstb_rectpack.h. If you were conveniently using the imgui copy of those
   3433   STB headers in your project, you will have to update your include paths. (#1718, #2036)
   3434   The reason for this change is to avoid conflicts for projects that may also be importing
   3435   their own copy of the STB libraries. Note that imgui's copy of stb_textedit.h is modified.
   3436 - Renamed io.ConfigCursorBlink to io.ConfigInputTextCursorBlink. (#1427)
   3437 
   3438 Other Changes:
   3439 
   3440 - This is a minor release following the 1.64 refactor, with a little more shuffling of code.
   3441 - Clarified and improved the source code sectioning in all files (easier to search or browse sections).
   3442 - Nav: Removed the [Beta] tag from various descriptions of the gamepad/keyboard navigation system.
   3443   Although it is not perfect and will keep being improved, it is fairly functional and used by many. (#787)
   3444 - Fixed a build issue with non-Cygwin GCC under Windows.
   3445 - Demo: Added a "Configuration" block to make io.ConfigFlags/io.BackendFlags more prominent.
   3446 - Examples: OpenGL3+SDL2: Fixed error condition when using the GLAD loader. (#2059, #2002) [@jiri]
   3447 
   3448 
   3449 -----------------------------------------------------------------------
   3450  VERSION 1.64 (Released 2018-08-31)
   3451 -----------------------------------------------------------------------
   3452 
   3453 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.64
   3454 
   3455 Changes:
   3456 
   3457 - Moved README, CHANGELOG and TODO files to the docs/ folder.
   3458   If you are updating dear imgui by copying files, take the chance to delete the old files.
   3459 - Added imgui_widgets.cpp file, extracted and moved widgets code out of imgui.cpp into imgui_widgets.cpp.
   3460   Re-ordered some of the code remaining in imgui.cpp.
   3461   NONE OF THE FUNCTIONS HAVE CHANGED. THE CODE IS SEMANTICALLY 100% IDENTICAL, BUT _EVERY_ FUNCTIONS HAS BEEN MOVED.
   3462   Because of this, any local modifications to imgui.cpp will likely conflict when you update.
   3463   If you have any modifications to imgui.cpp, it is suggested that you first update to 1.63, then
   3464   isolate your patches. You can peak at imgui_widgets.cpp from 1.64 to get a sense of what is included in it,
   3465   then separate your changes into several patches that can more easily be applied to 1.64 on a per-file basis.
   3466   What I found worked nicely for me, was to open the diff of the old patches in an interactive merge/diff tool,
   3467   search for the corresponding function in the new code and apply the chunks manually.
   3468 - As a reminder, if you have any change to imgui.cpp it is a good habit to discuss them on the github,
   3469   so a solution applicable on the Master branch can be found. If your company has changes that you cannot
   3470   disclose you may also contact me privately.
   3471 
   3472 
   3473 -----------------------------------------------------------------------
   3474  VERSION 1.63 (Released 2018-08-29)
   3475 -----------------------------------------------------------------------
   3476 
   3477 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.63
   3478 
   3479 Breaking Changes:
   3480 
   3481 - Style: Renamed ImGuiCol_ModalWindowDarkening to ImGuiCol_ModalWindowDimBg for consistency with other features.
   3482   Kept redirection enum (will obsolete).
   3483 - Changed ImGui::GetTime() return value from float to double to avoid accumulating floating point imprecision over time.
   3484 - Removed per-window ImGuiWindowFlags_ResizeFromAnySide Beta flag in favor `io.ConfigResizeWindowsFromEdges=true` to
   3485   enable the feature globally. (#1495)
   3486   The feature is not currently enabled by default because it is not satisfying enough, but will eventually be.
   3487 - InputText: Renamed ImGuiTextEditCallback to ImGuiInputTextCallback, ImGuiTextEditCallbackData to ImGuiInputTextCallbackData
   3488   for consistency. Kept redirection types (will obsolete).
   3489 - InputText: Removed ImGuiTextEditCallbackData::ReadOnly because it is a duplication of (::Flags & ImGuiInputTextFlags_ReadOnly).
   3490 - Renamed IsItemDeactivatedAfterChange() to IsItemDeactivatedAfterEdit() for consistency with new IsItemEdited() API.
   3491   Kept redirection function (will obsolete soonish as IsItemDeactivatedAfterChange() is very recent).
   3492 - Renamed io.OptCursorBlink to io.ConfigCursorBlink [-> io.ConfigInputTextCursorBlink in 1.65], io.OptMacOSXBehaviors to
   3493   io.ConfigMacOSXBehaviors for consistency. (#1427, #473)
   3494 - Removed obsolete redirection functions: CollapsingHeader() variation with 2 bools - marked obsolete in v1.49, May 2016.
   3495 
   3496 Other Changes:
   3497 
   3498 - ArrowButton: Fixed to honor PushButtonRepeat() setting (and internals' ImGuiItemFlags_ButtonRepeat).
   3499 - ArrowButton: Setup current line text baseline so that ArrowButton() + SameLine() + Text() are aligned properly.
   3500 - Nav: Added a CTRL+TAB window list and changed the highlight system accordingly. The change is motivated by upcoming
   3501   Docking features. (#787)
   3502 - Nav: Made CTRL+TAB skip menus + skip the current navigation window if is has the ImGuiWindow_NoNavFocus set. (#787)
   3503   While it was previously possible, you won't be able to CTRL-TAB out and immediately back in a window with the
   3504   ImGuiWindow_NoNavFocus flag.
   3505 - Window: Allow menu and popups windows from ignoring the style.WindowMinSize values so short menus/popups are not padded. (#1909)
   3506 - Window: Added global io.ConfigResizeWindowsFromEdges option to enable resizing windows from their edges and from
   3507   the lower-left corner. (#1495)
   3508 - Window: Collapse button shows hovering highlight + clicking and dragging on it allows to drag the window as well.
   3509 - Added IsItemEdited() to query if the last item modified its value (or was pressed). This is equivalent to the bool
   3510   returned by most widgets.
   3511   It is useful in some situation e.g. using InputText() with ImGuiInputTextFlags_EnterReturnsTrue. (#2034)
   3512 - InputText: Added support for buffer size/capacity changes via the ImGuiInputTextFlags_CallbackResize flag. (#2006, #1443, #1008).
   3513 - InputText: Fixed not tracking the cursor horizontally when modifying the text buffer through a callback.
   3514 - InputText: Fixed minor off-by-one issue when submitting a buffer size smaller than the initial zero-terminated buffer contents.
   3515 - InputText: Fixed a few pathological crash cases on single-line InputText widget with multiple millions characters worth of contents.
   3516   Because the current text drawing function reserve for a worst-case amount of vertices and how we handle horizontal clipping,
   3517   we currently just avoid displaying those single-line widgets when they are over a threshold of 2 millions characters,
   3518   until a better solution is found.
   3519 - Drag and Drop: Fixed an incorrect assert when dropping a source that is submitted after the target (bug introduced with 1.62 changes
   3520   related to the addition of IsItemDeactivated()). (#1875, #143)
   3521 - Drag and Drop: Fixed ImGuiDragDropFlags_SourceNoDisableHover to affect hovering state prior to calling IsItemHovered() + fixed description. (#143)
   3522 - Drag and Drop: Calling BeginTooltip() between a BeginDragSource()/EndDragSource() or BeginDropTarget()/EndDropTarget() uses adjusted tooltip
   3523   settings matching the one created when calling BeginDragSource() without the ImGuiDragDropFlags_SourceNoPreviewTooltip flag. (#143)
   3524 - Drag and Drop: Payload stays available and under the mouse if the source stops being submitted, however the tooltip is replaced by "...". (#1725)
   3525 - Drag and Drop: Added ImGuiDragDropFlags_SourceAutoExpirePayload flag to force payload to expire if the source stops being submitted. (#1725, #143).
   3526 - IsItemHovered(): Added ImGuiHoveredFlags_AllowWhenDisabled flag to query hovered status on disabled items. (#1940, #211)
   3527 - Selectable: Added ImGuiSelectableFlags_Disabled flag in the public API. (#211)
   3528 - ColorEdit4: Fixed a bug when text input or drag and drop leading to unsaturated HSV values would erroneously alter the resulting color. (#2050)
   3529 - Misc: Added optional misc/stl/imgui_stl.h wrapper to use with STL types (e.g. InputText with std::string). (#2006, #1443, #1008)
   3530   [*EDIT* renamed to misc/std/imgui_stdlib.h in 1.66]
   3531 - Misc: Added IMGUI_VERSION_NUM for easy compile-time testing. (#2025)
   3532 - Misc: Added ImGuiMouseCursor_Hand cursor enum + corresponding software cursor. (#1913, 1914) [@aiekick, @ocornut]
   3533 - Misc: Tweaked software mouse cursor offset to match the offset of the corresponding Windows 10 cursors.
   3534 - Made assertion more clear when trying to call Begin() outside of the NewFrame()..EndFrame() scope. (#1987)
   3535 - Fixed assertion when transitioning from an active ID to another within a group, affecting ColorPicker (broken in 1.62). (#2023, #820, #956, #1875).
   3536 - Fixed PushID() from keeping alive the new ID Stack top value (if a previously active widget shared the ID it would be erroneously kept alive).
   3537 - Fixed horizontal mouse wheel not forwarding the request to the parent window if ImGuiWindowFlags_NoScrollWithMouse is set. (#1463, #1380, #1502)
   3538 - Fixed a include build issue for Cygwin in non-POSIX (Win32) mode. (#1917, #1319, #276)
   3539 - ImDrawList: Improved handling for worst-case vertices reservation policy when large amount of text (e.g. 1+ million character strings)
   3540   are being submitted in a single call. It would typically have crashed InputTextMultiline(). (#200)
   3541 - OS/Windows: Fixed missing ImmReleaseContext() call in the default Win32 IME handler. (#1932) [@vby]
   3542 - Metrics: Changed io.MetricsActiveWindows to reflect the number of active windows (!= from visible windows), which is useful
   3543   for lazy/idle render mechanisms as new windows are typically not visible for one frame.
   3544 - Metrics: Added io.MetricsRenderWindow to reflect the number of visible windows.
   3545 - Metrics: Added io.MetricsActiveAllocations, moving away from the cross-context global counters than we previously used. (#1565, #1599, #586)
   3546 - Demo: Added basic Drag and Drop demo. (#143)
   3547 - Demo: Modified the Console example to use InsertChars() in the input text callback instead of poking directly into the buffer.
   3548   Although this won't make a difference in the example itself, using InsertChars() will honor the resizing callback properly. (#2006, #1443, #1008).
   3549 - Demo: Clarified the use of IsItemHovered()/IsItemActive() right after being in the "Active, Focused, Hovered & Focused Tests" section.
   3550 - Examples: Tweaked the main.cpp of each example.
   3551 - Examples: Metal: Added Metal rendering backend. (#1929, #1873) [@warrenm]
   3552 - Examples: OSX: Added early raw OSX platform backend. (#1873) [@pagghiu, @itamago, @ocornut]
   3553 - Examples: Added mac OSX & iOS + Metal example in example_apple_metal/. (#1929, #1873) [@warrenm]
   3554 - Examples: Added mac OSX + OpenGL2 example in example_apple_opengl2/. (#1873)
   3555 - Examples: OpenGL3: Added shaders more versions of GLSL. (#1938, #1941, #1900, #1513, #1466, etc.)
   3556 - Examples: OpenGL3: Tweaked the imgui_impl_opengl3.cpp to work as-is with Emscripten + WebGL 2.0. (#1941). [@o-micron]
   3557 - Examples: OpenGL3: Made the example app default to GL 3.0 + GLSL 130 (instead of GL 3.2 + GLSL 150) unless on Mac.
   3558 - Examples: OpenGL3: Added error output when shaders fail to compile/link.
   3559 - Examples: OpenGL3: Added support for glew and glad OpenGL loaders out of the box. (#2001, #2002) [@jdumas]
   3560 - Examples: OpenGL2: Disabling/restoring GL_LIGHTING and GL_COLOR_MATERIAL to increase compatibility with legacy OpenGL applications. (#1996)
   3561 - Examples: DirectX10, DirectX11: Fixed unreleased resources in Init and Shutdown functions. (#1944)
   3562 - Examples: DirectX11: Querying for IDXGIFactory instead of IDXGIFactory1 to increase compatibility. (#1989) [@matt77hias]
   3563 - Examples: Vulkan: Fixed handling of VkSurfaceCapabilitiesKHR::maxImageCount = 0 case. Tweaked present mode selections.
   3564 - Examples: Win32, Glfw, SDL: Added support for the ImGuiMouseCursor_Hand cursor.
   3565 
   3566 
   3567 -----------------------------------------------------------------------
   3568  VERSION 1.62 (Released 2018-06-22)
   3569 -----------------------------------------------------------------------
   3570 
   3571 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.62
   3572 
   3573 Breaking Changes:
   3574 
   3575 - TreeNodeEx(): The helper ImGuiTreeNodeFlags_CollapsingHeader flag now include ImGuiTreeNodeFlags_NoTreePushOnOpen.
   3576   The flag was already set by CollapsingHeader().
   3577   The only difference is if you were using TreeNodeEx() manually with ImGuiTreeNodeFlags_CollapsingHeader and without
   3578   ImGuiTreeNodeFlags_NoTreePushOnOpen. In this case you can remove the ImGuiTreeNodeFlags_NoTreePushOnOpen flag from
   3579   your call (ImGuiTreeNodeFlags_CollapsingHeader & ~ImGuiTreeNodeFlags_NoTreePushOnOpen). (#1864)
   3580   This also apply if you were using internal's TreeNodeBehavior() with the ImGuiTreeNodeFlags_CollapsingHeader flag directly.
   3581 - ImFontAtlas: Renamed GetGlyphRangesChinese() to GetGlyphRangesChineseFull() to distinguish new smaller variants and
   3582   discourage using the full set. (#1859)
   3583 
   3584 Other Changes:
   3585 
   3586 - Examples backends have been refactored to separate the platform code (e.g. Win32, Glfw, SDL2) from the renderer code (e.g. DirectX11, OpenGL3, Vulkan).
   3587   The "Platform" backends are in charge of: mouse/keyboard/gamepad inputs, cursor shape, timing, etc.
   3588   The "Renderer" backends are in charge of: creating the main font texture, rendering imgui draw data.
   3589       before: imgui_impl_dx11.cpp        --> after: imgui_impl_win32.cpp + imgui_impl_dx11.cpp
   3590       before: imgui_impl_dx12.cpp        --> after: imgui_impl_win32.cpp + imgui_impl_dx12.cpp
   3591       before: imgui_impl_glfw_gl3.cpp    --> after: imgui_impl_glfw.cpp + imgui_impl_opengl2.cpp
   3592       before: imgui_impl_glfw_vulkan.cpp --> after: imgui_impl_glfw.cpp + imgui_impl_vulkan.cpp
   3593       before: imgui_impl_sdl_gl3.cpp     --> after: imgui_impl_sdl2.cpp + imgui_impl_opengl2.cpp
   3594       before: imgui_impl_sdl_gl3.cpp     --> after: imgui_impl_sdl2.cpp + imgui_impl_opengl3.cpp etc.
   3595   - The idea is what we can now easily combine and maintain backends and reduce code redundancy. Individual files are
   3596     smaller and more reusable. Integration of imgui into a new/custom engine may also be easier as there is less overlap
   3597     between "windowing / inputs" and "rendering" code, so you may study or grab one half of the code and not the other.
   3598   - This change was motivated by the fact that adding support for the upcoming multi-viewport feature requires more work
   3599     from the Platform and Renderer backends, and the amount of redundancy across files was becoming too difficult to
   3600     maintain. If you use default backends, you'll benefit from an easy update path to support multi-viewports later
   3601     (for future ImGui 1.7x).
   3602   - This is not strictly a breaking change if you keep your old backends, but when you'll want to fully update your backends,
   3603     expect to have to reshuffle a few things.
   3604   - Each example still has its own main.cpp which you may refer you to understand how to initialize and glue everything together.
   3605   - Some frameworks (such as the Allegro, Marmalade) handle both the "platform" and "rendering" part, and your custom engine may as well.
   3606   - Read examples/README.txt for details.
   3607 - Added IsItemDeactivated() to query if the last item was active previously and isn't anymore. Useful for Undo/Redo patterns. (#820, #956, #1875)
   3608 - Added IsItemDeactivatedAfterChange() [*EDIT* renamed to IsItemDeactivatedAfterEdit() in 1.63] if the last item was active previously,
   3609   is not anymore, and during its active state modified a value. Note that you may still get false positive (e.g. drag value and while
   3610   holding return on the same value). (#820, #956, #1875)
   3611 - Nav: Added support for PageUp/PageDown (explorer-style: first aim at bottom/top most item, when scroll a page worth of contents). (#787)
   3612 - Nav: To keep the navigated item in view we also attempt to scroll the parent window as well as the current window. (#787)
   3613 - ColorEdit3, ColorEdit4, ColorButton: Added ImGuiColorEditFlags_NoDragDrop flag to disable ColorEditX as drag target and ColorButton as drag source. (#1826)
   3614 - BeginDragDropSource(): Offset tooltip position so it is off the mouse cursor, but also closer to it than regular tooltips,
   3615   and not clamped by viewport. (#1739)
   3616 - BeginDragDropTarget(): Added ImGuiDragDropFlags_AcceptNoPreviewTooltip flag to request hiding the drag source tooltip
   3617   from the target site. (#143)
   3618 - BeginCombo(), BeginMainMenuBar(), BeginChildFrame(): Temporary style modification are restored at the end of BeginXXX
   3619   instead of EndXXX, to not affect tooltips and child windows.
   3620 - Popup: Improved handling of (erroneously) repeating calls to OpenPopup() to not close the popup's child popups. (#1497, #1533, #1865).
   3621 - InputTextMultiline(): Fixed double navigation highlight when scrollbar is active. (#787)
   3622 - InputText(): Fixed Undo corruption after pasting large amount of text (Redo will still fail when undo buffers are exhausted,
   3623   but text won't be corrupted).
   3624 - SliderFloat(): When using keyboard/gamepad and a zero precision format string (e.g. "%.0f"), always step in integer units. (#1866)
   3625 - ImFontConfig: Added GlyphMinAdvanceX/GlyphMaxAdvanceX settings useful to make a font appears monospaced, particularly useful
   3626   for icon fonts. (#1869)
   3627 - ImFontAtlas: Added GetGlyphRangesChineseSimplifiedCommon() helper that returns a list of ~2500 most common Simplified Chinese
   3628   characters. (#1859) [@JX-Master, @ocornut]
   3629 - Examples: OSX: Added imgui_impl_osx.mm backend to be used along with e.g. imgui_impl_opengl2.cpp. (#281, #1870) [@pagghiu, @itamago, @ocornut]
   3630 - Examples: GLFW: Made it possible to Shutdown/Init the backend again (by resetting the time storage properly). (#1827) [@ice1000]
   3631 - Examples: Win32: Fixed handling of mouse wheel messages to support sub-unit scrolling messages (typically sent by track-pads). (#1874) [@zx64]
   3632 - Examples: SDL+Vulkan: Added SDL+Vulkan example.
   3633 - Examples: Allegro5: Added support for ImGuiConfigFlags_NoMouseCursorChange flag. Added clipboard support.
   3634 - Examples: Allegro5: Unindexing buffers ourselves as Allegro indexed drawing primitives are buggy in the DirectX9 backend
   3635   (will be fixed in Allegro 5.2.5+).
   3636 - Examples: DirectX12: Moved the ID3D12GraphicsCommandList* parameter from ImGui_ImplDX12_NewFrame() to ImGui_ImplDX12_RenderDrawData() which makes a lots more sense. (#301)
   3637 - Examples: Vulkan: Reordered parameters ImGui_ImplVulkan_RenderDrawData() to be consistent with other backends,
   3638   a good occasion since we refactored the code.
   3639 - Examples: FreeGLUT: Added FreeGLUT backends. Added FreeGLUT+OpenGL2 example. (#801)
   3640 - Examples: The functions in imgui_impl_xxx.cpp are prefixed with IMGUI_IMPL_API (which defaults to IMGUI_API) to facilitate
   3641   some uses. (#1888)
   3642 - Examples: Fixed backends to use ImGuiMouseCursor_COUNT instead of old name ImGuiMouseCursor_Count_ so they can compile
   3643   with IMGUI_DISABLE_OBSOLETE_FUNCTIONS. (#1887)
   3644 - Misc: Updated stb_textedit from 1.09 + patches to 1.12 + minor patches.
   3645 - Internals: PushItemFlag() flags are inherited by BeginChild().
   3646 
   3647 
   3648 -----------------------------------------------------------------------
   3649  VERSION 1.61 (Released 2018-05-14)
   3650 -----------------------------------------------------------------------
   3651 
   3652 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.61
   3653 
   3654 Breaking Changes:
   3655 
   3656 - DragInt(): The default compile-time format string has been changed from "%.0f" to "%d", as we are not using integers internally
   3657   any more. If you used DragInt() with custom format strings, make sure you change them to use %d or an integer-compatible format.
   3658   To honor backward-compatibility, the DragInt() code will currently parse and modify format strings to replace %*f with %d,
   3659   giving time to users to upgrade their code.
   3660   If you have IMGUI_DISABLE_OBSOLETE_FUNCTIONS enabled, the code will instead assert! You may run a reg-exp search on your
   3661   codebase for e.g. "DragInt.*%f" to you find them.
   3662 - InputFloat(): Obsoleted InputFloat() functions taking an optional "int decimal_precision" in favor of an equivalent and more
   3663   flexible "const char* format", consistent with other functions. Kept redirection functions (will obsolete).
   3664 - Misc: IM_DELETE() helper function added in 1.60 doesn't set the input pointer to NULL, more consistent with standard
   3665   expectation and allows passing r-values.
   3666 
   3667 Other Changes:
   3668 
   3669 - Added DragScalar, DragScalarN: supports signed/unsigned, 32/64 bits, float/double data types. (#643, #320, #708, #1011)
   3670 - Added InputScalar, InputScalarN: supports signed/unsigned, 32/64 bits, float/double data types. (#643, #320, #708, #1011)
   3671 - Added SliderScalar, SliderScalarN: supports signed/unsigned, 32/64 bits, float/double data types. (#643, #320, #708, #1011)
   3672 - Window: Fixed pop-ups/tooltips/menus not honoring style.DisplaySafeAreaPadding as well as it should have (part of menus
   3673   displayed outside the safe area, etc.).
   3674 - Window: Fixed windows using the ImGuiWindowFlags_NoSavedSettings flag from not using the same default position as other windows. (#1760)
   3675 - Window: Relaxed the internal stack size checker to allow Push/Begin/Pop/.../End patterns to be used with PushStyleColor, PushStyleVar, PushFont without causing a false positive assert. (#1767)
   3676 - Window: Fixed the default proportional item width lagging by one frame on resize.
   3677 - Columns: Fixed a bug introduced in 1.51 where columns would affect the contents size of their container, often creating
   3678   feedback loops when ImGuiWindowFlags_AlwaysAutoResize was used. (#1760)
   3679 - Settings: Fixed saving an empty .ini file if CreateContext/DestroyContext are called without a single call to NewFrame(). (#1741)
   3680 - Settings: Added LoadIniSettingsFromDisk(), LoadIniSettingsFromMemory(), SaveIniSettingsToDisk(), SaveIniSettingsToMemory()
   3681   to manually load/save .ini settings. (#923, #993)
   3682 - Settings: Added io.WantSaveIniSettings flag, which is set to notify the application that e.g. SaveIniSettingsToMemory()
   3683   should be called. (#923, #993)
   3684 - Scrolling: Fixed a case where using SetScrollHere(1.0f) at the bottom of a window on the same frame the window height
   3685   has been growing would have the scroll clamped using the previous height. (#1804)
   3686 - MenuBar: Made BeginMainMenuBar() honor style.DisplaySafeAreaPadding so the text can be made visible on TV settings that
   3687   don't display all pixels. (#1439) [@dougbinks]
   3688 - InputText: On Mac OS X, filter out characters when the CMD modifier is held. (#1747) [@sivu]
   3689 - InputText: On Mac OS X, support CMD+SHIFT+Z for Redo. CMD+Y is also supported as major apps seems to default to support both. (#1765) [@lfnoise]
   3690 - InputText: Fixed returning true when edition is cancelled with ESC and the current buffer matches the initial value.
   3691 - InputFloat,InputFloat2,InputFloat3,InputFloat4: Added variations taking a more flexible and consistent optional
   3692   "const char* format" parameter instead of "int decimal_precision". This allow using custom formats to display values
   3693   in scientific notation, and is generally more consistent with other API.
   3694   Obsoleted functions using the optional "int decimal_precision" parameter. (#648, #712)
   3695 - DragFloat, DragInt: Cancel mouse tweak when current value is initially past the min/max boundaries and mouse is pushing
   3696   in the same direction (keyboard/gamepad version already did this).
   3697 - DragFloat, DragInt: Honor natural type limits (e.g. INT_MAX, FLT_MAX) instead of wrapping around. (#708, #320)
   3698 - DragFloat, SliderFloat: Fixes to allow input of scientific notation numbers when using CTRL+Click to input the value. (~#648, #1011)
   3699 - DragFloat, SliderFloat: Rounding-on-write uses the provided format string instead of parsing the precision from the string,
   3700   which allows for finer uses of %e %g etc. (#648, #642)
   3701 - DragFloat: Improved computation when using the power curve. Improved lost of input precision with very small steps.
   3702   Added an assert than power-curve requires a min/max range. (~#642)
   3703 - DragFloat: The 'power' parameter is only honored if the min/max parameter are also setup.
   3704 - DragInt, SliderInt: Fixed handling of large integers (we previously passed data around internally as float, which reduced
   3705   the range of valid integers).
   3706 - ColorEdit: Fixed not being able to pass the ImGuiColorEditFlags_NoAlpha or ImGuiColorEditFlags_HDR flags to SetColorEditOptions().
   3707 - Nav: Fixed hovering a Selectable() with the mouse so that it update the navigation cursor (as it happened in the pre-1.60 navigation branch). (#787)
   3708 - Style: Changed default style.DisplaySafeAreaPadding values from (4,4) to (3,3) so it is smaller than FramePadding and has no effect on main menu bar on a computer. (#1439)
   3709 - Fonts: When building font atlas, glyphs that are missing in the fonts are not using the glyph slot to render the default glyph. Saves space and allow merging fonts with
   3710   overlapping font ranges such as FontAwesome5 which split out the Brands separately from the Solid fonts. (#1703, #1671)
   3711 - Misc: Added IMGUI_CHECKVERSION() macro to compare version string and data structure sizes in order to catch issues with mismatching compilation unit settings. (#1695, #1769)
   3712 - Misc: Added IMGUI_DISABLE_MATH_FUNCTIONS in imconfig.h to make it easier to redefine wrappers for std/crt math functions.
   3713 - Misc: Fix to allow compiling in unity builds where stb_rectpack/stb_truetype may be already included in the same compilation unit.
   3714 - Demo: Simple Overlay: Added a context menu item to enable freely moving the window.
   3715 - Demo: Added demo for DragScalar(), InputScalar(), SliderScalar(). (#643)
   3716 - Examples: Calling IMGUI_CHECKVERSION() in the main.cpp of every example application.
   3717 - Examples: Allegro 5: Added support for 32-bit indices setup via defining ImDrawIdx, to avoid an unnecessary conversion (Allegro 5 doesn't support 16-bit indices).
   3718 - Examples: Allegro 5: Renamed backend from imgui_impl_a5.cpp to imgui_impl_allegro5.cpp.
   3719 - Examples: DirectX 9: Saving/restoring Transform because they don't seem to be included in the StateBlock. Setting shading mode to Gouraud. (#1790, #1687) [@sr-tream]
   3720 - Examples: SDL: Fixed clipboard paste memory leak in the SDL backend code. (#1803) [@eliasdaler]
   3721 - Various minor fixes, tweaks, refactoring, comments.
   3722 
   3723 
   3724 -----------------------------------------------------------------------
   3725  VERSION 1.60 (Released 2018-04-07)
   3726 -----------------------------------------------------------------------
   3727 
   3728 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.60
   3729 
   3730 The gamepad/keyboard navigation branch (which has been in the work since July 2016) has been merged.
   3731 Gamepad/keyboard navigation is still marked as Beta and has to be enabled explicitly.
   3732 Various internal refactoring have also been done, as part of the navigation work and as part of the upcoming viewport/docking work.
   3733 
   3734 Breaking Changes:
   3735 
   3736 - Obsoleted the io.RenderDrawListsFn callback, you can call your graphics engine render function after ImGui::Render().
   3737   e.g. with example backends, call ImDrawData* draw_data = ImGui::GetDrawData(); ImGui_ImplXXXX_RenderDrawData(draw_data).
   3738 - Reorganized context handling to be more explicit: (#1599)
   3739   - YOU NOW NEED TO CALL ImGui::CreateContext() AT THE BEGINNING OF YOUR APP, AND CALL ImGui::DestroyContext() AT THE END.
   3740   - removed Shutdown() function, as DestroyContext() serve this purpose. If you are using an old backend from the examples/ folder, remove the line that calls Shutdown().
   3741   - you may pass a ImFontAtlas* pointer to CreateContext() to share a font atlas between contexts. Otherwise CreateContext() will create its own font atlas instance.
   3742   - removed allocator parameters from CreateContext(), they are now setup with SetAllocatorFunctions(), and shared by all contexts.
   3743   - removed the default global context and font atlas instance, which were confusing for users of DLL reloading and users of multiple contexts.
   3744 - Renamed ImGuiStyleVar_Count_ to ImGuiStyleVar_COUNT and ImGuiMouseCursor_Count_ to ImGuiMouseCursor_COUNT for consistency with other public enums.
   3745 - Fonts: Moved sample TTF files from extra_fonts/ to misc/fonts/. If you loaded files directly from the imgui repo you may need to update your paths.
   3746 - Fonts: Changed ImFont::DisplayOffset.y to defaults to 0 instead of +1. Fixed vertical rounding of Ascent/Descent to match TrueType renderer.
   3747   If you were adding or subtracting (not assigning) to ImFont::DisplayOffset check if your fonts are correctly aligned vertically. (#1619)
   3748 - BeginDragDropSource(): temporarily removed the optional mouse_button=0 parameter because it is not really usable in many situations at the moment.
   3749 - Obsoleted IsAnyWindowHovered() in favor of IsWindowHovered(ImGuiHoveredFlags_AnyWindow). Kept redirection function (will obsolete).
   3750 - Obsoleted IsAnyWindowFocused() in favor of IsWindowFocused(ImGuiFocusedFlags_AnyWindow). Kept redirection function (will obsolete).
   3751 - Renamed io.WantMoveMouse to io.WantSetMousePos for consistency and ease of understanding (was added in 1.52, not used by core, and honored by some backend ahead of merging the Nav branch).
   3752 - Removed ImGuiCol_CloseButton, ImGuiCol_CloseButtonActive, ImGuiCol_CloseButtonHovered style colors as the closing cross uses regular button colors now.
   3753 - Renamed ImGuiSizeConstraintCallback to ImGuiSizeCallback, ImGuiSizeConstraintCallbackData to ImGuiSizeCallbackData.
   3754 - Removed CalcItemRectClosestPoint() which was weird and not really used by anyone except demo code. If you need it should be easy to replicate on your side (you can find the code in 1.53).
   3755 - [EDITED] Window: BeginChild() with an explicit name doesn't include the hash within the internal window name. (#1698)
   3756   This change was erroneously introduced, undoing the change done for #894, #713, and not documented properly in the original
   3757   1.60 release Changelog. It was fixed on 2018-09-28 (1.66) and I wrote this paragraph the same day.
   3758 
   3759 Other Changes:
   3760 
   3761 - Doc: Added a Changelog file in the repository to ease comparing versions (it goes back to dear imgui 1.48), until now it was only on GitHub.
   3762 - Navigation: merged in the gamepad/keyboard navigation (about a million changes!). (#787, #323)
   3763   The initial focus was to support game controllers, but keyboard is becoming increasingly and decently usable.
   3764 - To use Gamepad Navigation:
   3765   - Set io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad to enable.
   3766   - Backend: Set io.BackendFlags |= ImGuiBackendFlags_HasGamepad + fill the io.NavInputs[] fields before calling NewFrame(). Read imgui.cpp for more details.
   3767   - See https://github.com/ocornut/imgui/issues/1599 for recommended gamepad mapping or download PNG/PSD at http://goo.gl/9LgVZW
   3768   - See 'enum ImGuiNavInput_' in imgui.h for a description of inputs. Read imgui.cpp for more details.
   3769 - To use Keyboard Navigation:
   3770   - Set io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeysDown[] + io.KeyMap[] arrays.
   3771   - Basic controls: arrows to navigate, Alt to enter menus, Space to activate item, Enter to edit text, Escape to cancel/close, Ctrl-Tab to focus windows, etc.
   3772   - When keyboard navigation is active (io.NavActive + ImGuiConfigFlags_NavEnableKeyboard), the io.WantCaptureKeyboard flag will be set.
   3773     For more advanced uses, you may want to read from io.NavActive or io.NavVisible. Read imgui.cpp for more details.
   3774 - Navigation: SetItemDefaultFocus() sets the navigation position in addition to scrolling. (#787)
   3775 - Navigation: Added IsItemFocused(), added IsAnyItemFocused(). (#787)
   3776 - Navigation: Added window flags: ImGuiWindowFlags_NoNav (== ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus).
   3777 - Navigation: Style: Added ImGuiCol_NavHighlight, ImGuiCol_NavWindowingHighlight colors. (#787)
   3778 - Navigation: TreeNode: Added ImGuiTreeNodeFlags_NavLeftJumpsBackHere flag to allow Nav Left direction to jump back to parent tree node from any of its child. (#1079)
   3779 - Navigation: IO: Added io.ConfigFlags (input), io.NavActive (output), io.NavVisible (output). (#787)
   3780 - Context: Removed the default global context and font atlas instances, which caused various problems to users of multiple contexts and DLL users. (#1565, #1599)
   3781   YOU NOW NEED TO CALL ImGui::CreateContext() AT THE BEGINNING OF YOUR APP, AND CALL ImGui::DestroyContext() AT THE END. Existing apps will assert/crash without it.
   3782 - Context: Added SetAllocatorFunctions() to rewire memory allocators (as a replacement to previous parameters to CreateContext()). Allocators are shared by all contexts and imgui helpers. (#1565, #586, #992, #1007, #1558)
   3783 - Context: You may pass a ImFontAtlas to CreateContext() to specify a font atlas to share. Shared font atlas are not owned by the context and not destroyed along with it. (#1599)
   3784 - Context: Added IMGUI_DISABLE_DEFAULT_ALLOCATORS to disable linking with malloc/free. (#1565, #586, #992, #1007, #1558)
   3785 - IO: Added io.ConfigFlags for user application to store settings for imgui and for the backend:
   3786   - ImGuiConfigFlags_NavEnableKeyboard: Enable keyboard navigation.
   3787   - ImGuiConfigFlags_NavEnableGamepad: Enable gamepad navigation (provided ImGuiBackendFlags_HasGamepad is also set by backend).
   3788   - ImGuiConfigFlags_NavEnableSetMousePos: Instruct navigation to move the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward.
   3789   - ImGuiConfigFlags_NoMouseCursorChange: Instruct backend to not alter mouse cursor shape and visibility (by default the example backend use mouse cursor API of the platform when available)
   3790   - ImGuiConfigFlags_NoMouse: Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information passed by the backend.
   3791   - ImGuiConfigFlags_IsSRGB, ImGuiConfigFlags_IsTouchScreen: Flags for general application use.
   3792 - IO: Added io.BackendFlags for backend to store its capabilities (currently: _HasGamepad, _HasMouseCursors, _HasSetMousePos). This will be used more in the next version.
   3793 - IO: Added ImGuiKey_Insert, ImGuiKey_Space keys. Setup in all example backends. (#1541)
   3794 - IO: Added Horizontal Mouse Wheel support for horizontal scrolling. (#1463) [@tseeker]
   3795 - IO: Added IsAnyMouseDown() helper which is helpful for backends to handle mouse capturing.
   3796 - Window: Clicking on a window with the ImGuiWIndowFlags_NoMove flags takes an ActiveId so we can't hover something else when dragging afterwards. (#1381, #1337)
   3797 - Window: IsWindowHovered(): Added ImGuiHoveredFlags_AnyWindow, ImGuiFocusedFlags_AnyWindow flags (See Breaking Changes). Added to demo. (#1382)
   3798 - Window: Added SetNextWindowBgAlpha() helper. Particularly helpful since the legacy 5-parameters version of Begin() has been marked as obsolete in 1.53. (#1567)
   3799 - Window: Fixed SetNextWindowContentSize() with 0.0f on Y axis (or SetNextWindowContentWidth()) overwriting the contents size. Got broken on Dec 10 (1.53). (#1363)
   3800 - ArrowButton: Added ArrowButton() given a cardinal direction (e.g. ImGuiDir_Left).
   3801 - InputText: Added alternative clipboard shortcuts: Shift+Delete (cut), CTRL+Insert (copy), Shift+Insert (paste). (#1541)
   3802 - InputText: Fixed losing Cursor X position when clicking outside on an item that's submitted after the InputText(). It was only noticeable when restoring focus programmatically. (#1418, #1554)
   3803 - InputText: Added ImGuiInputTextFlags_CharsScientific flag to also allow 'e'/'E' for input of values using scientific notation. Automatically used by InputFloat.
   3804 - Style: Default style is now StyleColorsDark(), instead of the old StyleColorsClassic(). (#707)
   3805 - Style: Enable window border by default. (#707)
   3806 - Style: Exposed ImGuiStyleVar_WindowTitleAlign, ImGuiStyleVar_ScrollbarSize, ImGuiStyleVar_ScrollbarRounding, ImGuiStyleVar_GrabRounding + added an assert to reduce accidental breakage. (#1181)
   3807 - Style: Added style.MouseCursorScale help when using the software mouse cursor facility. (#939).
   3808 - Style: Close button nows display a cross before hovering. Fixed cross positioning being a little off. Uses button colors for highlight when hovering. (#707)
   3809 - Popup: OpenPopup() Always reopen existing pop-ups. (Removed imgui_internal.h's OpenPopupEx() which was used for this.) (#1497, #1533).
   3810 - Popup: BeginPopupContextItem(), BeginPopupContextWindow(), BeginPopupContextVoid(), OpenPopupOnItemClick() all react on mouse release instead of mouse press. (~#439)
   3811 - Popup: Better handling of user mistakenly calling OpenPopup() every frame (with reopen_existing option). The error will now be more visible and easier to understand. (#1497)
   3812 - Popup: BeginPopup(): Exposed extra_flags parameter that are passed through to Begin(). (#1533)
   3813 - Popup: BeginPopupModal: fixed the conditional test for SetNextWindowPos() which was polling the wrong window, which in practice made the test succeed all the time.
   3814 - Tooltip: BeginTooltip() sets ImGuiWindowFlags_NoInputs flag.
   3815 - Scrollbar: Fixed ScrollbarY enable test after ScrollbarX has been enabled being a little off (small regression from Nov 2017). (#1574)
   3816 - Scrollbar: Fixed ScrollbarX enable test subtracting WindowPadding.x (this has been there since the addition of horizontal scroll bar!).
   3817 - Columns: Clear offsets data when columns count changed. (#1525)
   3818 - Columns: Fixed a memory leak of ImGuiColumnsSet's Columns vector. (#1529) [@unprompted]
   3819 - Columns: Fixed resizing a window very small breaking some columns positioning (broken in 1.53).
   3820 - Columns: The available column extent takes consideration of the right-most clipped pixel, so the right-most column may look a little wider but will contain the same amount of visible contents.
   3821 - MenuBar: Fixed menu bar pushing a clipping rect outside of its allocated bound (usually unnoticeable).
   3822 - TreeNode: nodes with the ImGuiTreeNodeFlags_Leaf flag correctly disable highlight when DragDrop is active. (#143, #581)
   3823 - Drag and Drop: Increased payload type string to 32 characters instead of 8. (#143)
   3824 - Drag and Drop: TreeNode as drop target displays rectangle over full frame. (#1597, #143)
   3825 - DragFloat: Fix/workaround for backends which do not preserve a valid mouse position when dragged out of bounds. (#1559)
   3826 - InputFloat: Allow inputing value using scientific notation e.g. "1e+10".
   3827 - InputDouble: Added InputDouble() function. We use a format string instead of a decimal_precision parameter to also for "%e" and variants. (#1011)
   3828 - Slider, Combo: Use ImGuiCol_FrameBgHovered color when hovered. (#1456) [@stfx]
   3829 - Combo: BeginCombo(): Added ImGuiComboFlags_NoArrowButton to disable the arrow button and only display the wide value preview box.
   3830 - Combo: BeginCombo(): Added ImGuiComboFlags_NoPreview to disable the preview and only display a square arrow button.
   3831 - Combo: Arrow button isn't displayed over frame background so its blended color matches other buttons. Left side of the button isn't rounded.
   3832 - PlotLines: plot a flat line if scale_min==scale_max. (#1621)
   3833 - Fonts: Changed DisplayOffset.y to defaults to 0 instead of +1. Fixed rounding of Ascent/Descent to match TrueType renderer.
   3834   If you were adding or subtracting (not assigning) to ImFont::DisplayOffset check if your fonts are correctly aligned vertically. (#1619)
   3835 - Fonts: Updated stb_truetype from 1.14 to stb_truetype 1.19. (w/ include fix from some platforms #1622)
   3836 - Fonts: Added optional FreeType rasterizer in misc/freetype. Moved from imgui_club repo. (#618) [@Vuhdo, @mikesart, @ocornut]
   3837 - Fonts: Moved extra_fonts/ to misc/fonts/.
   3838 - ImFontAtlas: Fixed cfg.MergeMode not reusing existing glyphs if available (always overwrote).
   3839 - ImFontAtlas: Handle stb_truetype stbtt_InitFont() and stbtt_PackBegin() possible failures more gracefully, GetTexDataAsRGBA32() won't crash during conversion. (#1527)
   3840 - ImFontAtlas: Moved mouse cursor data out of ImGuiContext, fix drawing them with multiple contexts. Also remove the last remaining undesirable dependency on ImGui in imgui_draw.cpp. (#939)
   3841 - ImFontAtlas: Added ImFontAtlasFlags_NoPowerOfTwoHeight flag to disable padding font height to nearest power of two. (#1613)
   3842 - ImFontAtlas: Added ImFontAtlasFlags_NoMouseCursors flag to disable baking software mouse cursors, mostly to save texture memory on very low end hardware. (#1613)
   3843 - ImDrawList: Fixed AddRect() with anti-aliasing disabled (lower-right corner pixel was often missing, rounding looks a little better.) (#1646)
   3844 - ImDrawList: Added CloneOutput() helper to facilitate the cloning of ImDrawData or ImDrawList for multi-threaded rendering.
   3845 - Misc: Functions passed to libc qsort are explicitly marked cdecl to support compiling with vectorcall as the default calling convention. (#1230, #1611) [@RandyGaul]
   3846 - Misc: ImVec2: added [] operator. This is becoming desirable for some code working of either axes independently. Better adding it sooner than later.
   3847 - Misc: NewFrame(): Added an assert to detect incorrect filling of the io.KeyMap[] array earlier. (#1555)
   3848 - Misc: Added IM_OFFSETOF() helper in imgui.h (previously was in imgui_internal.h)
   3849 - Misc: Added IM_NEW(), IM_DELETE() helpers in imgui.h (previously were in imgui_internal.h)
   3850 - Misc: Added obsolete redirection function GetItemsLineHeightWithSpacing() (which redirects to GetFrameHeightWithSpacing()), as intended and stated in docs of 1.53.
   3851 - Misc: Added misc/natvis/imgui.natvis for visual studio debugger users to easily visualize imgui internal types. Added to examples projects.
   3852 - Misc: Added IMGUI_USER_CONFIG to define a custom configuration filename. (#255, #1573, #1144, #41)
   3853 - Misc: Added IMGUI_STB_TRUETYPE_FILENAME and IMGUI_STB_RECT_PACK_FILENAME compile time directives to use another version of the stb_ files.
   3854 - Misc: Updated stb_rect_pack from 0.10 to 0.11 (minor changes).
   3855   (Those flags are not used by ImGui itself, they only exists to make it easy for the engine/backend to pass information to the application in a standard manner.)
   3856 - Metrics: Added display of Columns state.
   3857 - Demo: Improved Selectable() examples. (#1528)
   3858 - Demo: Tweaked the Child demos, added a menu bar to the second child to test some navigation functions.
   3859 - Demo: Console: Using ImGuiCol_Text to be more friendly to color changes.
   3860 - Demo: Using IM_COL32() instead of ImColor() in ImDrawList centric contexts. Trying to phase out use of the ImColor helper whenever possible.
   3861 - Examples: Files in examples/ now include their own changelog so it is easier to occasionally update your backends if needed.
   3862 - Examples: Using Dark theme by default. (#707). Tweaked demo code.
   3863 - Examples: Added support for horizontal mouse wheel for API that allows it. (#1463) [@tseeker]
   3864 - Examples: All examples now setup the io.BackendFlags to signify they can honor mouse cursors, gamepad, etc.
   3865 - Examples: DirectX10: Fixed erroneous call to io.Fonts->ClearInputData() + ClearTexData() that was left in DX10 example but removed in 1.47 (Nov 2015) in every other backends. (#1733)
   3866 - Examples: DirectX12: Added DirectX 12 example. (#301) [@jdm3]
   3867 - Examples: OpenGL3+GLFW,SDL: Changed GLSL shader version from 330 to 150. (#1466, #1504)
   3868 - Examples: OpenGL3+GLFW,SDL: Added a way to override the GLSL version string in the Init function. (#1466, #1504).
   3869 - Examples: OpenGL3+GLFW,SDL: Creating VAO in the render function so it can be more easily used by multiple shared OpenGL contexts. (#1217)
   3870 - Examples: OpenGL3+GLFW: Using 3.2 context instead of 3.3. (#1466)
   3871 - Examples: OpenGL: Setting up glPixelStorei() explicitly before uploading texture.
   3872 - Examples: OpenGL: Calls to glPolygonMode() are casting parameters as GLEnum to not fail with more strict backends. (#1628) [@ilia-glushchenko]
   3873 - Examples: Win32 (DirectX9,10,11,12): Added support for mouse cursor shapes. (#1495)
   3874 - Examples: Win32 (DirectX9,10,11,12: Support for windows using the CS_DBLCLKS class flag by handling the double-click messages (WM_LBUTTONDBLCLK etc.). (#1538, #754) [@ndandoulakis]
   3875 - Examples: Win32 (DirectX9,10,11,12): Made the Win32 proc handlers not assert if there is no active context yet, to be more flexible with creation order. (#1565)
   3876 - Examples: GLFW: Added support for mouse cursor shapes (the diagonal resize cursors are unfortunately not supported by GLFW at the moment. (#1495)
   3877 - Examples: GLFW: Don't attempt to change the mouse cursor input mode if it is set to GLFW_CURSOR_DISABLED by the application. (#1202) [@PhilCK]
   3878 - Examples: SDL: Added support for mouse cursor shapes. (#1626) [@olls]
   3879 - Examples: SDL: Using SDL_CaptureMouse() to retrieve coordinates outside of client area when dragging (SDL 2.0.4+ only, otherwise using SDL_WINDOW_INPUT_FOCUS instead of previously SDL_WINDOW_MOUSE_FOCUS). (#1559)
   3880 - Examples: SDL: Enabled vsync by default so people don't come at us when the examples are running at 2000 FPS and burning a CPU core.
   3881 - Examples: SDL: Using SDL_GetPerformanceCounter() / SDL_GetPerformanceFrequency() to handle frame-rate over 1000 FPS properly. (#996)
   3882 - Examples: SDL: Using scan-code exclusively instead of a confusing mixture of scan-codes and key-codes.
   3883 - Examples: SDL: Visual Studio: Added .vcxproj file. Using %SDL2_DIR% in the default .vcxproj and build files instead of %SDL_DIR%, the earlier being more standard.
   3884 - Examples: Vulkan: Visual Studio: Added .vcxproj file.
   3885 - Examples: Apple: Fixed filenames in OSX xcode project. Various other Mac friendly fixes. [@gerryhernandez etc.]
   3886 - Examples: Visual Studio: Disabled extraneous function-level check in Release build.
   3887 - Various fixes, tweaks, internal refactoring, optimizations, comments.
   3888 
   3889 
   3890 -----------------------------------------------------------------------
   3891  VERSION 1.53 (Released 2017-12-25)
   3892 -----------------------------------------------------------------------
   3893 
   3894 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.53
   3895 
   3896 Breaking Changes:
   3897 
   3898 - Renamed the emblematic `ShowTestWindow()` function to `ShowDemoWindow()`. Kept redirection function (will obsolete).
   3899 - Renamed `GetItemsLineHeightWithSpacing()` to `GetFrameHeightWithSpacing()` for consistency. Kept redirection function (will obsolete).
   3900 - Renamed `ImGuiTreeNodeFlags_AllowOverlapMode` flag to `ImGuiTreeNodeFlags_AllowItemOverlap`. Kept redirection enum (will obsolete).
   3901 - Obsoleted `IsRootWindowFocused()` in favor of using `IsWindowFocused(ImGuiFocusedFlags_RootWindow)`. Kept redirection function (will obsolete). (#1382)
   3902 - Obsoleted `IsRootWindowOrAnyChildFocused()` in favor of using `IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows)`. Kept redirection function (will obsolete). (#1382)
   3903 - Obsoleted `IsRootWindowOrAnyChildHovered()` in favor of using `IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows)`. Kept redirection function (will obsolete). (#1382)
   3904 - Obsoleted `SetNextWindowContentWidth() in favor of using `SetNextWindowContentSize()`. Kept redirection function (will obsolete).
   3905 - Renamed `ImGuiTextBuffer::append()` helper to `appendf()`, and `appendv()` to `appendfv()` for consistency. If you copied the 'Log' demo in your code, it uses appendv() so that needs to be renamed.
   3906 - ImDrawList: Removed 'bool anti_aliased = true' final parameter of `ImDrawList::AddPolyline()` and `ImDrawList::AddConvexPolyFilled()`. Prefer manipulating ImDrawList::Flags if you need to toggle them during the frame.
   3907 - Style, ImDrawList: Renamed `style.AntiAliasedShapes` to `style.AntiAliasedFill` for consistency and as a way to explicitly break code that manipulate those flag at runtime. You can now manipulate ImDrawList::Flags.
   3908 - Style, Begin: Removed `ImGuiWindowFlags_ShowBorders` window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. `style.FrameBorderSize`, `style.WindowBorderSize`, `style.PopupBorderSize`).
   3909   Use `ImGui::ShowStyleEditor()` to look them up.
   3910   Please note that the style system will keep evolving (hopefully stabilizing in Q1 2018), and so custom styles will probably subtly break over time.
   3911   It is recommended that you use the `StyleColorsClassic()`, `StyleColorsDark()`, `StyleColorsLight()` functions. Also see `ShowStyleSelector()`.
   3912 - Style: Removed `ImGuiCol_ComboBg` in favor of combo boxes using `ImGuiCol_PopupBg` for consistency. Combo are normal pop-ups.
   3913 - Style: Renamed `ImGuiCol_ChildWindowBg` to `ImGuiCol_ChildBg`.
   3914 - Style: Renamed `style.ChildWindowRounding` to `style.ChildRounding`, `ImGuiStyleVar_ChildWindowRounding` to `ImGuiStyleVar_ChildRounding`.
   3915 - Removed obsolete redirection functions: SetScrollPosHere() - marked obsolete in v1.42, July 2015.
   3916 - Removed obsolete redirection functions: GetWindowFont(), GetWindowFontSize() - marked obsolete in v1.48, March 2016.
   3917 
   3918 Other Changes:
   3919 
   3920 - Added `io.OptCursorBlink` option to allow disabling cursor blinking. (#1427) [renamed to io.ConfigCursorBlink in 1.63]
   3921 - Added `GetOverlayDrawList()` helper to quickly get access to a ImDrawList that will be rendered in front of every windows.
   3922 - Added `GetFrameHeight()` helper which returns `(FontSize + style.FramePadding.y * 2)`.
   3923 - Drag and Drop: Added Beta API to easily use drag and drop patterns between imgui widgets.
   3924   - Setup a source on a widget with `BeginDragDropSource()`, `SetDragDropPayload()`, `EndDragDropSource()` functions.
   3925   - Receive data with `BeginDragDropTarget()`, `AcceptDragDropPayload()`, `EndDragDropTarget()`.
   3926   - See ImGuiDragDropFlags for various options.
   3927   - The ColorEdit4() and ColorButton() widgets now support Drag and Drop.
   3928   - The API is tagged as Beta as it still may be subject to small changes.
   3929 - Drag and Drop: When drag and drop is active, tree nodes and collapsing header can be opened by hovering on them for 0.7 seconds.
   3930 - Renamed io.OSXBehaviors to io.OptMacOSXBehaviors. Should not affect users as the compile-time default is usually enough. (#473, #650)
   3931 - Style: Added StyleColorsDark() style. (#707) [@dougbinks]
   3932 - Style: Added StyleColorsLight() style. Best used with frame borders + thicker font than the default font. (#707)
   3933 - Style: Added style.PopupRounding setting. (#1112)
   3934 - Style: Added style.FrameBorderSize, style.WindowBorderSize, style.PopupBorderSize. Removed ImGuiWindowFlags_ShowBorders window flag!
   3935   Borders are now fully set up in the ImGuiStyle structure. Use ImGui::ShowStyleEditor() to look them up. (#707, fix #819, #1031)
   3936 - Style: Various small changes to the classic style (most noticeably, buttons are now using blue shades). (#707)
   3937 - Style: Renamed ImGuiCol_ChildWindowBg to ImGuiCol_ChildBg.
   3938 - Style: Renamed style.ChildWindowRounding to style.ChildRounding, ImGuiStyleVar_ChildWindowRounding to ImGuiStyleVar_ChildRounding.
   3939 - Style: Removed ImGuiCol_ComboBg in favor of combo boxes using ImGuiCol_PopupBg for consistency. (#707)
   3940 - Style: Made the ScaleAllSizes() helper rounds down every values so they are aligned on integers.
   3941 - Focus: Added SetItemDefaultFocus(), which in the current (master) branch behave the same as doing `if (IsWindowAppearing()) SetScrollHere()`.
   3942   In the navigation branch this will also set the default focus. Prefer using this when creating combo boxes with `BeginCombo()` so your code will be forward-compatible with gamepad/keyboard navigation features. (#787)
   3943 - Combo: Pop-up grows horizontally to accommodate for contents that is larger then the parent combo button.
   3944 - Combo: Added BeginCombo()/EndCombo() API which allows use to submit content of any form and manage your selection state without relying on indices.
   3945 - Combo: Added ImGuiComboFlags_PopupAlignLeft flag to BeginCombo() to prioritize keeping the pop-up on the left side (for small-button-looking combos).
   3946 - Combo: Added ImGuiComboFlags_HeightSmall, ImGuiComboFlags_HeightLarge, ImGuiComboFlags_HeightLargest to easily provide desired pop-up height.
   3947 - Combo: You can use SetNextWindowSizeConstraints() before BeginCombo() to specify specific pop-up width/height constraints.
   3948 - Combo: Offset popup position by border size so that a double border isn't so visible. (#707)
   3949 - Combo: Recycling windows by using a stack number instead of a unique id, wasting less memory (like menus do).
   3950 - InputText: Added ImGuiInputTextFlags_NoUndoRedo flag. (#1506, #1508) [@ibachar]
   3951 - Window: Fixed auto-resize allocating too much space for scrollbar when SizeContents is bigger than maximum window size (fixes c0547d3). (#1417)
   3952 - Window: Child windows with MenuBar use regular WindowPadding.y so layout look consistent as child or as a regular window.
   3953 - Window: Begin(): Fixed appending into a child window with a second Begin() from a different window stack querying the wrong window for the window->Collapsed test.
   3954 - Window: Calling IsItemActive(), IsItemHovered() etc. after a call to Begin() provides item data for the title bar, so you can easily test if the title bar is being hovered, etc. (#823)
   3955 - Window: Made it possible to use SetNextWindowPos() on a child window.
   3956 - Window: Fixed a one frame glitch. When an appearing window claimed the focus themselves, the title bar wouldn't use the focused color for one frame.
   3957 - Window: Added ImGuiWindowFlags_ResizeFromAnySide flag to resize from any borders or from the lower-left corner of a window. This requires your backend to honor GetMouseCursor() requests for full usability. (#822)
   3958 - Window: Sizing fixes when using SetNextWindowSize() on individual axises.
   3959 - Window: Hide new window for one frame until they calculate their size. Also fixes SetNextWindowPos() given a non-zero pivot. (#1694)
   3960 - Window: Made mouse wheel scrolling accommodate better to windows that are smaller than the scroll step.
   3961 - Window: SetNextWindowContentSize() adjust for the size of decorations (title bar/menu bar), but _not_ for borders are we consistently make borders not affect layout.
   3962   If you need a non-child window of an exact size with border enabled but zero window padding, you'll need to accommodate for the border size yourself.
   3963 - Window: Using the ImGuiWindowFlags_NoScrollWithMouse flag on a child window forwards the mouse wheel event to the parent window, unless either ImGuiWindowFlags_NoInputs or ImGuiWindowFlags_NoScrollbar are also set. (#1380, #1502)
   3964 - Window: Active Modal window always set the WantCaptureKeyboard flag. (#744)
   3965 - Window: Moving window doesn't use accumulating MouseDelta so straying out of imgui boundaries keeps moved imgui window at the same cursor-relative position.
   3966 - IsWindowFocused(): Added ImGuiFocusedFlags_ChildWindows flag to include child windows in the focused test. (#1382).
   3967 - IsWindowFocused(): Added ImGuiFocusedFlags_RootWindow flag to start focused test from the root (top-most) window. Obsolete IsRootWindowFocused(). (#1382)
   3968 - IsWindowHovered(): Added ImGuiHoveredFlags_ChildWindows flag to include child windows in the hovered test. (#1382).
   3969 - IsWindowHovered(): Added ImGuiHoveredFlags_RootWindow flag to start hovered test from the root (top-most) window. The combination of both flags obsoletes IsRootWindowOrAnyChildHovered(). (#1382)
   3970 - IsWindowHovered(): Fixed return value when an item is active to use the same logic as IsItemHovered(). (#1382, #1404)
   3971 - IsWindowHovered(): Always return true when current window is being moved. (#1382)
   3972 - Scrollbar: Fixed issues with vertical scrollbar flickering/appearing, typically when manually resizing and using a pattern of filling available height (e.g. full sized BeginChild).
   3973 - Scrollbar: Minor graphical fix for when scrollbar don't have enough visible space to display the full grab.
   3974 - Scrolling: Fixed padding and scrolling asymmetry where lower/right sides of a window wouldn't use WindowPadding properly + causing minor scrolling glitches.
   3975 - Tree: TreePush with zero arguments was ambiguous. Resolved by making it call TreePush(const void*). [@JasonWilkins]
   3976 - Tree: Renamed ImGuiTreeNodeFlags_AllowOverlapMode to ImGuiTreeNodeFlags_AllowItemOverlap. (#600, #1330)
   3977 - MenuBar: Fixed minor rendering issues on the right size when resizing a window very small and using rounded window corners.
   3978 - MenuBar: better software clipping to handle small windows, in particular child window don't have minimum constraints so we need to render clipped menus better.
   3979 - BeginMenu(): Tweaked the Arrow/Triangle displayed on child menu items.
   3980 - Columns: Clipping columns borders on Y axis on CPU because some Linux GPU drivers appears to be unhappy with triangle spanning large regions. (#125)
   3981 - Columns: Added ImGuiColumnsFlags_GrowParentContentsSize to internal API to restore old content sizes behavior (may be obsolete). (#1444, #125)
   3982 - Columns: Columns width is no longer lost when dragging a column to the right side of the window, until releasing the mouse button you have a chance to save them. (#1499, #125). [@ggtucker]
   3983 - Columns: Fixed dragging when using a same of columns multiple times in the frame. (#125)
   3984 - Indent(), Unindent(): Allow passing negative values.
   3985 - ColorEdit4(): Made IsItemActive() return true when picker pop-up is active. (#1489)
   3986 - ColorEdit4(): Tweaked tooltip so that the color button aligns more correctly with text.
   3987 - ColorEdit4(): Support drag and drop. Color buttons can be used as drag sources, and ColorEdit widgets as drag targets. (#143)
   3988 - ColorPicker4(): Fixed continuously returning true when holding mouse button on the sat/value/alpha locations. We only return true on value change. (#1489)
   3989 - NewFrame(): using literal strings in the most-frequently firing IM_ASSERT expressions to increase the odd of programmers seeing them (especially those who don't use a debugger).
   3990 - NewFrame() now asserts if neither Render or EndFrame have been called. Exposed EndFrame(). Made it legal to call EndFrame() more than one. (#1423)
   3991 - ImGuiStorage: Added BuildSortByKey() helper to rebuild storage from scratch.
   3992 - ImFont: Added GetDebugName() helper.
   3993 - ImFontAtlas: Added missing Thai punctuation in the GetGlyphRangesThai() ranges. (#1396) [@nProtect]
   3994 - ImDrawList: Removed 'bool anti_aliased = true' final parameter of ImDrawList::AddPolyline() and ImDrawList::AddConvexPolyFilled(). Anti-aliasing is controlled via the regular style.AntiAliased flags.
   3995 - ImDrawList: Added ImDrawList::AddImageRounded() helper. (#845) [@thedmd]
   3996 - ImDrawList: Refactored to make ImDrawList independent of ImGui. Removed static variable in PathArcToFast() which caused linking issues to some.
   3997 - ImDrawList: Exposed ImDrawCornerFlags, replaced occurrences of ~0 with an explicit ImDrawCornerFlags_All. NB: Inversed BotLeft (prev 1<<3, now 1<<2) and BotRight (prev 1<<2, now 1<<3).
   3998 - ImVector: Added ImVector::push_front() helper.
   3999 - ImVector: Added ImVector::contains() helper.
   4000 - ImVector: insert() uses grow_capacity() instead of using grow policy inconsistent with push_back().
   4001 - Internals: Remove requirement to define IMGUI_DEFINE_PLACEMENT_NEW to use the IM_PLACEMENT_NEW macro. (#1103)
   4002 - Internals: ButtonBehavior: Fixed ImGuiButtonFlags_NoHoldingActiveID flag from incorrectly setting the ActiveIdClickOffset field.
   4003   This had no known effect within imgui code but could have affected custom drag and drop patterns. And it is more correct this way! (#1418)
   4004 - Internals: ButtonBehavior: Fixed ImGuiButtonFlags_AllowOverlapMode to avoid temporarily activating widgets on click before they have been correctly double-hovered. (#319, #600)
   4005 - Internals: Added SplitterBehavior() helper. (#319)
   4006 - Internals: Added IM_NEW(), IM_DELETE() helpers. (#484, #504, #1517)
   4007 - Internals: Basic refactor of the settings API which now allows external elements to be loaded/saved.
   4008 - Demo: Added ShowFontSelector() showing loaded fonts.
   4009 - Demo: Added ShowStyleSelector() to select among default styles. (#707)
   4010 - Demo: Renamed the emblematic ShowTestWindow() function to ShowDemoWindow().
   4011 - Demo: Style Editor: Added a "Simplified settings" sections with check-boxes for border size and frame rounding. (#707, #1019)
   4012 - Demo: Style Editor: Added combo box to select stock styles and select current font when multiple are loaded. (#707)
   4013 - Demo: Style Editor: Using local storage so Save/Revert button makes more sense without code passing its storage. Added horizontal scroll bar. Fixed Save/Revert button to be always accessible. (#1211)
   4014 - Demo: Console: Fixed context menu issue. (#1404)
   4015 - Demo: Console: Fixed incorrect positioning which was hidden by a minor scroll issue (this would affect people who copied the Console code as is).
   4016 - Demo: Constrained Resize: Added more test cases. (#1417)
   4017 - Demo: Custom Rendering: Fixed clipping rectangle extruding out of parent window.
   4018 - Demo: Layout: Removed unnecessary and misleading BeginChild/EndChild calls.
   4019 - Demo: The "Color Picker with Palette" demo supports drag and drop. (#143)
   4020 - Demo: Display better mouse cursor info for debugging backends.
   4021 - Demo: Stopped using rand() function in demo code.
   4022 - Examples: Added a handful of extra comments (about fonts, third-party libraries used in the examples, etc.).
   4023 - Examples: DirectX9: Handle loss of D3D9 device (D3DERR_DEVICELOST). (#1464)
   4024 - Examples: Added null_example/ which is helpful for quick testing on multiple compilers/settings without relying on graphics library.
   4025 - Fix for using alloca() in "Clang with Microsoft Codechain" mode.
   4026 - Various fixes, optimizations, comments.
   4027 
   4028 
   4029 -----------------------------------------------------------------------
   4030  VERSION 1.52 (2017-10-27)
   4031 -----------------------------------------------------------------------
   4032 
   4033 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.52
   4034 
   4035 Breaking Changes:
   4036 
   4037 - IO: `io.MousePos` needs to be set to ImVec2(-FLT_MAX,-FLT_MAX) when mouse is unavailable/missing, instead of ImVec2(-1,-1) as previously) This is needed so we can clear `io.MouseDelta` field when the mouse is made available again.
   4038 - Renamed `AlignFirstTextHeightToWidgets()` to `AlignTextToFramePadding()`. Kept inline redirection function (will obsolete).
   4039 - Obsoleted the legacy 5 parameters version of Begin(). Please avoid using it. If you need a transparent window background, uses `PushStyleColor()`. The old size parameter there was also misleading and equivalent to calling `SetNextWindowSize(size, ImGuiCond_FirstTimeEver)`. Kept inline redirection function (will obsolete).
   4040 - Obsoleted `IsItemHoveredRect()`, `IsMouseHoveringWindow()` in favor of using the newly introduced flags of `IsItemHovered()` and `IsWindowHovered()`. Kept inline redirection function (will obsolete). (#1382)
   4041 - Obsoleted 'SetNextWindowPosCenter()' in favor of using 1SetNextWindowPos()` with a pivot value which allows to do the same and more. Keep inline redirection function.
   4042 - Removed `IsItemRectHovered()`, `IsWindowRectHovered()` recently introduced in 1.51 which were merely the more consistent/correct names for the above functions which are now obsolete anyway. (#1382)
   4043 - Changed `IsWindowHovered()` default parameters behavior to return false if an item is active in another window (e.g. click-dragging item from another window to this window). You can use the newly introduced IsWindowHovered() flags to requests this specific behavior if you need it. (#1382)
   4044 - Renamed imconfig.h's `IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS`/`IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS` to `IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS`/`IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS` for consistency.
   4045 - Renamed ImFont::Glyph to ImFontGlyph. Kept redirection typedef (will obsolete).
   4046 
   4047 Other Changes:
   4048 
   4049 - ProgressBar: fixed rendering when straddling rounded area. (#1296)
   4050 - SliderFloat, DragFloat: Using scientific notation e.g. "%.1e" in the displayed format string doesn't mistakenly trigger rounding of the value. [@MomentsInGraphics]
   4051 - Combo, InputFloat, InputInt: Made the small button on the right side align properly with the equivalent colored button of ColorEdit4().
   4052 - IO: Tweaked logic for `io.WantCaptureMouse` so it now outputs false when e.g. hovering over void while an InputText() is active. (#621) [@pdoane]
   4053 - IO: Fixed `io.WantTextInput` from mistakenly outputting true when an activated Drag or Slider was previously turned into an InputText(). (#1317)
   4054 - Misc: Added flags to `IsItemHovered()`, `IsWindowHovered()` to access advanced hovering-test behavior. Generally useful for pop-ups and drag and drop behaviors: (relates to ~#439, #1013, #143, #925)
   4055   - `ImGuiHoveredFlags_AllowWhenBlockedByPopup`
   4056   - `ImGuiHoveredFlags_AllowWhenBlockedByActiveItem`
   4057   - `ImGuiHoveredFlags_AllowWhenOverlapped`
   4058   - `ImGuiHoveredFlags_RectOnly`
   4059 - Input: Added `IsMousePosValid()` helper.
   4060 - Input: Added `GetKeyPressedAmount()` to easily measure press count when the repeat rate is faster than the frame rate.
   4061 - Input/Focus: Disabled TAB and Shift+TAB when CTRL key is held.
   4062 - CheckBox: Now rendering a tick mark instead of a full square.
   4063 - ColorEdit4: Added "Copy as..." option in context menu. (#346)
   4064 - ColorPicker: Improved ColorPicker hue wheel color interpolation. (#1313) [@thevaber]
   4065 - ColorButton: Reduced bordering artifact that would be particularly visible with an opaque Col_FrameBg and FrameRounding enabled.
   4066 - ColorButton: Fixed rendering color button with a checkerboard if the transparency comes from the global style.Alpha and not from the actual source color.
   4067 - TreeNode: Added `ImGuiTreeNodeFlags_FramePadding` flag to conveniently create a tree node with full padding at the beginning of a line, without having to call `AlignTextToFramePadding()`.
   4068 - Trees: Fixed calling `SetNextTreeNodeOpen()` on a collapsed window leaking to the first tree node item of the next frame.
   4069 - Layout: Horizontal layout is automatically enforced in a menu bar, so you can use non-MenuItem elements without calling SameLine().
   4070 - Separator: Output a vertical separator when used inside a menu bar (or in general when horizontal layout is active, but that isn't exposed yet!).
   4071 - Window: Added `IsWindowAppearing()` helper (helpful e.g. as a condition before initializing some of your own things.).
   4072 - Window: Added pivot parameter to `SetNextWindowPos()`, making it possible to center or right align a window. Obsoleted `SetNextWindowPosCenter()`.
   4073 - Window: Fixed title bar color of top-most window under a modal window.
   4074 - Window: Fixed not being able to move a window by clicking on one of its child window. (#1337, #635)
   4075 - Window: Fixed `Begin()` auto-fit calculation code that predict the presence of a scrollbar so it works better when window size constraints are used.
   4076 - Window: Fixed calling `Begin()` more than once per frame setting `window_just_activated_by_user` which in turn would set enable the Appearing condition for that frame.
   4077 - Window: The implicit "Debug" window now uses a "Debug##Default" identifier instead of "Debug" to allow user creating a window called "Debug" without losing their custom flags.
   4078 - Window: Made the `ImGuiWindowFlags_NoMove` flag properly inherited from parent to child. In a setup with ParentWindow (no flag) -> Child (NoMove) -> SubChild (no flag), the user won't be able to move the parent window by clicking on SubChild. (#1381)
   4079 - Popups: Pop-ups can be closed with a right-click anywhere, without altering focus under the pop-up. (~#439)
   4080 - Popups: `BeginPopupContextItem()`, `BeginPopupContextWindow()` are now setup to allow reopening a context menu by right-clicking again. (~#439)
   4081 - Popups: `BeginPopupContextItem()` now supports a NULL string identifier and uses the last item ID if available.
   4082 - Popups: Added `OpenPopupOnItemClick()` helper which mimic `BeginPopupContextItem()` but doesn't do the BeginPopup().
   4083 - MenuItem: Only activating on mouse release. [@Urmeli0815] (was already fixed in nav branch).
   4084 - MenuItem: Made tick mark thicker (thick mark?).
   4085 - MenuItem: Tweaks to be usable inside a menu bar (nb: it looks like a regular menu and thus is misleading, prefer using Button() and regular widgets in menu bar if you need to). (#1387)
   4086 - ImDrawList: Fixed a rare draw call merging bug which could lead to undisplayed triangles. (#1172, #1368)
   4087 - ImDrawList: Fixed a rare bug in `ChannelsMerge()` when all contents has been clipped, leading to an extraneous draw call being created. (#1172, #1368)
   4088 - ImFont: Added `AddGlyph()` building helper for use by custom atlas builders.
   4089 - ImFontAtlas: Added support for CustomRect API to submit custom rectangles to be packed into the atlas. You can map them as font glyphs, or use them for custom purposes.
   4090   After the atlas is built you can query the position of your rectangles in the texture and then copy your data there. You can use this features to create e.g. full color font-mapped icons.
   4091 - ImFontAtlas: Fixed fall-back handling when merging fonts, if a glyph was missing from the second font input it could have used a glyph from the first one. (#1349) [@inolen]
   4092 - ImFontAtlas: Fixed memory leak on build failure case when stbtt_InitFont failed (generally due to incorrect or supported font type). (#1391) (@Moka42)
   4093 - ImFontConfig: Added `RasterizerMultiply` option to alter the brightness of individual fonts at rasterization time, which may help increasing readability for some.
   4094 - ImFontConfig: Added `RasterizerFlags` to pass options to custom rasterizer (e.g. the [imgui_freetype](https://github.com/ocornut/imgui_club/tree/master/imgui_freetype) rasterizer in imgui_club has such options).
   4095 - ImVector: added resize() variant with initialization value.
   4096 - Misc: Changed the internal name formatting of child windows identifier to use slashes (instead of dots) as separator, more readable.
   4097 - Misc: Fixed compilation with `IMGUI_DISABLE_OBSOLETE_FUNCTIONS` defined.
   4098 - Misc: Marked all format+va_list functions with format attribute so GCC/Clang can warn about misuses.
   4099 - Misc: Fixed compilation on NetBSD due to missing alloca.h (#1319) [@RyuKojiro]
   4100 - Misc: Improved warnings compilation for newer versions of Clang. (#1324) (@waywardmonkeys)
   4101 - Misc: Added `io.WantMoveMouse flags` (from Nav branch) and honored in Examples applications. Currently unused but trying to spread Examples applications code that supports it.
   4102 - Misc: Added `IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS` support in imconfig.h to allow user reimplementing the `ImFormatString()` functions e.g. to use stb_printf(). (#1038)
   4103 - Misc: [Windows] Fixed default Win32 `SetClipboardText()` handler leaving the Win32 clipboard handler unclosed on failure. [@pdoane]
   4104 - Style: Added `ImGuiStyle::ScaleAllSizes(float)` helper to make it easier to have application transition e.g. from low to high DPI with a matching style.
   4105 - Metrics: Draw window bounding boxes when hovering Pos/Size; List all draw layers; Trimming empty commands like Render() does.
   4106 - Examples: OpenGL3: Save and restore sampler state. (#1145) [@nlguillemot]
   4107 - Examples: OpenGL2, OpenGL3: Save and restore polygon mode. (#1307) [@JJscott]
   4108 - Examples: DirectX11: Allow creating device with feature level 10 since we don't really need much for that example. (#1333)
   4109 - Examples: DirectX9/10/12: Using the Win32 SetCapture/ReleaseCapture API to read mouse coordinates when they are out of bounds. (#1375) [@Gargaj, @ocornut]
   4110 - Tools: Fixed binary_to_compressed_c tool to return 0 when successful. (#1350) [@benvanik]
   4111 - Internals: Exposed more helpers and unfinished features in imgui_internal.h. (use at your own risk!).
   4112 - Internals: A bunch of internal refactoring, hopefully haven't broken anything! Merged a bunch of internal changes from the upcoming Navigation branch.
   4113 - Various tweaks, fixes and documentation changes.
   4114 
   4115 Beta Navigation Branch:
   4116 (Lots of work has been done toward merging the Beta Gamepad/Keyboard Navigation branch (#787) in master.)
   4117 (Please note that this branch is always kept up to date with master. If you are using the navigation branch, some of the changes include:)
   4118 - Nav: Added `#define IMGUI_HAS_NAV` in imgui.h to ease sharing code between both branches. (#787)
   4119 - Nav: MainMenuBar now releases focus when user gets out of the menu layer. (#787)
   4120 - Nav: When applying focus to a window with only menus, the menu layer is automatically activated. (#787)
   4121 - Nav: Added `ImGuiNavInput_KeyMenu` (~Alt key) aside from ImGuiNavInput_PadMenu input as it is one differentiator of pad vs keyboard that was detrimental to the keyboard experience. Although isn't officially supported, it makes the current experience better. (#787)
   4122 - Nav: Move requests now wrap vertically inside Menus and Pop-ups. (#787)
   4123 - Nav: Allow to collapse tree nodes with NavLeft and open them with NavRight. (#787, #1079).
   4124 - Nav: It's now possible to navigate sibling of a menu-bar while navigating inside one of their child. If a Left<>Right navigation request fails to find a match we forward the request to the root menu. (#787, #126)
   4125 - Nav: Fixed `SetItemDefaultFocus` from stealing default focus when we are initializing default focus for a menu bar layer. (#787)
   4126 - Nav: Support for fall-back horizontal scrolling with PadLeft/PadRight (nb: fall-back scrolling is only used to navigate windows that have no interactive items). (#787)
   4127 - Nav: Fixed tool-tip from being selectable in the window selection list. (#787)
   4128 - Nav: `CollapsingHeader(bool*)` variant: fixed for `IsItemHovered()` not working properly in the nav branch. (#600, #787)
   4129 - Nav: InputText: Fixed using Up/Down history callback feature when Nav is enabled. (#787)
   4130 - Nav: InputTextMultiline: Fixed navigation/selection. Disabled selecting all when activating a multi-line text editor. (#787)
   4131 - Nav: More consistently drawing a (thin) navigation rectangle hover filled frames such as tree nodes, collapsing header, menus. (#787)
   4132 - Nav: Various internal refactoring.
   4133 
   4134 
   4135 -----------------------------------------------------------------------
   4136  VERSION 1.51 (2017-08-24)
   4137 -----------------------------------------------------------------------
   4138 
   4139 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.51
   4140 
   4141 Breaking Changes:
   4142 
   4143 Work on dear imgui has been gradually resuming. It means that fixes and new features should be tackled at a faster rate than last year. However, in order to move forward with the library and get rid of some cruft, I have taken the liberty to be a little bit more aggressive than usual with API breaking changes. Read the details below and search for those names in your code! In the grand scheme of things, those changes are small and should not affect everyone, but this is technically our most aggressive release so far in term of API breakage. If you want to be extra forward-facing, you can enable `#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS` in your imconfig.h to disable the obsolete names/redirection.
   4144 
   4145 - Renamed `IsItemHoveredRect()` to `IsItemRectHovered()`. Kept inline redirection function (will obsolete).
   4146 - Renamed `IsMouseHoveringWindow()` to `IsWindowRectHovered()` for consistency. Kept inline redirection function (will obsolete).
   4147 - Renamed `IsMouseHoveringAnyWindow()` to `IsAnyWindowHovered()` for consistency. Kept inline redirection function (will obsolete).
   4148 - Renamed `ImGuiCol_Columns***` enums to `ImGuiCol_Separator***`. Kept redirection enums (will obsolete).
   4149 - Renamed `ImGuiSetCond***` types and enums to `ImGuiCond***`. Kept redirection enums (will obsolete).
   4150 - Renamed `GetStyleColName()` to `GetStyleColorName()` for consistency. Unlikely to be used by end-user!
   4151 - Added `PushStyleColor(ImGuiCol idx, ImU32 col)` overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicitly to fix.
   4152 - Marked the weird `IMGUI_ONCE_UPON_A_FRAME` helper macro as obsolete. Prefer using the more explicit `ImGuiOnceUponAFrame`.
   4153 - Changed `ColorEdit4(const char* label, float col[4], bool show_alpha = true)` signature to `ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0)`, where flags 0x01 is a safe no-op (hello dodgy backward compatibility!). The new `ColorEdit4`/`ColorPicker4` functions have lots of available flags! Check and run the demo window, under "Color/Picker Widgets", to understand the various new options.
   4154 - Changed signature of `ColorButton(ImVec4 col, bool small_height = false, bool outline_border = true)` to `ColorButton(const char* desc_id, ImVec4 col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0))`. This function was rarely used and was very dodgy (no explicit ID!).
   4155 - Changed `BeginPopupContextWindow(bool also_over_items=true, const char* str_id=NULL, int mouse_button=1)` signature to `(const char* str_id=NULL, int mouse_button=1, bool also_over_items=true)`. This is perhaps the most aggressive change in this update, but note that the majority of users relied on default parameters completely, so this will affect only a fraction of users of this already rarely used function.
   4156 - Removed `IsPosHoveringAnyWindow()`, which was partly broken and misleading. In the vast majority of cases, people using that function wanted to use `io.WantCaptureMouse` flag. Replaced with IM_ASSERT + comment redirecting user to `io.WantCaptureMouse`. (#1237)
   4157 - Removed the old `ValueColor()` helpers, they are equivalent to calling `Text(label)` + `SameLine()` + `ColorButton()`.
   4158 - Removed `ColorEditMode()` and `ImGuiColorEditMode` type in favor of `ImGuiColorEditFlags` and parameters to the various Color*() functions. The `SetColorEditOptions()` function allows to initialize default but the user can still change them with right-click context menu. Commenting out your old call to `ColorEditMode()` may just be fine!
   4159 
   4160 Other Changes:
   4161 
   4162 - Added flags to `ColorEdit3()`, `ColorEdit4()`. The color edit widget now has a context-menu and access to the color picker. (#346)
   4163 - Added flags to `ColorButton()`. (#346)
   4164 - Added `ColorPicker3()`, `ColorPicker4()`. The API along with those of the updated `ColorEdit4()` was designed so you may use them in various situation and hopefully compose your own picker if required. There are a bunch of available flags, check the Demo window and comment for `ImGuiColorEditFlags_`. Some of the options it supports are: two color picker types (hue bar + sat/val rectangle, hue wheel + rotating sat/val triangle), display as u8 or float, lifting 0.0..1.0 constraints (currently rgba only), context menus, alpha bar, background checkerboard options, preview tooltip, basic revert. For simple use, calling the existing `ColorEdit4()` function as you did before will be enough, as you can now open the color picker from there. (#346) [@r-lyeh, @nem0, @thennequin, @dariomanesku and @ocornut]
   4165 - Added `SetColorEditOptions()` to set default color options (e.g. if you want HSV over RGBA, float over u8, select a default picker mode etc. at startup time without a user intervention. Note that the user can still change options with the context menu unless disabled with `ImGuiColorFlags_NoOptions` or explicitly enforcing a display type/picker mode etc.).
   4166 - Added user-facing `IsPopupOpen()` function. (#891) [@mkeeter]
   4167 - Added `GetColorU32(u32)` variant that perform the style alpha multiply without a floating-point round trip, and helps makes code more consistent when using ImDrawList APIs.
   4168 - Added `PushStyleColor(ImGuiCol idx, ImU32 col)` overload.
   4169 - Added `GetStyleColorVec4(ImGuiCol idx)` which is equivalent to accessing `ImGui::GetStyle().Colors[idx]` (aka return the raw style color without alpha alteration).
   4170 - ImFontAtlas: Added `GlyphRangesBuilder` helper class, which makes it easier to build custom glyph ranges from your app/game localization data, or add into existing glyph ranges.
   4171 - ImFontAtlas: Added `TexGlyphPadding` option. (#1282) [@jadwallis]
   4172 - ImFontAtlas: Made it possible to override size of AddFontDefault() (even if it isn't really recommended!).
   4173 - ImDrawList: Added `GetClipRectMin()`, `GetClipRectMax()` helpers.
   4174 - Fixed Ini saving crash if the ImGuiWindowFlags_NoSavedSettings gets removed from a window after its creation (unlikely!). (#1000)
   4175 - Fixed `PushID()`/`PopID()` from marking parent window as Accessed (which needlessly woke up the root "Debug" window when used outside of a regular window). (#747)
   4176 - Fixed an assert when calling `CloseCurrentPopup()` twice in a row. [@nem0]
   4177 - Window size can be loaded from .ini data even if ImGuiWindowFlags_NoResize flag is set. (#1048, #1056)
   4178 - Columns: Added `SetColumnWidth()`. (#913) [@ggtucker]
   4179 - Columns: Dragging a column preserve its width by default. (#913) [@ggtucker]
   4180 - Columns: Fixed first column appearing wider than others. (#1266)
   4181 - Columns: Fixed allocating space on the right-most side with the assumption of a vertical scrollbar. The space is only allocated when needed. (#125, #913, #893, #1138)
   4182 - Columns: Fixed the right-most column from registering its content width to the parent window, which led to various issues when using auto-resizing window or e.g. horizontal scrolling. (#519, #125, #913)
   4183 - Columns: Refactored some of the columns code internally toward a better API (not yet exposed) + minor optimizations. (#913) [@ggtucker, @ocornut]
   4184 - Popups: Most pop-ups windows can be moved by the user after appearing (if they don't have explicit positions provided by caller, or e.g. sub-menu pop-up). The previous restriction was totally arbitrary. (#1252)
   4185 - Tooltip: `SetTooltip()` is expanded immediately into a window, honoring current font / styling setting. Add internal mechanism to override tooltips. (#862)
   4186 - PlotHistogram: bars are drawn based on zero-line, so negative values are going under. (#828)
   4187 - Scrolling: Fixed return values of `GetScrollMaxX()`, `GetScrollMaxY()` when both scrollbars were enabled. Tweak demo to display more data. (#1271) [@degracode]
   4188 - Scrolling: Fixes for Vertical Scrollbar not automatically getting enabled if enabled Horizontal Scrollbar straddle the vertical limit. (#1271, #246)
   4189 - Scrolling: `SetScrollHere()`, `SetScrollFromPosY()`: Fixed Y scroll aiming when Horizontal Scrollbar is enabled. (#665).
   4190 - [Windows] Clipboard: Fixed not closing Win32 clipboard on early open failure path. (#1264)
   4191 - Removed an unnecessary dependency on int64_t which failed on some older compilers.
   4192 - Demo: Rearranged everything under Widgets in a more consistent way.
   4193 - Demo: Columns: Added Horizontal Scrolling demo. Tweaked another Columns demo. (#519, #125, #913)
   4194 - Examples: OpenGL: Various makefiles for MINGW, Linux. (#1209, #1229, #1209) [@fr500, @acda]
   4195 - Examples: Enabled vsync by default in example applications, so it doesn't confuse people that the sample run at 2000+ fps and waste an entire CPU. (#1213, #1151).
   4196 - Various other small fixes, tweaks, comments, optimizations.
   4197 
   4198 
   4199 -----------------------------------------------------------------------
   4200  VERSION 1.50 (2017-06-02)
   4201 -----------------------------------------------------------------------
   4202 
   4203 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.50
   4204 
   4205 Breaking Changes:
   4206 
   4207 - Added a void* user_data parameter to Clipboard function handlers. (#875)
   4208 - SameLine(x) with x>0.0f is now relative to left of column/group if any, and not always to left of window. This was sort of always the intent and hopefully breakage should be minimal.
   4209 - Renamed ImDrawList::PathFill() - rarely used directly - to ImDrawList::PathFillConvex() for clarity and consistency.
   4210 - Removed ImFontConfig::MergeGlyphCenterV in favor of a more multipurpose ImFontConfig::GlyphOffset.
   4211 - Style: style.WindowTitleAlign is now a ImVec2 (ImGuiAlign enum was removed). set to (0.5f,0.5f) for horizontal+vertical centering, (0.0f,0.0f) for upper-left, etc.
   4212 - BeginChild(const char*) now applies the stack id to the provided label, consistently with other functions as it should always have been. It shouldn't affect you unless (extremely unlikely) you were appending multiple times to a same child from different locations of the stack id. If that's the case, generate an id with GetId() and use it instead of passing string to BeginChild().
   4213 
   4214 Other Changes:
   4215 
   4216 - InputText(): Added support for CTRL+Backspace (delete word).
   4217 - InputText(): OSX uses Super+Arrows for home/end. Add Shortcut+Backspace support. (#650) [@michaelbartnett]
   4218 - InputText(): Got rid of individual OSX-specific options in ImGuiIO, added a single io.OSXBehaviors flag. (#473, #650)
   4219 - InputText(): Fixed pressing home key on last character when it isn't a trailing \n (#588, #815)
   4220 - InputText(): Fixed state corruption/crash bug in stb_textedit.h redo logic when exhausting undo/redo char buffer. (#715. #681)
   4221 - InputTextMultiline(): Fixed CTRL+DownArrow moving scrolling out of bounds.
   4222 - InputTextMultiline(): Scrollbar fix for when input and latched internal buffers differs in a way that affects vertical scrollbar existence. (#725)
   4223 - ImFormatString(): Fixed an overflow handling bug with implementation of vsnprintf() that do not return -1. (#793)
   4224 - BeginChild(const char*) now applies stack id to provided label, consistent with other widgets. (#894, #713)
   4225 - SameLine() with explicit X position is relative to left of group/columns. (ref #746, #125, #630)
   4226 - SliderInt(), SliderFloat() supports reverse direction (where v_min > v_max). (#854)
   4227 - SliderInt(), SliderFloat() better support for when v_min==v_max. (#919)
   4228 - SliderInt(), SliderFloat() enforces writing back value when interacting, to be consistent with other widgets. (#919)
   4229 - SliderInt, SliderFloat(): Fixed edge case where style.GrabMinSize being bigger than slider width can lead to a division by zero. (#919)
   4230 - Added IsRectVisible() variation with explicit start-end positions. (#768) [@thedmd]
   4231 - Fixed TextUnformatted() clipping bug in the large-text path when horizontal scroll has been applied. (#692, #246)
   4232 - Fixed minor text clipping issue in window title when using font straying above usual line. (#699)
   4233 - Fixed SetCursorScreenPos() fixed not adjusting CursorMaxPos as well.
   4234 - Fixed scrolling offset when using SetScrollY(), SetScrollFromPosY(), SetScrollHere() with menu bar.
   4235 - Fixed using IsItemActive() after EndGroup() or any widget using groups. (#840, #479)
   4236 - Fixed IsItemActive() lagging by one frame on initial widget activation. (#840)
   4237 - Fixed Separator() zero-height bounding box resulting in clipping when laying exactly on top line of clipping rectangle (#860)
   4238 - Fixed PlotLines() PlotHistogram() calling with values_count == 0.
   4239 - Fixed clicking on a window's void while staying still overzealously marking .ini settings as dirty. (#923)
   4240 - Fixed assert triggering when a window has zero rendering but has a callback. (#810)
   4241 - Scrollbar: Fixed rendering when sizes are negative to reduce glitches (which can happen with certain style settings and zero WindowMinSize).
   4242 - EndGroup(): Made IsItemHovered() work when an item was activated within the group. (#849)
   4243 - BulletText(): Fixed stopping to display formatted string after the '##' mark.
   4244 - Closing the focused window restore focus to the first active root window in descending z-order .(part of #727)
   4245 - Word-wrapping: Fixed a bug where we never wrapped after a 1 character word. [@sronsse]
   4246 - Word-wrapping: Fixed TextWrapped() overriding wrap position if one is already set. (#690)
   4247 - Word-wrapping: Fixed incorrect testing for negative wrap coordinates, they are perfectly legal. (#706)
   4248 - ImGuiListClipper: Fixed automatic-height calc path dumbly having user display element 0 twice. (#661, #716)
   4249 - ImGuiListClipper: Fix to behave within column. (#661, #662, #716)
   4250 - ImDrawList: Renamed ImDrawList::PathFill() to ImDrawList::PathFillConvex() for clarity. (BREAKING API)
   4251 - Columns: End() avoid calling Columns(1) if no columns set is open, not sure why it wasn't the case already (pros: faster, cons: exercise less code).
   4252 - ColorButton(): Fix ColorButton showing wrong hex value for alpha. (#1068) [@codecat]
   4253 - ColorEdit4(): better preserve inputting value out of 0..255 range, display then clamped in Hexadecimal form.
   4254 - Shutdown() clear out some remaining pointers for sanity. (#836)
   4255 - Added IMGUI_USE_BGRA_PACKED_COLOR option in imconfig.h (#767, #844) [@thedmd]
   4256 - Style: Removed the inconsistent shadow under RenderCollapseTriangle() (~#707)
   4257 - Style: Added ButtonTextAlign, ImGuiStyleVar_ButtonTextAlign. (#842)
   4258 - ImFont: Allowing to use up to 0xFFFE glyphs in same font (increased from previous 0x8000).
   4259 - ImFont: Added GetGlyphRangesThai() helper. [@nProtect]
   4260 - ImFont: CalcWordWrapPositionA() fixed font scaling with fallback character.
   4261 - ImFont: Calculate and store the approximate texture surface to get an idea of how costly each source font is.
   4262 - ImFontConfig: Added GlyphOffset to explicitly offset glyphs at font build time, useful for merged fonts. Removed MergeGlyphCenterV. (BREAKING API)
   4263 - Clarified asserts in CheckStacksSize() when there is a stack mismatch.
   4264 - Context: Support for #define-ing GImGui and IMGUI_SET_CURRENT_CONTEXT_FUNC to enable custom thread-based hackery (#586)
   4265 - Updated stb_truetype.h to 1.14 (added OTF support, removed warnings). (#883, #976)
   4266 - Updated stb_rect_pack.h to 0.10 (removed warnings). (#883)
   4267 - Added ImGuiMouseCursor_None enum value for convenient usage by app/backends.
   4268 - Clipboard: Added a void* user_data parameter to Clipboard function handlers. (#875) (BREAKING API)
   4269 - Internals: Refactor internal text alignment options to use ImVec2, removed ImGuiAlign. (#842, #222)
   4270 - Internals: Renamed ImLoadFileToMemory to ImFileLoadToMemory to be consistent with ImFileOpen + fix mismatching .h name. (#917)
   4271 - OS/Windows: Fixed Windows default clipboard handler leaving its buffer unfreed on application's exit. (#714)
   4272 - OS/Windows: No default IME handler when compiling for Windows using GCC. (#738)
   4273 - OS/Windows: Now using _wfopen() instead of fopen() to allow passing in paths/filenames with UTF-8 characters. (#917)
   4274 - Tools: binary_to_compressed_c: Avoid ?? trigraphs sequences in string outputs which break some older compilers. (#839)
   4275 - Demo: Added an extra 3-way columns demo.
   4276 - Demo: ShowStyleEditor: show font character map / grid in more details.
   4277 - Demo: Console: Fixed a completion bug when multiple candidates are equals and match until the end.
   4278 - Demo: Fixed 1-byte off overflow in the ShowStyleEditor() combo usage. (#783) [@bear24rw]
   4279 - Examples: Accessing ImVector fields directly, feel less stl-ey. (#810)
   4280 - Examples: OpenGL*: Saving/restoring existing scissor rectangle for completeness. (#807)
   4281 - Examples: OpenGL*: Saving/restoring active texture number (the value modified by glActiveTexture). (#1087, #1088, #1116)
   4282 - Examples: OpenGL*: Saving/restoring separate color/alpha blend functions correctly. (#1120) [@greggman]
   4283 - Examples: OpenGL2: Uploading font texture as RGBA32 to increase compatibility with users shaders for beginners. (#824)
   4284 - Examples: Vulkan: Countless fixes and improvements. (#785, #804, #910, #1017, #1039, #1041, #1042, #1043, #1080) [@martty, @Loftilus, @ParticlePeter, @SaschaWillems]
   4285 - Examples: DirectX9/10/10: Only call SetCursor(NULL) is io.MouseDrawCursor is set. (#585, #909)
   4286 - Examples: DirectX9: Explicitly setting viewport to match that other examples are doing. (#937)
   4287 - Examples: GLFW+OpenGL3: Fixed Shutdown() calling GL functions with NULL parameters if NewFrame was never called. (#800)
   4288 - Examples: GLFW+OpenGL2: Renaming opengl_example/ to opengl2_example/ for clarity.
   4289 - Examples: SDL+OpenGL: explicitly setting GL_UNPACK_ROW_LENGTH to reduce issues because SDL changes it. (#752)
   4290 - Examples: SDL2: Added build .bat files for Win32.
   4291 - Added various links to language/engine bindings.
   4292 - Various other minor fixes, tweaks, comments, optimizations.
   4293 
   4294 
   4295 -----------------------------------------------------------------------
   4296  VERSION 1.49 (2016-05-09)
   4297 -----------------------------------------------------------------------
   4298 
   4299 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.49
   4300 
   4301 Breaking Changes:
   4302 
   4303 - Renamed `SetNextTreeNodeOpened()` to `SetNextTreeNodeOpen()` for consistency, no redirection.
   4304 - Removed confusing set of `GetInternalState()`, `GetInternalStateSize()`, `SetInternalState()` functions. Now using `CreateContext()`, `DestroyContext()`, `GetCurrentContext()`, `SetCurrentContext()`. If you were using multiple contexts the change should be obvious and trivial.
   4305 - Obsoleted old signature of `CollapsingHeader(const char* label, const char* str_id = NULL, bool display_frame = true, bool default_open = false)`, as extra parameters were badly designed and rarely used. Most uses were using 1 parameter and shouldn't affect you. You can replace the "default_open = true" flag in new API with `CollapsingHeader(label, ImGuiTreeNodeFlags_DefaultOpen)`.
   4306 - Changed `ImDrawList::PushClipRect(ImVec4 rect)` to `ImDraw::PushClipRect(ImVec2 min,ImVec2 max,bool intersect_with_current_clip_rect=false)`. Note that higher-level `ImGui::PushClipRect()` is preferable because it will clip at logic/widget level, whereas `ImDrawList::PushClipRect()` only affect your renderer.
   4307 - Title bar (using ImGuiCol_TitleBg/ImGuiCol_TitleBgActive colors) isn't rendered over a window background (ImGuiCol_WindowBg color) anymore (see #655). If your TitleBg/TitleBgActive alpha was 1.0f or you are using the default theme it will not affect you. However if your TitleBg/TitleBgActive alpha was <1.0f you need to tweak your custom theme to readjust for the fact that we don't draw a WindowBg background behind the title bar.
   4308   This helper function will convert an old TitleBg/TitleBgActive color into a new one with the same visual output, given the OLD color and the OLD WindowBg color. (Or If this is confusing, just pick the RGB value from title bar from an old screenshot and apply this as TitleBg/TitleBgActive. Or you may just create TitleBgActive from a tweaked TitleBg color.)
   4309 
   4310     ImVec4 ConvertTitleBgCol(const ImVec4& win_bg_col, const ImVec4& title_bg_col)
   4311     {
   4312        float new_a = 1.0f - ((1.0f - win_bg_col.w) * (1.0f - title_bg_col.w));
   4313        float k = title_bg_col.w / new_a;
   4314        return ImVec4((win_bg_col.x * win_bg_col.w + title_bg_col.x) * k, (win_bg_col.y * win_bg_col.w + title_bg_col.y) * k, (win_bg_col.z * win_bg_col.w + title_bg_col.z) * k, new_a);
   4315     }
   4316 
   4317 Other changes:
   4318 
   4319 - New version of ImGuiListClipper helper calculates item height automatically. See comments and demo code. (#662, #661, #660)
   4320 - Added SetNextWindowSizeConstraints() to enable basic min/max and programmatic size constraints on window. Added demo. (#668)
   4321 - Added PushClipRect()/PopClipRect() (previously part of imgui_internal.h). Changed ImDrawList::PushClipRect() prototype. (#610)
   4322 - Added IsRootWindowOrAnyChildHovered() helper. (#615)
   4323 - Added TreeNodeEx() functions. (#581, #600, #190)
   4324 - Added ImGuiTreeNodeFlags_Selected flag to display TreeNode as "selected". (#581, #190)
   4325 - Added ImGuiTreeNodeFlags_AllowOverlapMode flag. (#600)
   4326 - Added ImGuiTreeNodeFlags_NoTreePushOnOpen flag (#590).
   4327 - Added ImGuiTreeNodeFlags_NoAutoOpenOnLog flag (previously private).
   4328 - Added ImGuiTreeNodeFlags_DefaultOpen flag (previously private).
   4329 - Added ImGuiTreeNodeFlags_OpenOnDoubleClick flag.
   4330 - Added ImGuiTreeNodeFlags_OpenOnArrow flag.
   4331 - Added ImGuiTreeNodeFlags_Leaf flag, always opened, no arrow, for convenience. For simple use case prefer using TreeAdvanceToLabelPos()+Text().
   4332 - Added ImGuiTreeNodeFlags_Bullet flag, to add a bullet to Leaf node or replace Arrow with a bullet.
   4333 - Added TreeAdvanceToLabelPos(), GetTreeNodeToLabelSpacing() helpers. (#581, #324)
   4334 - Added CreateContext()/DestroyContext()/GetCurrentContext()/SetCurrentContext(). Obsoleted nearly identical GetInternalState()/SetInternalState() functions. (#586, #269)
   4335 - Added NewLine() to undo a SameLine() and as a shy reminder that horizontal layout support hasn't been implemented yet.
   4336 - Added IsItemClicked() helper. (#581)
   4337 - Added CollapsingHeader() variant with close button. (#600)
   4338 - Fixed MenuBar missing lower border when borders are enabled.
   4339 - InputText(): Fixed clipping of cursor rendering in case it gets out of the box (which can be forced w/ ImGuiInputTextFlags_NoHorizontalScroll. (#601)
   4340 - Style: Changed default IndentSpacing from 22 to 21. (#581, #324)
   4341 - Style: Fixed TitleBg/TitleBgActive color being rendered above WindowBg color, which was inconsistent and causing visual artifact. (#655)
   4342   This broke the meaning of TitleBg and TitleBgActive. Only affect values where Alpha<1.0f. Fixed default theme. Read comments in "API BREAKING CHANGES" section to convert.
   4343 - Relative rendering of order of Child windows creation is preserved, to allow more control with overlapping children. (#595)
   4344 - Fixed GetWindowContentRegionMax() being off by ScrollbarSize amount when explicit SizeContents is set.
   4345 - Indent(), Unindent(): optional non-default indenting width. (#324, #581)
   4346 - Bullet(), BulletText(): Slightly bigger. Less polygons.
   4347 - ButtonBehavior(): fixed subtle old bug when a repeating button would also return true on mouse release (barely noticeable unless RepeatRate is set to be very slow). (#656)
   4348 - BeginMenu(): a menu that becomes disabled while open gets closed down, facilitate user's code. (#126)
   4349 - BeginGroup(): fixed using within Columns set. (#630)
   4350 - Fixed a lag in reading the currently hovered window when dragging a window. (#635)
   4351 - Obsoleted 4 parameters version of CollapsingHeader(). Refactored code into TreeNodeBehavior. (#600, #579)
   4352 - Scrollbar: minor fix for top-right rounding of scrollbar background when window has menu bar but no title bar.
   4353 - MenuItem(): the check mark renders in disabled color when menu item is disabled.
   4354 - Fixed clipping rectangle floating point representation to ensure renderer-side float point operations yield correct results in typical DirectX/GL settings. (#582, 597)
   4355 - Fixed GetFrontMostModalRootWindow(), fixing missing fade-out when a combo pop was used stacked over a modal window. (#604)
   4356 - ImDrawList: Added AddQuad(), AddQuadFilled() helpers.
   4357 - ImDrawList: AddText() refactor, moving some code to ImFont, reserving less unused vertices when large vertical clipping occurs.
   4358 - ImFont: Added RenderChar() helper.
   4359 - ImFont: Added AddRemapChar() helper. (#609)
   4360 - ImFontConfig: Clarified persistence requirement of GlyphRanges array. (#651)
   4361 - ImGuiStorage: Added bool helper functions for completeness.
   4362 - AddFontFromMemoryCompressedTTF(): Fix ImFontConfig propagation. (#587)
   4363 - Renamed majority of use of the word "opened" to "open" for clarity. Renamed SetNextTreeNodeOpened() to SetNextTreeNodeOpen(). (#625, #579)
   4364 - Examples: OpenGL3: Saving/restoring glActiveTexture() state. (#602)
   4365 - Examples: DirectX9: save/restore all device state.
   4366 - Examples: DirectX9: Removed dependency on d3dx9.h, d3dx9.lib, dxguid.lib so it can be used in a DirectXMath.h only environment. (#611)
   4367 - Examples: DirectX10/X11: Apply depth-stencil state (no use of depth buffer). (#640, #636)
   4368 - Examples: DirectX11/X11: Added comments on removing dependency on D3DCompiler. (#638)
   4369 - Examples: SDL: Initialize video+timer subsystem only.
   4370 - Examples: Apple/iOS: lowered XCode project deployment target from 10.7 to 10.11. (#598, #575)
   4371 
   4372 
   4373 -----------------------------------------------------------------------
   4374  VERSION 1.48 (2016-04-09)
   4375 -----------------------------------------------------------------------
   4376 
   4377 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.48
   4378 
   4379 Breaking Changes:
   4380 
   4381 - Consistently honoring exact width passed to PushItemWidth() (when positive), previously it would add extra FramePadding.x*2 over that width. Some hand-tuned layout may be affected slightly. (#346)
   4382 - Style: removed `style.WindowFillAlphaDefault` which was confusing and redundant, baked alpha into `ImGuiCol_WindowBg` color. If you had a custom WindowBg color but didn't change WindowFillAlphaDefault, multiply WindowBg alpha component by 0.7. Renamed `ImGuiCol_TooltipBg` to `ImGuiCol_PopupBG`, applies to other types of pop-ups. `bg_alpha` parameter of 5-parameters version of Begin() is an override. (#337)
   4383 - InputText(): Added BufTextLen field in ImGuiTextEditCallbackData. Requesting user to update it if the buffer is modified in the callback. Added a temporary length-check assert to minimize panic for the 3 people using the callback. (#541)
   4384 - Renamed GetWindowFont() to GetFont(), GetWindowFontSize() to GetFontSize(). Kept inline redirection function (will obsolete). (#340)
   4385 
   4386 Other Changes:
   4387 
   4388 - Consistently honoring exact width passed to PushItemWidth(), previously it would add extra FramePadding.x*2 over that width. Some hand-tuned layout may be affected slightly. (#346)
   4389 - Fixed clipping of child windows within parent not taking account of child outer clipping boundaries (including scrollbar, etc.). (#506)
   4390 - TextUnformatted(): Fixed rare crash bug with large blurb of text (2k+) not finished with a '\n' and fully above the clipping Y line. (#535)
   4391 - IO: Added 'KeySuper' field to hold CMD keyboard modifiers for OS X. Updated all examples accordingly. (#473)
   4392 - Added ImGuiWindowFlags_ForceVerticalScrollbar, ImGuiWindowFlags_ForceHorizontalScrollbar flags. (#476)
   4393 - Added IM_COL32 macros to generate a U32 packed color, convenient for direct use of ImDrawList api. (#346)
   4394 - Added GetFontTexUvWhitePixel() helper, convenient for direct use of ImDrawList api.
   4395 - Selectable(): Added ImGuiSelectableFlags_AllowDoubleClick flag to allow user reacting on double-click. (@zapolnov) (#516)
   4396 - Begin(): made the close button explicitly set the boolean to false instead of toggling it. (#499)
   4397 - BeginChild()/EndChild(): fixed incorrect layout to allow widgets submitted after an auto-fitted child window. (#540)
   4398 - BeginChild(): Added ImGuiWindowFlags_AlwaysUseWindowPadding flag to ensure non-bordered child window uses window padding. (#462)
   4399 - Fixed InputTextMultiLine(), ListBox(), BeginChildFrame(), ProgressBar(): outer frame not honoring bordering. (#462, #503)
   4400 - Fixed Image(), ImageButtion() rendering a rectangle 1 px too large on each axis. (#457)
   4401 - SetItemAllowOverlap(): Promoted from imgui_internal.h to public imgui.h api. (#517)
   4402 - Combo(): Right-most button stays highlighted when pop-up is open.
   4403 - Combo(): Display pop-up above if there's isn't enough space below / or select largest side. (#505)
   4404 - DragFloat(), SliderFloat(), InputFloat(): fixed cases of erroneously returning true repeatedly after a text input modification (e.g. "0.0" --> "0.000" would keep returning true). (#564)
   4405 - DragFloat(): Always apply value when mouse is held/widget active, so that an always-resetting variable (e.g. non saved local) can be passed.
   4406 - InputText(): OS X friendly behaviors: Word movement uses ALT key; Shortcuts uses CMD key; Double-clicking text select a single word; Jumping to next word sets cursor to end of current word instead of beginning of current word. (@zhiayang), (#473)
   4407 - InputText(): Added BufTextLen in ImGuiTextEditCallbackData. Requesting user to maintain it if buffer is modified. Zero-ing structure properly before use. (#541)
   4408 - CheckboxFlags(): Added support for testing/setting multiple flags at the same time. (@DMartinek) (#555)
   4409 - TreeNode(), CollapsingHeader() fixed not being able to use "##" sequence in a formatted label.
   4410 - ColorEdit4(): Empty label doesn't add InnerSpacing.x, matching behavior of other widgets. (#346)
   4411 - ColorEdit4(): Removed unnecessary calls to scanf() when idle in hexadecimal edit mode.
   4412 - BeginPopupContextItem(), BeginPopupContextWindow(): added early out optimization.
   4413 - CaptureKeyboardFromApp() / CaptureMouseFromApp(): added argument to allow clearing the capture flag. (#533)
   4414 - ImDrawList: Fixed index-overflow check broken by AddText() casting current index back to ImDrawIdx. (#514)
   4415 - ImDrawList: Fixed incorrect removal of trailing draw command if it is a callback command.
   4416 - ImDrawList: Allow windows with only a callback only to be functional. (#524)
   4417 - ImDrawList: Fixed ImDrawList::AddRect() which used to render a rectangle 1 px too large on each axis. (#457)
   4418 - ImDrawList: Fixed ImDrawList::AddCircle() to fit precisely within bounding box like AddCircleFilled() and AddRectFilled(). (#457)
   4419 - ImDrawList: AddCircle(), AddRect() takes optional thickness parameter.
   4420 - ImDrawList: Added AddTriangle().
   4421 - ImDrawList: Added PrimQuadUV() helper to ease custom rendering of textured quads (require primitive reserve).
   4422 - ImDrawList: Allow AddText(ImFont\* font, float font_size, ...) variant to take NULL/0.0f as default.
   4423 - ImFontAtlas: heuristic increase default texture width up for large number of glyphs. (#491)
   4424 - ImTextBuffer: Fixed empty() helper which was utterly broken.
   4425 - Metrics: allow to inspect individual triangles in draw calls.
   4426 - Demo: added more draw primitives in the Custom Rendering example. (#457)
   4427 - Demo: extra comments and example for PushItemWidth(-1) patterns.
   4428 - Demo: InputText password demo filters out blanks. (#515)
   4429 - Demo: Fixed malloc/free mismatch and leak when destructing demo console, if it has been used. (@fungos) (#536)
   4430 - Demo: plot code doesn't use ImVector to avoid heap allocation and be more friendly to custom allocator users. (#538)
   4431 - Fixed compilation on DragonFly BSD (@mneumann) (#563)
   4432 - Examples: Vulkan: Added a Vulkan example (@Loftilus) (#549)
   4433 - Examples: DX10, DX11: Saving/restoring most device state so dropping render function in your codebase shouldn't have DX device side-effects. (#570)
   4434 - Examples: DX10, DX11: Fixed ImGui_ImplDX??_NewFrame() from recreating device objects if render isn't called (g_pVB not set).
   4435 - Examples: OpenGL3: Fix BindVertexArray/BindBuffer order. (@nlguillemot) (#527)
   4436 - Examples: OpenGL: skip rendering and calling glViewport() if we have zero-fixed buffer. (#486)
   4437 - Examples: SDL2+OpenGL3: Fix context creation options. Made ImGui_ImplSdlGL3_NewFrame() signature match GL2 one. (#468, #463)
   4438 - Examples: SDL2+OpenGL2/3: Fix for high-dpi displays. (@nickgravelyn)
   4439 - Various extra comments and clarification in the code.
   4440 - Various other fixes and optimizations.
   4441 
   4442 
   4443 -----------------------------------------------------------------------
   4444  VERSION 1.47 (2015-12-25)
   4445 -----------------------------------------------------------------------
   4446 
   4447 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.47
   4448 
   4449 Changes:
   4450 
   4451 - Rebranding "ImGui" -> "dear imgui" as an optional first name to reduce ambiguity with IMGUI term. (#21)
   4452 - Added ProgressBar(). (#333)
   4453 - InputText(): Added ImGuiInputTextFlags_Password mode: hide display, disable logging/copying to clipboard. (#237, #363, #374)
   4454 - Added GetColorU32() helper to retrieve color given enum with global alpha and extra applied.
   4455 - Added ImGuiIO::ClearInputCharacters() superfluous helper.
   4456 - Fixed ImDrawList draw command merging bug where using PopClipRect() along with PushTextureID()/PopTextureID() functions
   4457   would occasionally restore an incorrect clipping rectangle.
   4458 - Fixed ImDrawList draw command merging so PushTextureID(XXX)/PopTextureID()/PushTextureID(XXX) sequence are now properly merged.
   4459 - Fixed large popups positioning issues when their contents on either axis is larger than DisplaySize,
   4460   and WindowPadding < DisplaySafeAreaPadding.
   4461 - Fixed border rendering in various situations when using non-pixel aligned glyphs.
   4462 - Fixed border rendering of windows to always contain the border within the window.
   4463 - Fixed Shutdown() leaking font atlas data if NewFrame() was never called. (#396, #303)
   4464 - Fixed int>void\* warnings for 64-bit architectures with fancy warnings enabled.
   4465 - Renamed the dubious Color() helpers to ValueColor() - dangerously named, rarely used and probably to be made obsolete.
   4466 - InputText(): Fixed and better handling of using keyboard while mouse button if being held and dragging. (#429)
   4467 - InputText(): Replace OS IME (Input Method Editor) cursor on top-left when we are not text editing.
   4468 - TreeNode(), CollapsingHeader(), Bullet(), BulletText(): various sizing and layout fixes to better support laying out
   4469   multiple item with different height on same line. (#414, #282)
   4470 - Begin(): Initial window creation with ImGuiWindowFlags_NoBringToFrontOnFocus flag pushes it at the front of global window list.
   4471 - BeginPopupContextWindow() and BeginPopupContextVoid() reopen window on subsequent click. (#439)
   4472 - ColorEdit4(): Fixed broken tooltip on hovering the color button. (actually fixes #373, #380)
   4473 - ImageButton(): uses FrameRounding up to a maximum of available framing size. (#394)
   4474 - Columns: Fixed bug with indentation within columns, also making code a bit shorter/faster. (#414, #125)
   4475 - Columns: Columns set with no implicit id include the columns count within the id to reduce collisions. (#125)
   4476 - Columns: Removed one unnecessary allocation when columns are not used by a window. (#125)
   4477 - ImFontAtlas: Tweaked GetGlyphRangesJapanese() so it is easier to modify.
   4478 - ImFontAtlas: Updated stb_rect_pack.h to 0.08.
   4479 - Metrics: Fixed computing ImDrawCmd bounding box when the draw buffer have been unindexed.
   4480 - Demo: Added a simple "Property Editor" demo applet. (#125, #414)
   4481 - Demo: Fixed assertion in "Custom Rendering" demo when holding both mouse buttons. (#393)
   4482 - Demo: Lots of extra comments, fixes.
   4483 - Demo: Tweaks to Style Editor.
   4484 - Examples: Not clearing input data/tex data in atlas (will be required for dynamic atlas anyway).
   4485 - Examples: Added /Zi (output debug information) to Win32 batch files.
   4486 - Examples: Various fixes for resizing window and recreating graphic context.
   4487 - Examples: OpenGL2/3: Save/restore viewport as part of default render function. (#392, #441).
   4488 - Examples; OpenGL3: Fixed gl3w.c for Linux when compiled with a C++ compiler. (#411)
   4489 - Examples: DirectX: Removed assumption about Unicode build in example main.cpp. (#399)
   4490 - Examples: DirectX10: Added DirectX10 example. (#424)
   4491 - Examples: DirectX11: Downgraded requirement from shader model 5.0 to 4.0. (#420)
   4492 - Examples: DirectX11: Removed Debug flag from graphics context. (#415)
   4493 - Examples: Added SDL+OpenGL3 example. (#356)
   4494 
   4495 
   4496 -----------------------------------------------------------------------
   4497  VERSION 1.46 (2015-10-18)
   4498 -----------------------------------------------------------------------
   4499 
   4500 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.46
   4501 
   4502 Changes:
   4503 
   4504 - Begin*(): added ImGuiWindowFlags_NoFocusOnAppearing flag. (#314)
   4505 - Begin*(): added ImGuiWindowFlags_NoBringToFrontOnFocus flag.
   4506 - Added GetDrawData() alternative to setting a Render function pointer in ImGuiIO structure.
   4507 - Added SetClipboardText(), GetClipboardText() helper shortcuts that user code can call directly without reading
   4508   from the ImGuiIO structure (to match MemAlloc/MemFree)
   4509 - Fixed handling of malformed UTF-8 at the end of a non-zero terminated string range.
   4510 - Fixed mouse click detection when passing DeltaTime 0.0. (#338)
   4511 - Fixed IsKeyReleased() and IsMouseReleased() returning true on the first frame.
   4512 - Fixed using SetNextWindow\* functions on Modal windows with a ImGuiSetCond_Appearing condition. (#377)
   4513 - IsMouseHoveringRect(): Added 'bool clip' parameter to disable clipping provided rectangle. (#316)
   4514 - InputText(): added ImGuiInputTextFlags_ReadOnly flag. (#211)
   4515 - InputText(): lose cursor/undo-stack when reactivating focus is buffer has changed size.
   4516 - InputText(): fixed ignoring text inputs when ALT or ALTGR are pressed. (#334)
   4517 - InputText(): fixed mouse-dragging not tracking the cursor when text doesn't fit. (#339)
   4518 - InputText(): fixed cursor pixel-perfect alignment when horizontally scrolling.
   4519 - InputText(): fixed crash when passing a buf_size==0 (which can be of use for read-only selectable text boxes). (#360)
   4520 - InputFloat() fixed explicit precision modifier, both display and input were broken.
   4521 - PlotHistogram(): improved rendering of histogram with a lot of values.
   4522 - Dummy(): creates an item so functions such as IsItemHovered() can be used.
   4523 - BeginChildFrame() helper: added the extra_flags parameter.
   4524 - Scrollbar: fixed rounding of background + child window consistenly have ChildWindowBg color under ScrollbarBg fill. (#355).
   4525 - Scrollbar: background color less translucent in default style so it works better when changing background color.
   4526 - Scrollbar: fixed minor rendering offset when borders are enabled. (#365)
   4527 - ImDrawList: fixed 1 leak per ImDrawList using the ChannelsSplit() API (via Columns). (#318)
   4528 - ImDrawList: fixed rectangle rendering glitches with width/height <= 1/2 and rounding enabled.
   4529 - ImDrawList: AddImage() uv parameters default to (0,0) and (1,1).
   4530 - ImFontAtlas: Added TexDesiredWidth and tweaked default cheapo best-width choice. (#327)
   4531 - ImFontAtlas: Added GetGlyphRangesKorean() helper to retrieve unicode ranges for Korean. (#348)
   4532 - ImGuiTextFilter::Draw() helper return bool and build when filter is modified.
   4533 - ImGuiTextBuffer: added c_str() helper.
   4534 - ColorEdit4(): fixed hovering the color button always showing 1.0 alpha. (#373)
   4535 - ColorConvertFloat4ToU32() round the floats instead of truncating them.
   4536 - Window: Fixed window lower-right clipping limit so it plays more friendly with both OpenGL and DirectX coordinates.
   4537 - Internal: Extracted a EndFrame() function out of Render() but kept it internal/private + clarified some asserts. (#335)
   4538 - Internal: Added missing IMGUI_API definitions in imgui_internal.h (#326)
   4539 - Internal: ImLoadFileToMemory() return void\* instead of taking void*\* + allow optional int\* file_size.
   4540 - Demo: Horizontal scrollbar demo allows to enable simultanaeous scrollbars on both axises.
   4541 - Tools: binary_to_compressed_c.cpp: added -nocompress option.
   4542 - Examples: Added example for the Marmalade platform.
   4543 - Examples: Added batch files to build Windows examples with VS.
   4544 - Examples: OpenGL3: Saving/restoring more GL state correctly. (#347)
   4545 - Examples: OpenGL2/3: Added msys2/mingw64 target to Makefiles.
   4546 
   4547 
   4548 -----------------------------------------------------------------------
   4549  VERSION 1.45 (2015-09-01)
   4550 -----------------------------------------------------------------------
   4551 
   4552 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.45
   4553 
   4554 Breaking Changes:
   4555 
   4556 - With the addition of better horizontal scrolling primitives I had to make some consistency fixes.
   4557   `GetCursorPos()` `SetCursorPos()` `GetContentRegionMax()` `GetWindowContentRegionMin()` `GetWindowContentRegionMax()`
   4558   are now incorporating the scrolling amount. They were incorrectly not incorporating this amount previously.
   4559   It PROBABLY shouldn't break anything, but that depends on how you used them. Namely:
   4560   - If you always used SetCursorPos() with values relative to GetCursorPos() there shouldn't be a problem.
   4561     However if you used absolute coordinates, note that SetCursorPosY(100.0f) will put you at +100 from the initial Y position (which may be scrolled out of the view), NOT at +100 from the window top border. Since there wasn't any official scrolling value on X axis (past just manually moving the cursor) this can only affect you if you used to set absolute coordinates on the Y axis which is hopefully rare/unlikely, and trivial to fix.
   4562   - The value of GetWindowContentRegionMax() isn't necessarily close to GetWindowWidth() if horizontally scrolling.
   4563     Previously they were roughly interchangeable (roughly because the content region exclude window padding).
   4564 
   4565 Other Changes:
   4566 
   4567 - Added Horizontal Scrollbar via ImGuiWindowFlags_HorizontalScroll (#246).
   4568 - Added GetScrollX(), GetScrollX(), GetScrollMaxX() apis (#246).
   4569 - Added SetNextWindowContentSize(), SetNextWindowContentWidth() to explicitly set the content size of a window, which
   4570   define the range of scrollbar. When set explicitly it also define the base value from which widget width are derived.
   4571 - Added IO.WantTextInput telling when ImGui is expecting text input, so that e.g. OS on-screen keyboard can be enabled.
   4572 - Added printf attribute to printf-like text formatting functions (Clang/GCC).
   4573 - Added GetMousePosOnOpeningCurrentPopup() helper.
   4574 - Added GetContentRegionAvailWidth() helper.
   4575 - Malformed UTF-8 data don't terminate string, output 0xFFFD instead (#307).
   4576 - ImDrawList: Added AddBezierCurve(), PathBezierCurveTo() API for cubic bezier curves (#311).
   4577 - ImDrawList: Allow to override ImDrawIdx type (#292).
   4578 - ImDrawList: Added an assert on overflowing index value (#292).
   4579 - ImDrawList: Fixed issues with channels split/merge. Now functional without manually adding a draw cmd. Added comments.
   4580 - ImDrawData: Added ScaleClipRects() helper useful when rendering scaled. (#287).
   4581 - Fixed Bullet() inconsistent layout behaviour when clipped.
   4582 - Fixed IsWindowHovered() not taking account of window hoverability (may be disabled because of a popup).
   4583 - Fixed InvisibleButton() not honoring negative size consistently with other widgets that do so.
   4584 - Fixed OpenPopup() accessing current window, effectively opening "Debug" when called from an empty window stack.
   4585 - TreeNode(): Fixed IsItemHovered() result being inconsistent with interaction visuals (#282).
   4586 - TreeNode(): Fixed mouse interaction padding past the node label being accounted for in layout (#282).
   4587 - BeginChild(): Passing a ImGuiWindowFlags_NoMove inhibits moving parent window from this child.
   4588 - BeginChild() fixed missing rounding for child sizes which leaked into layout and have items misaligned.
   4589 - Begin(): Removed default name = "Debug" parameter. We already have a "Debug" window pushed to the stack in the first place so it's not really a useful default.
   4590 - Begin(): Minor fixes with windows main clipping rectangle (e.g. child window with border).
   4591 - Begin(): Window flags are only read on the first call of the frame. Subsequent calls ignore flags, which allows appending to a window without worryin about flags.
   4592 - InputText(): ignore character input when ctrl/alt are held. (Normally those text input are ignored by most wrappers.) (#279).
   4593 - Demo: Fixed incorrectly formed string passed to Combo (#298).
   4594 - Demo: Added simple Log demo.
   4595 - Demo: Added horizontal scrolling example + enabled in console, log and child examples (#246).
   4596 - Style: made scrollbars rounded by default. Because nice. Minor menu bar background alpha tweak. (#246)
   4597 - Metrics: display indices along with triangles count (#299) and some internal state.
   4598 - ImGuiTextFilter::PassFilter() supports string range. Added [] helper to ImGuiTextBuffer.
   4599 - ImGuiTextFilter::Draw() default parameter width=0.0f for no override, allow override with negative values.
   4600 - Examples: OpenGL2/OpenGL3: fix for retina displays. Default font current lack crispness.
   4601 - Examples: OpenGL2/OpenGL3: save/restore more GL state correctly.
   4602 - Examples: DirectX9/DirectX11: resizing buffers dynamically (#299).
   4603 - Examples: DirectX9/DirectX11: added missing middle mouse button to Windows event handler.
   4604 - Examples: DirectX11: fix for Visual Studio 2015 presumably shipping with an updated version of DX11.
   4605 - Examples: iOS: fixed missing files in project.
   4606 
   4607 
   4608 -----------------------------------------------------------------------
   4609  VERSION 1.44 (2015-08-08)
   4610 -----------------------------------------------------------------------
   4611 
   4612 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.44
   4613 
   4614 Breaking Changes:
   4615 
   4616 - imgui.cpp has been split intro extra files: imgui_demo.cpp, imgui_draw.cpp, imgui_internal.h.
   4617   Add the two extra .cpp to your project or #include them from another .cpp file. (#219)
   4618 
   4619 Other Changes:
   4620 
   4621 - Internal data structure and several useful functions are now exposed in imgui_internal.h. This should make it easier
   4622   and more natural to extend ImGui. However please note that none of the content in imgui_internal.h is guaranteed
   4623   for forward-compatibility and code using those types/functions may occasionally break. (#219)
   4624 - All sample code is in imgui_demo.cpp. Please keep this file in your project and consider allowing your code to call
   4625   the ShowTestWindow() function as de-facto guide to ImGui features. It will be stripped out by the linker when unused.
   4626 - Added GetContentRegionAvail() helper (basically GetContentRegionMax() - GetCursorPos()).
   4627 - Added ImGuiWindowFlags_NoInputs for totally input-passthru window.
   4628 - Button(): honor negative size consistently with other widgets that do so (width -100 to align the button 100 pixels
   4629   before the right-most position of the contents region).
   4630 - InputTextMultiline(): honor negative size consistently with other widgets that do so.
   4631 - Combo() clamp popup to lower edge of visible area.
   4632 - InputInt(): value doesn't pass through an int>float>int casting chain, fix handling lost of precision with "large" integer.
   4633 - InputInt() allow hexadecimal input (awkwardly via ImGuiInputTextFlags_CharsHexadecimal but we will allow format
   4634   string in InputInt* later).
   4635 - Checkbox(), RadioButton(): fixed scaling of checkbox and radio button for the filling of "active" visual.
   4636 - Columns: never assume horizontal space for scrollbar if NoScrollbar flag is explicitly set.
   4637 - Slider: fixed using FramePadding between frame and grab visual. Scaling that spacing would look odd.
   4638 - Fixed lower-right resize grip hit box not scaling along with its rendered size (#287)
   4639 - ImDrawList: Fixed angles in ImDrawList::PathArcTo(), PathArcToFast() (v1.43) being off by an extra PI for no reason.
   4640 - ImDrawList: Added ImDrawList::AddText() shorthand helper.
   4641 - ImDrawList: Add missing support for anti-aliased thick-lines (#133, also ref #288)
   4642 - ImFontAtlas: Added AddFontFromMemoryCompressedBase85TTF() to load base85 encoded font string. Default font encoded
   4643   as base85 saves ~100 lines / 26 KB of source code. Added base85 output to the binary_to_compressed_c tool.
   4644 - Build fix for MinGW (#276).
   4645 - Examples: OpenGL3: Fixed running on script core profiles for OSX (#277).
   4646 - Examples: OpenGL3: Simplified code using glBufferData for vertices as well (#277, #278)
   4647 - Examples: DirectX11: Clear font texture view to ensure Release() doesn't get called twice (#290).
   4648 - Updated to stb_truetype 1.07 (back to vanilla version as our minor changes are now in master & fix unlikely assert
   4649   with odd fonts (#280)
   4650 
   4651 
   4652 -----------------------------------------------------------------------
   4653  VERSION 1.43 (2015-07-17)
   4654 -----------------------------------------------------------------------
   4655 
   4656 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.43
   4657 
   4658 Breaking Changes:
   4659 
   4660 - This is a rather important release and we unfortunately had to break the rendering API.
   4661   ImGui now requires you to render indexed vertices instead of non-indexed ones. The fix should be very easy.
   4662   Sorry for that! This change is saving a fair amount of CPU/GPU and enables us to get anti-aliasing for a marginal cost.
   4663   Each ImDrawList now contains both a vertex buffer and an index buffer. For each command, render ElemCount/3 triangles
   4664   using indices from the index buffer.
   4665 - If you are using a vanilla copy of one of the imgui_impl_XXXX.cpp provided in the example, you just need to update
   4666   your copy and you can ignore the rest.
   4667 - The signature of the io.RenderDrawListsFn handler has changed
   4668   From:  ImGui_XXXX_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_lists_count)
   4669   To:    ImGui_XXXX_RenderDrawLists(ImDrawData* draw_data)
   4670   With:  argument   'cmd_lists'        -> 'draw_data->CmdLists'
   4671          argument   'cmd_lists_count'  -> 'draw_data->CmdListsCount'
   4672          ImDrawList 'commands'         -> 'CmdBuffer'
   4673          ImDrawList 'vtx_buffer'       -> 'VtxBuffer'
   4674          ImDrawList  n/a               -> 'IdxBuffer' (new)
   4675          ImDrawCmd  'vtx_count'        -> 'ElemCount'
   4676          ImDrawCmd  'clip_rect'        -> 'ClipRect'
   4677          ImDrawCmd  'user_callback'    -> 'UserCallback'
   4678          ImDrawCmd  'texture_id'       -> 'TextureId'
   4679 - If you REALLY cannot render indexed primitives, you can call the draw_data->DeIndexAllBuffers() method to de-index
   4680   the buffers. This is slow and a waste of CPU/GPU. Prefer using indexed rendering!
   4681   Refer to code in the examples/ folder or ask on the GitHub if you are unsure of how to upgrade. Please upgrade!
   4682 
   4683 Other Changes:
   4684 
   4685 - Added anti-aliasing on lines and shapes based on primitives by @MikkoMononen (#133).
   4686   Between the use of indexed-rendering and the fact that the entire rendering codebase has been optimized and massaged
   4687   enough, with anti-aliasing enabled ImGui 1.43 is now running FASTER than 1.41.
   4688   Made some extra effort in making the code run faster in your typical Debug build.
   4689 - Anti-aliasing can be disabled in the ImGuiStyle structure via the AntiAliasedLines/AntiAliasedShapes fields for further gains.
   4690 - ImDrawList: Added AddPolyline(), AddConvexPolyFilled() with optional anti-aliasing.
   4691 - ImDrawList: Added stateful path building and stroking API. PathLineTo(), PathArcTo(), PathRect(), PathFill(), PathStroke()
   4692   with optional anti-aliasing.
   4693 - ImDrawList: Added AddRectFilledMultiColor() helper.
   4694 - ImDrawList: Added multi-channel rendering so out of order elements can be rendered in separate channels and then merged
   4695   back together (used by columns).
   4696 - ImDrawList: Fixed merging draw commands when equal clip rectangles are in the two first commands.
   4697 - ImDrawList: Fixed window draw lists not destructed properly on Shutdown().
   4698 - ImDrawData: Added DeIndexAllBuffers() helper.
   4699 - Added lots of new font options ImFontAtlas::AddFont() and the new ImFontConfig structure.
   4700   - Added support for oversampling (ImFontConfig: OversampleH, OversampleV) and sub-pixel positioning (ImFontConfig: PixelSnapH).
   4701     Oversampling allows sub-pixel positioning but can also be used as a way to get some leeway with scaling fonts without re-rasterizing.
   4702   - Added GlyphExtraSpacing option to add extra horizontal spacing between characters (#242).
   4703   - Added MergeMode option to merge glyphs from different font inputs into a same font (#182, #232).
   4704   - Added FontDataOwnedByAtlas option to keep ownership from the TTF data buffer and request the atlas to make a copy (#220).
   4705 - Updated to stb_truetype 1.06 (+ minor mods) with better font rasterization.
   4706 - InputText: Added ImGuiInputTextFlags_NoHorizontalScroll flag.
   4707 - InputText: Added ImGuiInputTextFlags_AlwaysInsertMode flag.
   4708 - InputText: Added HasSelection() helper in ImGuiTextEditCallbackData as a clarification.
   4709 - InputText: Fix for using END key on a multi-line text editor (#275)
   4710 - Columns: Dispatch render of each column in a sub-draw list and merge on closure, saving a lot of draw calls! (#125)
   4711 - Popups: Fixed Combo boxes inside menus. (#272)
   4712 - Style: Added GrabRounding setting to make the sliders etc. grabs rounded.
   4713 - Changed SameLine() parameters from int to float.
   4714 - Fixed incorrect assert triggering when code stole ActiveID from user moving a window by calling e.g. SetKeyboardFocusHere().
   4715 - Fixed CollapsingHeader() label rendering outside its frame in columns context where ClipRect max isn't aligned with the
   4716   right-side of the header.
   4717 - Metrics window: calculate bounding box of actual vertices when hovering a draw list.
   4718 - Examples: Showing more information in the Fonts section.
   4719 - Examples: Added a gratuitous About window.
   4720 - Examples: Updated all examples code (OpenGL/DX9/DX11/SDL/Allegro/iOS) to use indexed rendering.
   4721 - Examples: Fixed the SDL2 example to support Unicode text input (#274).
   4722 
   4723 
   4724 -----------------------------------------------------------------------
   4725  VERSION 1.42 (2015-07-08)
   4726 -----------------------------------------------------------------------
   4727 
   4728 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.42
   4729 
   4730 Breaking Changes:
   4731 
   4732 - Renamed SetScrollPosHere() to SetScrollHere(). Kept inline redirection function (will obsolete).
   4733 - Renamed GetScrollPosY() to GetScrollY(). Necessary to reduce confusion and make scrolling API consistent,
   4734   because positions (e.g. cursor position) are not equivalent to scrolling amount.
   4735 - Removed obsolete GetDefaultFontData() function that would assert anyway.
   4736   If you are updating from <1.30 you'll get a compile error instead of an assertion. (obsoleted 2015/01/11)
   4737 
   4738 Other Changes:
   4739 
   4740 - Added SDL2 example application (courtesy of @CedricGuillemet)
   4741 - Added iOS example application (courtesy of @joeld42)
   4742 - Added Allegro 5 example application (courtesy of @bggd)
   4743 - Added TitleBgActive color in style so focused window is made visible. (#253)
   4744 - Added CaptureKeyboardFromApp() / CaptureMouseFromApp() to manually enforce inputs capturing.
   4745 - Added DragFloatRange2() DragIntRange2() helpers. (#76)
   4746 - Added a Y centering ratio to SetScrollFromCursorPos() which can be used to aim the top or bottom of the window. (#150)
   4747 - Added SetScrollY(), SetScrollFromPos(), GetCursorStartPos() for manual scrolling manipulations. (#150).
   4748 - Added GetKeyIndex() helper for converting from ImGuiKey_\* enum to user's keycodes. Basically pulls from io.KeysMap[].
   4749 - Added missing ImGuiKey_PageUp, ImGuiKey_PageDown so more UI code can be written without referring to implementation-side keycodes.
   4750 - MenuItem() can be activated on release. (#245)
   4751 - Allowing NewFrame() with DeltaTime==0.0f to not assert.
   4752 - Fixed IsMouseDragging(). (#260)
   4753 - Fixed PlotLines(), PlotHistogram() using incorrect hovering test so they would show their tooltip even when there is
   4754   a popup between mouse and the graph.
   4755 - Fixed window padding being reported incorrectly for child windows with borders when parent have no borders.
   4756 - Fixed a bug with TextUnformatted() clipping of long text blob when clipping y1 line sits on the first line of text. (#257)
   4757 - Fixed text baseline alignment of small button (no padding) after regular buttons.
   4758 - Fixed ListBoxHeader() not honoring negative sizes the same way as BeginChild() or BeginChildFrame(). (#263)
   4759 - Fixed warnings for more pedantic compiler settings (#258).
   4760 - ImVector<> cannot be re-defined anymore, cannot be replaced with std::vector<>. Allowed us to clean up and optimize
   4761   lots of code. Yeah! (#262)
   4762 - ImDrawList: store pointer to their owner name for easier auditing/debugging.
   4763 - Examples: added scroll tracking example with SetScrollFromCursorPos().
   4764 - Examples: metrics windows render clip rectangle when hovering over a draw call.
   4765 - Lots of small optimization (particularly to run faster on unoptimized builds) and tidying up.
   4766 - Added font links in extra_fonts/ + instructions for using compressed fonts in C array.
   4767 
   4768 
   4769 -----------------------------------------------------------------------
   4770  VERSION 1.41 (2015-06-26)
   4771 -----------------------------------------------------------------------
   4772 
   4773 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.41
   4774 
   4775 Breaking Changes:
   4776 
   4777 - Changed ImageButton() default bg_col parameter from (0,0,0,1) (black) to (0,0,0,0) (transparent).
   4778   Only makes a difference when texture have transparency.
   4779 - Changed Selectable() API from (label, selected, size) to (label, selected, flags, size).
   4780   Size override should be used very rarely so hopefully it doesn't affect many people. Sorry!
   4781 
   4782 Other Changes:
   4783 
   4784 - Added InputTextMultiline() multi-line text editor, vertical scrolling, selection, optimized enough to handle rather
   4785   big chunks of text in stateless context (thousands of lines are ok), option for allowing Tab to be input, option
   4786   for validating with Return or Ctrl+Return (#200).
   4787 - Added modal window API, BeginPopupModal(), follows the popup api scheme. Modal windows can be closed by clicking
   4788   outside. By default the rest of the screen is dimmed (using ImGuiCol_ModalWindowDarkening). Modal windows can be stacked.
   4789 - Added GetGlyphRangesCyrillic() helper (#237).
   4790 - Added SetNextWindowPosCenter() to center a window prior to knowing its size. (#249)
   4791 - Added IsWindowHovered() helper.
   4792 - Added IsMouseReleased(), IsKeyReleased() helpers to allow to user to avoid tracking them. (#248)
   4793 - Allow Set*WindowSize() calls to be used with popups.
   4794 - Window: AutoFit can be triggered on each axis separately via SetNextWindowSize(), etc.
   4795 - Window: fixed scrolling with mouse wheel while window was collapsed.
   4796 - Window: fixed mouse wheel scroll issues.
   4797 - DragFloat(), SliderFloat(): Fixed rounding of negative numbers which sometime made the negative lower bound unreachable.
   4798 - InputText(): lifted character count limit.
   4799 - InputText(): fixes in case of using per-window font scaling.
   4800 - Selectable(), MenuItem(): do not use frame rounding for hovering/selection.
   4801 - Selectable(): Added flag ImGuiSelectableFlags_DontClosePopups.
   4802 - Selectable(): Added flag ImGuiSelectableFlags_SpanAllColumns (#125).
   4803 - Combo(): Fixed issue with activating a Combo() not taking active id (#241).
   4804 - ColorButton(), ColorEdit4(): fix to ensure that the colored square stays square when non-default padding settings are used.
   4805 - BeginChildFrame(): returns bool like BeginChild() for clipping.
   4806 - SetScrollPosHere(): takes account of item height + more accurate centering + fixed precision issue.
   4807 - ImFont: ignoring '\r'.
   4808 - ImFont: added GetCharAdvance() helper. Exposed font Ascent and font Descent.
   4809 - ImFont: additional rendering optimizations.
   4810 - Metrics windows display storage size.
   4811 
   4812 
   4813 -----------------------------------------------------------------------
   4814  VERSION 1.40 (2015-05-31)
   4815 -----------------------------------------------------------------------
   4816 
   4817 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.40
   4818 
   4819 Breaking Changes:
   4820 
   4821 - The BeginPopup() API (introduced in 1.37) had to be changed to allow for stacked popups and menus.
   4822   Use OpenPopup() to toggle the opened state and BeginPopup() to append.**
   4823 - The third parameter of Button(), 'repeat_if_held' has been removed. While it's been very rarely used,
   4824   some code will possibly break if you didn't rely on the default parameter.
   4825   Use PushButtonRepeat()/PopButtonRepeat() to configure repeat.
   4826 - Renamed IsRectClipped() to !IsRectVisible() for consistency (opposite return value!). Kept inline redirection function (will obsolete)
   4827 - Renamed GetWindowCollapsed() to IsWindowCollapsed() for consistency. Kept inline indirection function (will obsolete).
   4828 
   4829 Other Changes:
   4830 
   4831 - Menus: Added a menu system! Menus are typically populated with menu items and sub-menus, but you can add any sort of
   4832   widgets in them (buttons, text inputs, sliders, etc.). (#126)
   4833 - Menus: Added MenuItem() to append a menu item. Optional shortcut display, acts a button & toggle with checked/unchecked state,
   4834   disabled mode. Menu items can be used in any window.
   4835 - Menus: Added BeginMenu() to append a sub-menu. Note that you generally want to add sub-menu inside a popup or a menu-bar.
   4836   They will work inside a normal window but it will be a bit unusual.
   4837 - Menus: Added BeginMenuBar() to append to window menu-bar (set ImGuiWindowFlags_MenuBar to enable).
   4838 - Menus: Added BeginMainMenuBar() helper to append to a fullscreen main menu-bar.
   4839 - Popups: Support for stacked popups. Each popup level inhibit inputs to lower levels. The menus system is based on this. (#126).
   4840 - Popups: Added BeginPopupContextItem(), BeginPopupContextWindow(), BeginPopupContextVoid() to create a popup window on mouse-click.
   4841 - Popups: Popups have borders by default (#197), attenuated border alpha in default theme.
   4842 - Popups & Tooltip: Fit within display. Handling various positioning/sizing/scrolling edge cases. Better hysteresis when moving
   4843   in corners. Tooltip always tries to stay away from mouse-cursor.
   4844 - Added ImGuiStorage::GetVoidPtrRef() for manipulating stored void*.
   4845 - Added IsKeyDown() IsMouseDown() as convenience and for consistency with existing functions (instead of reading them from IO structures).
   4846 - Added Dummy() helper to advance layout by a given size. Unlike InvisibleButton() this doesn't catch any click.
   4847 - Added configurable io.KeyRepeatDelay, io.KeyRepeatRate keyboard and mouse repeat rate.
   4848 - Added PushButtonRepeat() / PopButtonRepeat() to enable hold-button-to-repeat press on any button.
   4849 - Removed the third 'repeat' parameter of Button().
   4850 - Added IsAnyItemHovered() helper.
   4851 - Added GetItemsLineHeightWithSpacing() helper.
   4852 - Added ImGuiListClipper helper for clipping large list of evenly sized items, to avoid using CalcListClipping() directly.
   4853 - Separator: within group start on group horizontal offset. (#205)
   4854 - InputText: Fixed incorrect edit state after text buffer is appended to by user via the callback. (#206)
   4855 - InputText: CTRL+letter-key shortcuts (e.g. CTRL+C/V/X) makes sure only CTRL is pressed. (#214)
   4856 - InputText: Fixed cursor generating a zero-width wire-frame rectangle turning into a division by zero (would go unnoticed
   4857   unless you trapped exceptions).
   4858 - InputFloatN/InputIntN: Flags parameter added to match scalar versions. (#218)
   4859 - Selectable: Horizontal filling not declared to ItemSize() so Selectable(),SameLine() works and we can better auto-fit the window.
   4860 - Selectable: Handling text baseline alignment for line that aren't of text height.
   4861 - Combo: Empty label doesn't add ItemInnerSpacing alignment, matching other widgets.
   4862 - EndGroup: Carries the text base offset from the last line of the group (sort of incorrect but better than nothing,
   4863   should use the first line of the group, will implement in the future).
   4864 - Columns: distinguish columns-set ID from other widgets as a convenience, added asserts and sailors.
   4865 - ListBox: ListBox() function only use public API to encourage creating custom versions. ListBoxHeader() can return false.
   4866 - ListBox: Uses ImGuiListClipper and assume items of matching height, so large lists can be handled.
   4867 - Plot: overlay label clipped within frame when not fitting.
   4868 - Window: Added ImGuiSetCond_Appearing to test the hidden->visible transition in SetWindow***/SetNextWindow*** functions.
   4869 - Window: Auto-fitting cancel out one worth of vertical spacing for vertical symmetry (like what group and tooltip do).
   4870 - Window: Default item width for auto-resizing windows expressed as a factor of font height, scales better with different font.
   4871 - Window: Fixed auto-fit calculation mismatch of whether a scrollbar will be added by maximum height clamping. Also honor NoScrollBar in the case of height clamping, not adding extra horizontal space.
   4872 - Window: Hovering require to hover same child window. Reverted 860cf57 (December 3). Might break something if you have
   4873   child overlapping items in parent window.
   4874 - Window: Fixed appending multiple times to an existing child via multiple BeginChild/EndChild calls to same child name.
   4875   Allows a simple form of out-of-order appending.
   4876 - Window: Fixed auto-filling child window using WindowMinSize at their minimum size, irrelevant.
   4877 - Metrics: Added io.MetricsActiveWindows counter. (#213.
   4878 - Metrics: Added io.MetricsAllocs counter (number of active memory allocations).
   4879 - Metrics: ShowMetricsWindow() shows popups stack, allocations.
   4880 - Style: Added style.DisplayWindowPadding to prevent windows from reaching edges of display (similar to style.DisplaySafeAreaPadding which is still in effect and also affect popups/tooltips).
   4881 - Style: Removed style.AutoFitPadding, using style.WindowPadding makes more sense (the default values were already the same).
   4882 - Style: Added style.ScrollbarRounding. (#212)
   4883 - Style: Added ImGuiCol_TextDisabled for disabled text. Added TextDisabled() helper.
   4884 - Style: Added style.WindowTitleAlign alignment options, to e.g. center title on windows. (#222)
   4885 - ImVector: tweak growth strategy, matches vector from VS2010.
   4886 - ImFontAtlas: Added ClearFonts(), making the different clear funcs more explicit. (#224)
   4887 - ImFontAtlas: Fixed appending new fonts without clearing existing fonts. Clearing input data left to application. (#224)
   4888 - ImDrawList: Merge draw command better, cases of multiple Begin/End gets merged properly.
   4889 - Store common stacked settings contiguously in memory to avoid heap allocation for unused features, and reduce cache misses.
   4890 - Shutdown() tests for g.IO.Fonts not being NULL to ease use of multiple ImGui contexts. (#207)
   4891 - Added IMGUI_DISABLE_OBSOLETE_FUNCTIONS define to disable the functions that are meant to be removed.
   4892 - Examples: Added ? marks with tooltips next to various widgets. Added more comments in the demo window.
   4893 - Examples: Added Menu-bar example.
   4894 - Examples: Added Simple Layout example.
   4895 - Examples: AutoResize demo doesn't use TextWrapped().
   4896 - Examples: Console example uses standard malloc/free, makes more sense as a copy & pastable example.
   4897 - Examples: DirectX9/11: Fixed key mapping for down arrow.
   4898 - Examples: DirectX9/11: hide OS cursor if ImGui is drawing it. (#155)
   4899 - Examples: DirectX11: explicitly set rasterizer state.
   4900 - Examples: OpenGL3: Add conditional compilation of forward compat as required by glfw on OSX. (#229)
   4901 - Fixed build with Visual Studio 2008 (possibly earlier versions as well).
   4902 - Other fixes, comments, tweaks.
   4903 
   4904 
   4905 -----------------------------------------------------------------------
   4906  VERSION 1.38 (2015-04-20)
   4907 -----------------------------------------------------------------------
   4908 
   4909 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.38
   4910 
   4911 Breaking Changes:
   4912 
   4913 - Renamed IsClipped() to IsRectClipped(). Kept inline redirection function (will obsolete).
   4914 - Renamed ImDrawList::AddArc() to ImDrawList::AddArcFast().
   4915 
   4916 Other Changes:
   4917 
   4918 - Added DragFloat(), DragInt() widget, click and drag to adjust value with given step.
   4919   Hold SHIFT/ALT to speed-up/slow-down. Double-click or CTRL+click to input text.
   4920   Passing min >= max makes the widget unbounded.
   4921 - Added DragFloat2(), DragFloat3(), DragFloat4(), DragInt2(), DragInt3(), DragInt4() helper variants.
   4922 - Added ShowMetricsWindow() which is mainly useful to debug ImGui internals. Added IO.MetricsRenderVertices counter.
   4923 - Added ResetMouseDragDelta() for iterative dragging operations.
   4924 - Added ImFontAtlas::AddFontFromCompressedTTF() helper + binary_to_compressed_c.cpp tool to compress a file and create a .c array from it.
   4925 - Added PushId() GetId() variants that takes string range to avoid user making unnecessary copies.
   4926 - Added IsItemVisible().
   4927 - Fixed IsRectClipped() incorrectly returning false when log is enabled.
   4928 - Slider: visual fix in the unlikely that style.GrabMinSize is larger than a slider.
   4929 - SliderFloat: removed support for unbound slider (using FLT_MAX), caused various inconsistency. Use InputFloat()/DragFloat().
   4930 - ColorEdit4: hide components prefix if there's no space for them.
   4931 - Combo: adding frame padding inside the combo box.
   4932 - Columns: mouse dragging uses absolute mouse coordinates.Fixed dragging left-most column of an auto-resizable window. #125
   4933 - Selectable: render highlight into AutoFitPadding region but do not extend it, fixing visual gap.
   4934 - Focus: Allow SetWindowFocus(NULL) to remove focus.
   4935 - Focus: Clicking on void (outside an ImGui windows) loses keyboard-focus so application can use TAB.
   4936 - Popup: Fixed hovering over a popup's child (popups disable hovering on other windows but not their childs) #197
   4937 - Fixed active widget not releasing its active state while being clipped.
   4938 - Fixed user-facing version of IsItemHovered() ignoring overlapping windows.
   4939 - Fixed label vertical alignment for InputInt2(), InputInt3(), InputInt4().
   4940 - Fixed new collapsed auto-resizing window with saved .ini settings not calculating their initial width #176
   4941 - Fixed Begin() returning true on collapsed windows that had loaded settings #176
   4942 - Fixed style.DisplaySafeAreaPadding handling from being applied on window prior to them auto-fitting.
   4943 - ShowTestWindow(): added examples for DragFloat, DragInt and only custom label embedded in format strings.
   4944 - ShowTestWindow(): fixed "manipulating titles" example not doing the right thing, broken in ff35d24
   4945 - Examples: OpenGL/GLFW: Fixed modifier key state setting in GLFW callbacks.
   4946 - Examples: OpenGL/GLFW: Added glBindTexture(0) in OpenGL fixed pipeline examples. Save restore current program and texture in the OpenGL3 example.
   4947 - Examples: DirectX11: Removed unnecessary vertices conversion and CUSTOMVERTEX types.
   4948 - Comments, fixes, tweaks.
   4949 
   4950 
   4951 -----------------------------------------------------------------------
   4952  VERSION 1.37 (2015-03-26)
   4953 -----------------------------------------------------------------------
   4954 
   4955 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.37
   4956 
   4957 Other Changes:
   4958 
   4959 - Added a more convenient three parameters version of Begin() which covers the common uses better.
   4960 - Added mouse cursor types handling (resize, move, text input cursors, etc.) that user can query with GetMouseCursor(). Added demo and instructions in ShowTestWindow().
   4961 - Added embedded mouse cursor data for MouseDrawCursor software cursor rendering, for consoles/tablets/etc. (#155).
   4962 - Added first version of BeginPopup/EndPopup() helper API to create popup menus. Popups automatically lock their position to the mouse cursor when first appearing. They close  automatically when clicking outside, and inhibit hovering items from other windows when active (to allow for clicking outside). (#126)
   4963 - Added thickness parameter to ImDrawList::AddLine().
   4964 - Added ImDrawList::PushClipRectFullScreen() helper.
   4965 - Added style.DisplaySafeAreaPadding which was previously hard-coded (useful if you can't see the edges of your display, e.g. TV screens).
   4966 - Added CalcItemRectClosestPoint() helper.
   4967 - Added GetMouseDragDelta(), IsMouseDragging() helpers, given a mouse button and an optional "unlock" threshold. Added io.MouseDragThreshold setting. (#167)
   4968 - IsItemHovered() return false if another widget is active, aka we can't use what we are hovering now.
   4969 - Added IsItemHoveredRect() if old behavior of IsItemHovered() is needed (e.g. for implementing the drop side of a drag'n drop operation).
   4970 - IsItemhovered() include space taken by label and behave consistently for all widgets (#145)
   4971 - Auto-filling child window feed their content size to parent (#170)
   4972 - InputText() removed the odd ~ characters when clipping.
   4973 - InputText() update its width in case of resize initiated programmatically while the widget is active.
   4974 - InputText() last active preserve scrolling position. Reset scroll if widget size becomes bigger than contents.
   4975 - Selectable(): not specifying a width defaults to using max of label width and remaining width.
   4976 - Selectable(const char*, bool) version has bool defaulting to false.
   4977 - Selectable(): fixed misusage of GetContentRegionMax().x leaking into auto-fitting.
   4978 - Windows starting Collapsed runs initial auto-fit to retrieve a width for their title bar (#175)
   4979 - Fixed new window from having an incorrect content size on their first frame, if queried by user. Fixed SetWindowPos/SetNextWindowPos having a side-effect size computation (#175)
   4980 - InputFloat(): fixed label alignment if total widget width forcefully bigger than space available.
   4981 - Auto contents size aware of enforced vertical scrollbar if window is larger than display size.
   4982 - Fixed new windows auto-fitting bigger than their .ini saved size. This was a bug but it may be a desirable effect sometimes, may reconsider it.
   4983 - Fixed negative clipping rectangle when collapsing windows that could affect manual submission to ImDrawList and end-user rendering function if unhandled (#177)
   4984 - Fixed bounding measurement of empty groups (fix #162)
   4985 - Fixed assignment order in Begin() making auto-fit size effectively lag by one frame. Also disabling "clamp into view" while windows are auto-fitting so that auto-fitting window in corners don't get pushed away.
   4986 - Fixed MouseClickedPos not updated on double-click update (#167)
   4987 - Fixed MouseDrawCursor feature submitting an empty trailing command in the draw list. Fixed unmerged draw calls for software mouse cursor.
   4988 - Fixed double-clicking on resize grip keeping the grip active if mouse button is kept held.
   4989 - Bounding box tests exclude higher bound, so touching items (zero spacing) don't report double hover when cursor is on edge.
   4990 - Setting io.LogFilename to NULL disable default LogToFile() (part of #175)
   4991 - Tweak stb_textedit integration to be lenient if another piece of code are leaking their STB_TEXTEDIT definitions/symbols.
   4992 - Shutdown() freeing a few extra vectors so they don't have to freed by destruction (#169)
   4993 - Examples: OpenGL2/3 examples automatically hide the OS mouse cursor if software cursor rendering is used.
   4994 - ShowTestWindow: Added Widgets Alignment demo under Layout section
   4995 - ShowTestWindow: Added simple dragging widget example.
   4996 - ShowTestWindow: Graph has checkbox under the label, also demo using BeginGroup/EndGroup().
   4997 - ShowTestWindow: Using SetNextWindowSize() in examples to encourage its use.
   4998 - Fixes, tweaks, comments.
   4999 
   5000 
   5001 -----------------------------------------------------------------------
   5002  VERSION 1.36 (2015-03-18)
   5003 -----------------------------------------------------------------------
   5004 
   5005 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.36
   5006 
   5007 Other Changes:
   5008 
   5009 - Added ImGui::GetVersion(), IMGUI_VERSION (#127)
   5010 - Added BeginGroup()/EndGroup() layout tools (#160).
   5011 - Added Indent() / Unindent().
   5012 - Added InputInt2(), InputInt3(), InputInt4() for completeness.
   5013 - Added GetItemRectSize().
   5014 - Added VSliderFloat(), VSliderInt(), vertical sliders.
   5015 - Added IsRootWindowFocused(), IsRootWindowOrAnyChildFocused().
   5016 - Added io.KeyAlt + support in examples apps, in prevision for future usage of Alt modifier (was missing).
   5017 - Added ImGuiStyleVar_GrabMinSize enum value for PushStyleVar().
   5018 - Various fixes related to vertical alignment of text after widget of varied sizes. Allow for multiple blocks of multiple lines text on the same "line". Added demos.
   5019 - Explicit size passed to Plot*(), Button() includes the frame padding.
   5020 - Style: Changed default Border and Column border colors to be most subtle.
   5021 - Renamed style.TreeNodeSpacing to style.IndentSpacing, ImGuiStyleVar_TreeNodeSpacing to ImGuiStyleVar_IndentSpacing.
   5022 - Renamed GetWindowIsFocused() to IsWindowFocused(), kept inline redirection with old name (will obsolete).
   5023 - Renamed GetItemRectMin()/GetItemRectMax() to GetItemRectMin()/GetItemRectMax(), kept inline redirection with old name (will obsolete).
   5024 - Sliders: Fast-path when power=1.0f, also makes code easier to read.
   5025 - Sliders: Fixed parsing of decimal precision back from format string when using %%.
   5026 - Sliders: Fixed hovering bounding test excluding padding between outer frame and grab (there was a few pixels dead-zone).
   5027 - Separator() logs itself as text when passing through text log.
   5028 - Optimisation: TreeNodeV() early out if SkipItems is set without formatting.
   5029 - Moved various static buffers into state. Increase the formatted string buffer from 1K to 3K.
   5030 - Examples: Example console keeps focus on input box at all times.
   5031 - Examples: Updated to GLFW 3.1. Moved to examples/libs/ folder.
   5032 - Examples: Added 64-bit projects for MSVC.
   5033 - Examples: Increase warning level from /W3 to /W4 for MSVC.
   5034 - Examples: DirectX9: fixed duplicate creation of vertex buffer.
   5035 - Renamed internal type ImGuiAabb to ImRect. Changed mentions of 'box' or 'aabb' to say 'rect'.
   5036 - Tweaks, minor fixes and comments.
   5037 
   5038 
   5039 -----------------------------------------------------------------------
   5040  VERSION 1.35 (2015-03-09)
   5041 -----------------------------------------------------------------------
   5042 
   5043 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.35
   5044 
   5045 Other Changes:
   5046 
   5047 - Examples: refactored all examples application to make it easier to isolate and grab the code you need for OpenGL 2/3, DirectX 9/11, and toward a more sensible format for samples.
   5048 - Scrollbar grab have a minimum size (style.GrabSizeMin), always visible even with huge scroll amount. (#150).
   5049 - Scrollbar: Clicking inside the grab box doesn't modify scroll value. Subsequent movement always relative.
   5050 - Added "###" labelling syntax to pass a label that isn't part of the hashed ID (#107), e.g. ("%d###static_id",rand()).
   5051 - Added GetColumnIndex(), GetColumnsCount() (#154)
   5052 - Added GetScrollPosY(), GetScrollMaxY().
   5053 - Fixed the Chinese/Japanese glyph ranges; include missing punctuations (#156)
   5054 - Fixed Combo() and ListBox() labels not included in declared size, for use with SameLine(), etc. (fix #149, #151).
   5055 - Fixed ListBoxHeader() incorrect handling of SkipItems early out when window is collapsed.
   5056 - Fixed using IsItemHovered() after EndChild() (#151)
   5057 - Fixed malformed UTF-8 decoding errors leading to infinite loops (#158)
   5058 - InputText() handles buffer limit correctly for multi-byte UTF-8 characters, won't insert an incomplete UTF-8 character when reaching buffer limit (fix #158)
   5059 - Handle double-width space (0x3000) in various places the same as single-width spaces, for Chinese/Japanese users.
   5060 - Collapse triangle uses text color (not border color).
   5061 - Fixed font fallback glyph width.
   5062 - Renamed style.ScrollBarWidth to style.ScrollbarWidth to be consistent with other casing.
   5063 - Windows: setup a default handler for ImeSetInputScreenPosFn so the IME dialog (for Japanese/Chinese, etc.) is positioned correctly as you input text.
   5064 - Windows: default clipboard handlers for Windows handle UTF-8.
   5065 - Examples: Fixed DirectX 9/11 examples applications handling of Microsoft IME.
   5066 - Examples: Allow DirectX 9/11 examples applications to resize the window.
   5067 - ShowTestWindow: Fixed "undo" button of custom rendering applet.
   5068 - ShowTestWindow: Added "Manipulating Window Title" example.
   5069 
   5070 
   5071 -----------------------------------------------------------------------
   5072  VERSION 1.34 (2015-03-02)
   5073 -----------------------------------------------------------------------
   5074 
   5075 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.34
   5076 
   5077 Other Changes:
   5078 
   5079 - Added Bullet() helper - equivalent to BulletText(""), SameLine().
   5080 - Added SetWindowFocus(), SetWindowFocus(const char*), SetNextWindowFocus() (#146)
   5081 - Added SetWindowPos(), SetWindowSize(), SetWindowCollaposed() given a window name.
   5082 - Added SetNextTreeNodeOpened() with optional condition flag in replacement of OpenNextNode() and consistent with other API.
   5083 - Renamed ImGuiSetCondition_* to ImGuiSetCond_* and ImGuiCondition_FirstUseThisSession to ImGuiCond_Once.
   5084 - Added missing definition for ImGui::GetWindowCollapsed().
   5085 - Fixed GetGlyphRangesJapanese() actually missing katakana ranges and a few useful extensions.
   5086 - Fixed clicking on a widget in a child window not focusing the parent window (#147).
   5087 - Fixed clicking on empty space of child window not setting keyboard focus for the child window (#147).
   5088 - Fixed IsItemHovered() behaving differently on Combo() (#145)
   5089 - Fixed ColumnOffsets storage not honoring SetStateStorage() (not very useful but consistent).
   5090 - Examples: Removed dependency on Glew for OpenGL examples. Removed Glew binaries for Windows.
   5091 - Examples: Fixed link warning for OpenGL windows examples.
   5092 - Comments, tweaks.
   5093 
   5094 -----------------------------------------------------------------------
   5095  VERSION 1.33b (2015-02-23)
   5096 -----------------------------------------------------------------------
   5097 
   5098 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.33b
   5099 
   5100 Other Changes:
   5101 
   5102 - Fixed resizing columns.
   5103 
   5104 
   5105 -----------------------------------------------------------------------
   5106  VERSION 1.33 (2015-02-22)
   5107 -----------------------------------------------------------------------
   5108 
   5109 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.33
   5110 
   5111 Other Changes:
   5112 
   5113 - InputText: having a InputText widget active doesn't steal mouse inputs from clicking on a button before losing focus (relate to #134)
   5114 - InputText: cursor/selection/undo stack persist when using other widgets and getting back to same (#134).
   5115 - InputText: fix effective buffer size being smaller than necessary by 1 byte (so if you give 3 bytes you can input 2 ascii chars + zero terminator, which is correct).
   5116 - Added IsAnyItemActive().
   5117 - Child window explicitly inherit collapse state from parent (so if user keeps submitting items even thought Begin has returned 'false' the child items will be clipped faster).
   5118 - BeginChild() return a bool the same way Begin() does. if true you can skip submitting content.
   5119 - Removed extraneous (1,1) padding on child window (pointed out in #125)
   5120 - Columns: doesn't bail out when SkipItems is set (fix #136)
   5121 - Columns: Separator() within column correctly vertical offset all cells (pointed out in #125)
   5122 - GetColumnOffset() / SetColumnOffset() handles padding values more correctly so matching columns can be lined up between a parent and a child window (cf. #125)
   5123 - Fix ImFont::BuildLookupTable() potential dangling pointer dereference (fix #131)
   5124 - Fix hovering of child window extending past their parent not taking account of parent clipping rectangle (fix #137)
   5125 - Sliders: value text is clipped inside the frame when resizing sliders to be small.
   5126 - ImGuITextFilter::Draw() use regular width call rather than computing its own arbitrary width.
   5127 - ImGuiTextFilter: can take a default filter string during construction.
   5128 
   5129 
   5130 -----------------------------------------------------------------------
   5131  VERSION 1.32 (2015-02-11)
   5132 -----------------------------------------------------------------------
   5133 
   5134 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.32
   5135 
   5136 Other Changes:
   5137 
   5138 - Added Selectable() building block for various list boxes, combo boxes, etc.
   5139 - Added ListBox() (#129).
   5140 - Added ListBoxHeader(), ListBoxFooter() for customized list traversal and creating multi-selection boxes.
   5141 - Fixed title bar text clipping issue (fix #128).
   5142 - InputText: added ImGuiInputTextFlags_CallbackCharFilter system for filtering/replacement (#130). Callback now passed an "EventFlag" parameter.
   5143 - InputText: Added ImGuiInputTextFlags_CharsUppercase and ImGuiInputTextFlags_CharsNoBlank stock filters.
   5144 - PushItemWidth() can take negative value to right-align items.
   5145 - Optimisation: Columns offsets cached to avoid unnecessary binary search.
   5146 - Optimisation: Optimized CalcTextSize() function by about 25% (they are often the bottleneck when submitting thousands of clipped items).
   5147 - Added ImGuiCol_ChildWindowBg, ImGuiStyleVar_ChildWindowRounding for completeness and flexibility.
   5148 - Added BeginChild() variant that takes an ImGuiID.
   5149 - Tweak default ImGuiCol_HeaderActive color to be less bright.
   5150 - Calculate framerate for the user (IO.Framerate), as a purely luxurious feature and to reduce sample code size a little.
   5151 
   5152 
   5153 -----------------------------------------------------------------------
   5154  VERSION 1.31 (2015-02-08)
   5155 -----------------------------------------------------------------------
   5156 
   5157 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.31
   5158 
   5159 Other Changes:
   5160 
   5161 - Added ImGuiWindowFlags_NoCollapse flag.
   5162 - Added a way to replace the internal state pointer so that we can optionally share it between modules (e.g. multiple DLLs).
   5163 - Added tint_col parameter to ImageButton().
   5164 - Added CalcListClipping() helper to perform faster/coarse clipping on user side (when manipulating lists with thousands of items).
   5165 - Added GetCursorPosX() / GetCursorPosY() shortcuts.
   5166 - Renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing().
   5167 - Combo box always appears above other child windows of a same parent.
   5168 - Combo/Label: label is properly clipped inside the frame (#23).
   5169 - Added cpu-side text clipping functions which are used in some instances to avoid extra draw calls.
   5170 - InputText: Filtering private Unicode range 0xE000-0xF8FF.
   5171 - Fixed holding button over scrollbar creating a small feedback loop with calculation of contents size.
   5172 - Calling SetCursorPos() automatically extends the contents size.
   5173 - Track ownership of mouse clicks. Avoid requesting IO.WantCaptureMouse if initial click was outside of ImGui.
   5174 - Removed the dependency on realloc().
   5175 - Other fixes, tweaks and comments.
   5176 
   5177 
   5178 -----------------------------------------------------------------------
   5179  VERSION 1.30 (2015-02-01)
   5180 -----------------------------------------------------------------------
   5181 
   5182 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.30
   5183 
   5184 Breaking Changes:
   5185 
   5186 - Big update! Initialisation had to be changed. You don't need to load PNG data anymore. The new system gives you uncompressed texture data.
   5187   - This sequence:
   5188       const void* png_data;
   5189       unsigned int png_size;
   5190       ImGui::GetDefaultFontData(NULL, NULL, &png_data, &png_size);
   5191       // <Copy to GPU>
   5192   - Became:
   5193       unsigned char* pixels;
   5194       int width, height;
   5195       // io.Fonts->AddFontFromFileTTF("myfontfile.ttf", 24.0f);  // Optionally load another font
   5196       io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height);
   5197       // <Copy to GPU>
   5198       io.Fonts->TexID = (your_texture_identifier);
   5199   - PixelCenterOffset has been removed and isn't a necessary setting anymore. Offset your projection matrix by 0.5 if you have rendering problems.
   5200 
   5201 Other Changes:
   5202 
   5203 - Loading TTF files with stb_truetype.h.
   5204 - We still embed a compressed pixel-perfect TTF version of ProggyClean for convenience.
   5205 - Runtime font rendering is a little faster than previously.
   5206 - You can load multiple fonts with multiple size inside the font atlas. Rendering with multiple fonts are still merged into a single draw call whenever possible.
   5207 - The system handles UTF-8 and provide ranges to easily load e.g. characters for Japanese display.
   5208 - Added PushFont() / PopFont().
   5209 - Added Image() and ImageButton() to display your own texture data.
   5210 - Added callback system in command-list. This can be used if you want to do your own rendering (e.g. render a 3D scene) inside ImGui widgets.
   5211 - Added IsItemActive() to tell if last widget is being held / modified (as opposed to just being hovered). Useful for custom dragging behaviors.
   5212 - Style: Added FrameRounding setting for a more rounded look (default to 0 for now).
   5213 - Window: Fixed using multiple Begin/End pair on the same wnidow.
   5214 - Window: Fixed style.WindowMinSize not being honored properly.
   5215 - Window: Added SetCursorScreenPos() helper (WindowPos+CursorPos = ScreenPos).
   5216 - ColorEdit3: clicking on color square change the edition. The toggle button is hidden by default.
   5217 - Clipboard: Fixed logging to clipboard on architectures where va_list are passed by reference to vsnprintf.
   5218 - Clipboard: Improve memory reserve policy for Clipboard / ImGuiTextBuffer.
   5219 - Tooltip: Always auto-resize.
   5220 - Tooltip: Fixed TooltigBg color not being honored properly.
   5221 - Tooltip: Allow SetNextWindowPos() to be used on tooltips.
   5222 - Added io.DisplayVisibleMin / io.DisplayVisibleMax to ease integration of virtual / scrolling display.
   5223 - Added Set/GetVoidPtr in ImGuiStorage.
   5224 - Added ColorConvertHSVtoRGB, ColorConvertRGBtoHSV, ColorConvertFloat4ToU32 helpers.
   5225 - Added ImColor() inline helper to easily convert colors to packed 4x1 byte or 4x1 float formats.
   5226 - Added io.MouseDrawCursor option to draw a mouse cursor for now (on systems that don't have one)
   5227 - Examples: Added custom drawing app example for using ImDrawList api.
   5228 - Lots of others fixes, tweaks and comments!
   5229 
   5230 
   5231 -----------------------------------------------------------------------
   5232  VERSION 1.20 (2015-01-07)
   5233 -----------------------------------------------------------------------
   5234 
   5235 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.20
   5236 
   5237 - Fixed InputInt() InputFloat() label not declaring their width, breaking usage of SameLine().
   5238 - Fixed hovering of combo boxes that extend beyond the parent window limits.
   5239 - Fixed text input of Unicode character in the 128-255 range.
   5240 - Fixed clipboard pasting into an InputText box not filtering the characters according to contents semantic.
   5241 - Dragging outside area of a widget while it is active doesn't trigger hover on other widgets.
   5242 - Activating widget bring parent window to front if not already.
   5243 - Checkbox and Radio buttons activate on click-release to be consistent with other widgets and most UI.
   5244 - InputText() nows consume input characters immediately so they cannot be reused if ImGui::Update is called again with a call to ImGui::Render(). (fixes #105)
   5245 - Examples: Console: added support for History callbacks + some cleanup.
   5246 - Various small optimisations.
   5247 - Cleanup and other fixes.
   5248 
   5249 
   5250 -----------------------------------------------------------------------
   5251  VERSION 1.19 (2014-12-30)
   5252 -----------------------------------------------------------------------
   5253 
   5254 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.19
   5255 
   5256 - Tightening default style a little.
   5257 - Added ImGuiStyleVar_WindowRounding enum for PushStyleVar() API.
   5258 - Added SliderInt2(), SliderInt3(), SliderInt4() for consistency.
   5259 - Widgets more consistently handle empty labels (starting with ## mark) for their size calculation.
   5260 - Fixed crashing with zero sized frame-buffer.
   5261 - Fixed ImGui::Combo() not registering its size properly when clipped out of screen.
   5262 - Renamed second parameter to Begin() to 'bool* p_opened' to be a little more self-explanatory. Added more comments on the use of Begin().
   5263 - Logging: Added LogText() to pass text straight to the log output (tty/clipboard/file) without rendering it.
   5264 - Logging: Added LogFinish() to stop logging at an arbitrary point.
   5265 - Logging: Log depth padding relative to start depth.
   5266 - Logging: Tree nodes and headers looking better when logged to text.
   5267 - Logging: Log outputs \r\n under Windows to play it nicely with \n unaware tools such as Notepad.
   5268 - Style editor: added a button to output colors to clipboard/tty.
   5269 - OpenGL3 example: fix growing of VBO.
   5270 - Cleanup and other minor fixes.
   5271 
   5272 
   5273 -----------------------------------------------------------------------
   5274  VERSION 1.18 (2014-12-11)
   5275 -----------------------------------------------------------------------
   5276 
   5277 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.18
   5278 
   5279 - Added ImGuiWindowFlags_NoScrollWithMouse, disable mouse wheel scrolling on a window.
   5280 - Added ImGuiWindowFlags_NoSavedSettings, disable loading/saving window state to .ini file.
   5281 - Added SetNextWindowPos(), SetNextWindowSize(), SetNextWindowCollapsed() API along with SetWindowPos(), SetWindowSize(), SetWindowCollapsed(). All functions include an optional second parameter to easily set current value vs session default value vs persistent default value.
   5282 - Removed rarely useful SetNewWindowDefaultPos() in favor of new API.
   5283 - Fixed hovering of lower-right resize grip when it is above a child window.
   5284 - Fixed InputInt() writing to output when it doesn't need to.
   5285 - Added IMGUI_INCLUDE_IMGUI_USER_H define to include user file at the bottom of imgui.h without modifying the vanilla distribution.
   5286 - ImGuiStorage helper can store float + added helpers to get pointer to stored data.
   5287 - Setup Travis CI integration. Builds the OpenGL examples on Linux with GCC and Clang.
   5288 - Examples: Added a "Fixed overlay" example in ShowTestWindow().
   5289 - Examples: Re-added OpenGL 3 programmable-pipeline example (along with the existing fixed pipeline example).
   5290 - Examples: OpenGL examples can now resize the application window.
   5291 - Other minor fixes and comments.
   5292 
   5293 
   5294 -----------------------------------------------------------------------
   5295  VERSION 1.17 (2014-12-03)
   5296 -----------------------------------------------------------------------
   5297 
   5298 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.17
   5299 
   5300 - Added ImGuiWindowFlags_AlwaysAutoResize + example app.
   5301 - Calling ImGui::SetWindowSize(0,0) force an autofit without zero-sizing first.
   5302 - ImGui::InputText() support for completion/history/custom callback + added fancy completion example in the console demo app.
   5303 - Not word-wrapping on apostrophes.
   5304 - Increased visibility of check box and radio button with smaller size.
   5305 - Smooth mouse scrolling on OSX (uses floating point scroll/wheel input).
   5306 - New version of IMGUI_ONCE_UPON_A_FRAME helper macro that works with all compilers.
   5307 - Moved IO.Font*** options to inside the IO.Font-> structure.. Added IO.FontGlobalScale setting (in addition to Font->Scale per individual font).
   5308 - Fixed more Clang -Weverything warnings.
   5309 - Examples: Added DirectX11 example application.
   5310 - Examples: Created single .sln solution for all example projects.
   5311 - Examples: Fixed DirectX9 example window initially showing an hourglass cursor.
   5312 - Examples: Removed Microsoft IME handler in examples, too niche/confusing. Moved equivalent code to imgui.cpp instruction block.
   5313 
   5314 
   5315 -----------------------------------------------------------------------
   5316  VERSION 1.16b (2014-11-21)
   5317 -----------------------------------------------------------------------
   5318 
   5319 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.16b
   5320 
   5321 - Fix broken PopStyleVar() crashing.
   5322 
   5323 
   5324 -----------------------------------------------------------------------
   5325  VERSION 1.16 (2014-11-21)
   5326 -----------------------------------------------------------------------
   5327 
   5328 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.16
   5329 
   5330 - General fixing of Columns API to allow filling a cell with multiple widgets before switching to the next column.
   5331 - Added documentation INDEX to top of imgui.cpp.
   5332 - Fixed unaligned memory access for Emscripten compatibility.
   5333 - Various pedantic warning fixes (now testing with Clang).
   5334 - Added extra asserts to catch incorrect usage.
   5335 - PushStyleColor() / PushStyleVar() can be used outside the scope of a window (namely to change variables that are used within the Begin() call).
   5336 - PushTextWrapPos() defaults to 0.0 (right-end of current drawing region).
   5337 - Fixed compatibility with std::vector if user decide to #define ImVector.
   5338 - MouseWheel input is now normalized.
   5339 - Added IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT compile-time option to redefine the vertex layout.
   5340 - Style editor: colors listed inside a scrolling region.
   5341 - Examples: tweaks and fixes.
   5342 
   5343 
   5344 -----------------------------------------------------------------------
   5345  VERSION 1.15 (2014-11-07)
   5346 -----------------------------------------------------------------------
   5347 
   5348 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.15
   5349 
   5350 - Renamed IsHovered() to IsItemHovered().
   5351 - Added word-wrapping API: TextWrapped(), PushTextWrapPos(), PopTextWrapPos().
   5352 - Added IsItemFocused() to tell if last widget is being focused for keyboard input.
   5353 - Added overloads of ImGui::PlotLines() and ImGui::PlotHistogram() taking a function pointer to get values.
   5354 - Added SetWindowSize().
   5355 - Added GetContentRegionMax() supporting columns. Some bug fixes with using columns.
   5356 - Added PushStyleVar(),PopStyleVar() helpers to modify style from user code.
   5357 - Added dummy IMGUI_API definition in front of all entry-points for silly DLL action.
   5358 - Allowing BeginChild() allows to specify negative sizes to specify "use remaining minus xx".
   5359 - Windows with the NoResize flag can still use auto-fitting.
   5360 - Added a simple example console into the demo window.
   5361 - Comments and fixes.
   5362 
   5363 
   5364 -----------------------------------------------------------------------
   5365  VERSION 1.14 (2014-10-25)
   5366 -----------------------------------------------------------------------
   5367 
   5368 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.14
   5369 
   5370 - Comments and fixes.
   5371 - Added SetKeyboardFocusHere() to set input focus from code.
   5372 - Added GetWindowFont(), GetWindowFontSize() for users of the low-level ImDrawList API.
   5373 - Added a UserData void *pointer so that the callback functions can access user state "Just in case a project has adverse reactions to adding globals or statics in their own code."
   5374 - Renamed IMGUI_INCLUDE_IMGUI_USER_CPP to IMGUI_INCLUDE_IMGUI_USER_INL
   5375 
   5376 
   5377 ----------------------------------------------------------------------
   5378  VERSION 1.13 (2014-09-30)
   5379 -----------------------------------------------------------------------
   5380 
   5381 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.13
   5382 
   5383 - Added support for UTF-8 for international text display and text edition/input (if the font supports it).
   5384 - Added sample "M+ font" by Coji Morishita in extra_fonts/ to display Japanese text.
   5385 - Added IO.ImeSetInputScreenPosFn callback for positioning OS IME input.
   5386 - Added IO.FontFallbackGlyph (default to '?').
   5387 - OpenGL example: added commented code to load custom font from file-system.
   5388 - OpenGL example: shared makefile for Linux and MacOSX.
   5389 
   5390 
   5391 ----------------------------------------------------------------------
   5392  VERSION 1.12 (2014-09-24)
   5393 -----------------------------------------------------------------------
   5394 
   5395 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.12
   5396 
   5397 - Added IO.FontBaseScale value for easy scaling of all windows.
   5398 - Added IsMouseHoveringWindow(), IsMouseHoveringAnyWindow(), IsPosHoveringAnyWindow() helpers.
   5399 - Added va_list variations of all functions taking ellipsis (...) parameters.
   5400 - Added section in documentation to explicitly document cases of API breaking changes (e.g. renamed IM_MALLOC below).
   5401 - Moved IM_MALLOC / IM_FREE defines. to IO structure members that can be set at runtime (also allowing precompiled ImGui to cover more use cases).
   5402 - Fixed OpenGL samples for Retina display.
   5403 - Comments and minor fixes.
   5404 
   5405 
   5406 ----------------------------------------------------------------------
   5407  VERSION 1.11 (2014-09-10)
   5408 -----------------------------------------------------------------------
   5409 
   5410 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.11
   5411 
   5412 - Added more comments in the code.
   5413 - Made radio buttons render ascii when logged into tty/file/clipboard.
   5414 - Added ImGuiInputTextFlags_EnterReturnsTrue flag to InputText() and variants.
   5415 - Added #define IMGUI_INCLUDE_IMGUI_USER_CPP to optionally include imgui_user.cpp from the end of imgui.cpp
   5416 - Fixed file-descriptor leak if ImBitmapFont::LoadFromFile() calls to fseek/ftell fails.
   5417 
   5418 
   5419 ----------------------------------------------------------------------
   5420  VERSION 1.10 (2014-08-31)
   5421 -----------------------------------------------------------------------
   5422 
   5423 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.10
   5424 
   5425 - User can override memory allocators by #define-ing IM_MALLOC, IM_FREE, IM_REALLOC,
   5426 - Added SetCursorPosX(), SetCursorPosY() shortcuts.
   5427 - Checkbox() returns true when pressed.
   5428 - Added optional external fonts data in extra_fonts/ for reference.
   5429 - Removed the need to setup IO.FontHeight when using a custom font.
   5430 - Added comments on external fonts usage.
   5431 
   5432 
   5433 ----------------------------------------------------------------------
   5434  VERSION 1.09 (2014-08-28)
   5435 -----------------------------------------------------------------------
   5436 
   5437 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.09
   5438 
   5439 Breaking Changes:
   5440 
   5441 - The behaviour of PixelCenterOffset changed! You may need to change your value if you had set it to non-default in your code and/or offset your projection matrix by 0.5 pixels. It is likely that the default PixelCenterOffset value of 0.0 is now suitable unless your rendering uses some form of multisampling.
   5442 
   5443 Other Changes:
   5444 
   5445 - Various minor render tweaks and fixes. Better support for renderers using multisampling.
   5446 - Moved IMGUI_FONT_TEX_UV_FOR_WHITE #define to a variable in the IO structure so font can be changed at runtime.
   5447 - Minor other fixes, tweaks, comments.
   5448 
   5449 
   5450 ----------------------------------------------------------------------
   5451  VERSION 1.08 (2014-08-25)
   5452 -----------------------------------------------------------------------
   5453 
   5454 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.09
   5455 
   5456 - Fixed ImGuiTextFilter trimming of leading/trailing blanks.
   5457 - Fixed file descriptor leak on LoadSettings() failure.
   5458 - Fix type conversion compiler warnings.
   5459 - Added basic sizes edition in the style editor.
   5460 - Added CalcTextSize(), GetCursorScreenPos() functions.
   5461 - Disable client state in OpenGL example after rendering.
   5462 - Converted all Tabs to Spaces in sources.
   5463 
   5464 
   5465 ----------------------------------------------------------------------
   5466  VERSION 1.07 (2014-08-18)
   5467 -----------------------------------------------------------------------
   5468 
   5469 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.07
   5470 
   5471 - Added InputFloat4(), SliderFloat4() helpers.
   5472 - Added global Alpha in ImGuiStyle structure. When Alpha=0.0, ImGui skips most of logic and all rendering processing.
   5473 - Fix clipping of title bar text.
   5474 - Fix to allow the user to call NewFrame() multiple times without calling Render().
   5475 - Reduce inner window clipping to take account for the extend of CollapsingHeader() - share same clipping rectangle.
   5476 - Fix for child windows with inverted clip rectangles (when scrolled and out of screen, Etc.).
   5477 - Minor fixes, tweaks, comments.
   5478 
   5479 
   5480 ----------------------------------------------------------------------
   5481  VERSION 1.06 (2014-08-15)
   5482 -----------------------------------------------------------------------
   5483 
   5484 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.06
   5485 
   5486 - Added BeginTooltip()/EndTooltip() helpers to create tooltips with custom contents.
   5487 - Added TextColored() helper.
   5488 - Added a 'stride' parameter to PlotLines() / PlotHistogram().
   5489 - Fixed PlotLines() / PlotHistogram() from occasionally wrapping back to the most-left value.
   5490 - TreeNode() / CollapsingHeader() ignore clicks when CTRL or SHIFT are held.
   5491 - Slowed down mouse wheel scrolling inside combo boxes.
   5492 - Minor tweaks.
   5493 - Fixed trailing '\n' in text strings reporting extra line height.
   5494 - Fixed tooltip position needlessly leaking into .ini file.
   5495 - Fixed invalid .ini file data persistently being saved back into the file.
   5496 
   5497 
   5498 ----------------------------------------------------------------------
   5499  VERSION 1.05 (2014-08-14)
   5500 -----------------------------------------------------------------------
   5501 
   5502 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.05
   5503 
   5504 - Added default clipboard functions for Windows + "private" clipboard on other systems (user can still override).
   5505 - Fixed logarithmic sliders and HSV conversions on Mac/Linux.
   5506 - Tidying up example applications so it looks easier to just grab code.
   5507 - Added GetItemBoxMin(), GetItemBoxMax().
   5508 - Tweaks, more consistent #define names.
   5509 - Fix for doing multiple Begin()/End() during the same frame.
   5510 
   5511 
   5512 ----------------------------------------------------------------------
   5513  VERSION 1.04 (2014-08-13)
   5514 -----------------------------------------------------------------------
   5515 
   5516 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.04
   5517 
   5518 - Fixes (v1.03 introduced a bug with combo box & scissoring bug OpenGL sample).
   5519 - Added ImGui::InputFloat2() and ImGui::SliderFloat2() functions.
   5520 
   5521 
   5522 ----------------------------------------------------------------------
   5523  VERSION 1.03 (2014-08-13)
   5524 -----------------------------------------------------------------------
   5525 
   5526 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.03
   5527 
   5528 - OpenGL example now use the fixed function-pipeline + cleanups, down by 150 lines.
   5529 - Added quick & dirty Makefiles for MacOSX and Linux.
   5530 - Simplified the DrawList system, ImDrawCmd include the clipping rectangle + some optimisations.
   5531 - Fixed warnings for more stringent compilation settings.
   5532 
   5533 
   5534 ----------------------------------------------------------------------
   5535  VERSION 1.02 (2014-08-12)
   5536 -----------------------------------------------------------------------
   5537 
   5538 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.02
   5539 
   5540 - Comments.
   5541 - Portability fixes.
   5542 - Fixing and tidying up sample applications.
   5543 - Checkboxes and radio buttons can be clicked on their labels as well as their icon.
   5544 - Checkboxes and radio buttons display in a different color when hovered.
   5545 
   5546 
   5547 ----------------------------------------------------------------------
   5548  VERSION 1.01 (2014-08-11)
   5549 -----------------------------------------------------------------------
   5550 
   5551 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.01
   5552 
   5553 - Added PixelCenterOffset for OpenGL/DirectX compatibility.
   5554 - Commented and tweaked samples.
   5555 - Added Git ignore list.
   5556 
   5557 
   5558 ----------------------------------------------------------------------
   5559  VERSION 1.00 (2014-08-10)
   5560 -----------------------------------------------------------------------
   5561 
   5562 Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.00
   5563 
   5564 - Initial release.
   5565