1. 08108cf Tab Bar: Hide tab item close button while dragging a tab. by ocornut · 3 years, 9 months ago
  2. 2e50d07 Selectable: Tweaks. Added internal ImGuiSelectableFlags_NoPadWithHalfSpacing. by omar · 3 years, 9 months ago
  3. d451f6c Nav tweaks. Demo: Fixed drag and drop demo state (broken by f152fac4f1). Fixed incorrect format string (which would work without IMGUI_DISABLE_OBSOLETE_FUNCTIONS). by omar · 3 years, 9 months ago
  4. 7b0570d Revert "Drags, Sliders: internal ReadOnly flag gets forwarded properly to temp InputText()." by ocornut · 3 years, 9 months ago
  5. fdf9521 Drags, Sliders: internal ReadOnly flag gets forwarded properly to temp InputText(). by ocornut · 3 years, 9 months ago
  6. df89a16 Examples: Vulkan: Reworked buffer resize handling, fix for Linux/X11. (#3390, #2626) by ocornut · 3 years, 9 months ago
  7. 9b50e69 TreeNode: Made clicking on arrow toggle toggle the open state on the Mouse Down event. Amend 05420ea2c. by ocornut · 3 years, 9 months ago
  8. 97dad66 Metrics: Various tweaks, listing windows front-to-back, greying inactive items when possible. by ocornut · 3 years, 9 months ago
  9. 9262609 Version 1.79 WIP by ocornut · 3 years, 9 months ago
  10. 05a25e5 BeginMenuBar: Fixed minor bug where CursorPosMax gets pushed to CursorPos prior to calling BeginMenuBar(), so e.g. calling the function at the end of a window would often add +ItemSpacing.y to scrolling range. by ocornut · 3 years, 9 months ago
  11. fc9ccad InputText: Add ImGuiInputTextFlags_CallbackEdit, selection helpers in ImGuiInputTextCallbackData(). Add simple InputText() callbacks demo. by ocornut · 3 years, 9 months ago
  12. 024993a Revert leftovers from 4c201994d421089493a7a996978e8239ad619a20 by ocornut · 3 years, 9 months ago
  13. 4c20199 DragFloat, DragScalar: Fixed ImGuiSliderFlags_ClampOnInput not being honored in the special case where v_min == v_max. (#3361) by ocornut · 3 years, 9 months ago
  14. 5dc5610 Docs: TODO, FAQ by ocornut · 3 years, 9 months ago
  15. 95c99aa Version 1.78 by ocornut · 3 years, 9 months ago v1.78
  16. c6b01e8 Drag, Sliders: Merged ImGuiDragFlags back into ImGuiSliderFlags. (#3361, #1823, #1316, #642, #1829, #3209) by ocornut · 3 years, 9 months ago
  17. 14539b3 Update Emscripten readme about emrun (#3412) by omar · 3 years, 9 months ago
  18. d3fcc37 Update Emscripten readme about local XHR requests (#3412) by omar · 3 years, 9 months ago
  19. 3c65b65 Merge branch 'features/logarithmic_sliders' by ocornut · 3 years, 9 months ago
  20. f32663b Drags, Sliders: Removed locking behavior with min > max (added in 1.73) by omar · 3 years, 10 months ago features/logarithmic_sliders
  21. 7f8f009 Internals: Renamed SliderCalcRatioFromValueT() -> ScaleRatioFromValueT(), SliderCalcValueFromRatioT() -> ScaleValueFromRatioT(). by omar · 3 years, 10 months ago
  22. fb0f2eb Drags, Sliders: Tweaks. by omar · 3 years, 10 months ago
  23. fa279a6 Drags, Sliders: Added deadzone to make selecting 0.0 on linear sliders easier, slider navigation delta accumulation. (#3361, #1823, #1316, #642) by Ben Carter · 3 years, 10 months ago
  24. f75b29e Drags, Sliders: Added ImGuiDragFlags_NoInput/ImGuiSliderFlags_NoInput to disable turning widget into a text input with CTRL+Click or Nav Enter. by omar · 3 years, 10 months ago
  25. 8018623 Drags, Sliders: Added ImGuiDragFlags_NoRoundToFormat / ImGuiSliderFlags_NoRoundToFormat flags (#642) by omar · 3 years, 10 months ago
  26. 170d02b Drags, Sliders: Added ImGuiDragFlags_ClampOnInput/ImGuiSliderFlags_ClampOnInput flags to force clamping value when using CTRL+Click to type in a value manually. (#1829, #3209) by omar · 3 years, 10 months ago
  27. 7607aea Drags, Sliders: Removed power features. Old entry points will pass-through if power=1.0f, otherwise assert + safe fallback. Remove 3 redirection functions (#3361, #1823, #1316, #642) by omar · 3 years, 10 months ago
  28. 43c099f Drags, Sliders: Logarithmic: Moved flags to internals, allowing 1.0f to pass by. (#3361, #1823, #1316, #642) by omar · 3 years, 10 months ago
  29. 152dae9 Drags, Sliders: Logarithmic: Split back flags into drag/slider flags. Moved to an obsolete section. (#3361, #1823, #1316, #642) by omar · 3 years, 10 months ago
  30. 9f98b4e Drags, Sliders: Logarithmic: Added logarithmic mode support to drag widgets, extended API to add flags to drag/sliders (#3361, #1823, #1316, #642) by Ben Carter · 4 years ago
  31. a252a28 Drags, Sliders: Logarithmic: WIP experiments with trying to make logarithmic sliders sensible (#3361, #1823, #1316, #642) by Ben Carter · 4 years ago
  32. 46d7520 Tab Bar: Allow calling SetTabItemClosed() after a tab has been submitted (will process next frame). by ocornut · 3 years, 9 months ago
  33. 0e5b1ea CI: imscripten fastcomp backend is now deprecated (#3402) by Louis Schnellbach · 3 years, 9 months ago
  34. 214dd68 Comments, clarifying ClosePopupsOverWindow(). by omar · 3 years, 9 months ago
  35. a4dd4d6 CI: moved static analysis to a separate project + fix (uninitialized variable, was harmless in this case). by omar · 3 years, 9 months ago
  36. 8241cd6 Make moving window prevent its active id from being stolen (#3392, #3243, #1738) by omar · 3 years, 9 months ago
  37. 009276b Backends: Allegro 5: Fixed horizontal scrolling direction with mouse wheel / touch pads (#3394, #2424, #1463) [@nobody-special666] by omar · 3 years, 9 months ago
  38. 209a6a7 Revert "Examples: Switch most VS projects to enable Edit & Continue by default (may need to upgrade projects to latest toolchain)" by omar · 3 years, 9 months ago
  39. 89ac87c Internals: Added SetLastItemData, rename ImGuiItemHoveredDataBackup to ImGuiLastItemDataBackup. by omar · 3 years, 9 months ago
  40. 90b152f ImFontAtlas: Fixed multiple rebuild with same inputs erroneously increased ConfigDataCount. CI: Update Ubuntu 18.04 > 20.04 (motivated by #3369) by ocornut · 3 years, 9 months ago
  41. ede8825 Examples: Vulkan: Fixed GLFW+Vulkan and SDL+Vulkan clear color not being set. Broken by a06eb833 (#3390) by ocornut · 3 years, 9 months ago
  42. b15b25b TabBar: made a change to that declared ideal width (for auto-resize) won't lag by an extra frame. by omar · 3 years, 9 months ago
  43. 8074b49 Selectable: Fixed highlight/hit extent when used with horizontal scrolling (in or outside columns). (#3187, #3386) by omar · 3 years, 9 months ago
  44. fc61018 Demo: Renamed "Layout" -> "Layout & Scrolling". Fixed usage of local struct as template class (c++11). by omar · 3 years, 9 months ago
  45. 473a01a Scrolling: Avoid SetScroll, SetScrollFromPos functions from snapping on the edge of scroll limits. (#3379) + Demo: Rename "Layout" to "Layout & Scrolling". by omar · 3 years, 9 months ago
  46. a24578e Examples: Switch most VS projects to enable Edit & Continue by default (may need to upgrade projects to latest toolchain) by omar · 3 years, 9 months ago
  47. db886f3 Demo: Rework Clipping section. Fix for static analysis. Added bindings in Readme. by omar · 3 years, 9 months ago
  48. 9638393 Demo tweaks + general removal of the word dummy were possible with no issues (kept the API call). by omar · 3 years, 9 months ago
  49. 55041ac Demo: Removed thin triangle and aligned code. by omar · 3 years, 9 months ago
  50. 912c45a Demo: Improve "Custom Rendering"->"Canvas" demo with a grid, scrolling and context menu. by omar · 3 years, 9 months ago
  51. 4929a8e InvisibleButton: Made public a small selection of ImGuiButtonFlags (previously in imgui_internal.h) and allowed to pass them to InvisibleButton(). by omar · 3 years, 9 months ago
  52. a876ad8 Window: Fixed clicking over an item which hovering has been disabled (e.g inhibited by a popup) from marking the window as moved. by omar · 3 years, 9 months ago
  53. 5d87941 Fixed ImFontConfig::GlyphExtraSpacing and ImFontConfig::PixelSnapH settings being pulled from the merged/target font settings when merging fonts, instead of being pulled from the source font settings. by omar · 3 years, 9 months ago
  54. 76ddacd Internals: Backport HoveredWindowUnderMovingWindow code from Docking branch. by omar · 3 years, 10 months ago
  55. 218ff3a Internals: Backport one ->WasActive test in NavRestoreLastChildNavWindow() from 9bf6509c6 + minor/shallow bits from docking branch. by omar · 3 years, 10 months ago
  56. c7f5876 Internals: backport window HitTestHole code from docking branch + RenderRectFilledWithHole() helper. (#1512, #3368) by omar · 3 years, 10 months ago
  57. bbd0615 Internals: Drag/Sliders: simplified some code. by omar · 3 years, 10 months ago
  58. b8c22bd DragFloatRange2, DragIntRange2: Fixed an issue allowing to drag out of bounds when both min and max value are on the same value. (#1441) by omar · 3 years, 10 months ago
  59. fdc526e Stop advertisting for Drag v_min>v_max which was introduced in 1.73 likely for 0537ac00 then made unnecessary with 32c33c66, added undocumented ImGuiItemFlags_ReadOnly as possible replacement (unused), (#211) by omar · 3 years, 10 months ago
  60. b335225 Internals: Extract ImFontAtlasBuildRender1bppRectFromString() out of ImFontAtlasBuildRenderDefaultTexData() + minor renaming, comments by omar · 3 years, 10 months ago
  61. e223bd8 ImDrawList: changed AddCircle(), AddCircleFilled() default num_segments from 12 to 0. by omar · 3 years, 10 months ago
  62. 4be8155 Style Editor: Added preview of circle auto-tessellation when editing the corresponding value.. by omar · 3 years, 10 months ago
  63. 825f2ae Demo: Tweak "child windows" section. (#3318) by omar · 3 years, 10 months ago
  64. eefae08 Nav: Fixed clicking on void from not clearing focused window. Amend d31fe97f7. (#3344, #2880) by omar · 3 years, 10 months ago
  65. 550f110 InputText, ImDrawList: Fixed assert triggering when drawing single line of text with more than ~16 KB characters. (#3349) by omar · 3 years, 10 months ago
  66. fb7f6ca Backends: Amend, docs + extra comments. (#3330, #3245) by omar · 3 years, 10 months ago
  67. 06f7854 Backends: OpenGL3: Add glad 2 to OpenGL loaders. (#3330) by Moritz Heinemann · 3 years, 10 months ago
  68. 89685b3 ImDrawList: Fixed minor bug introduced in 1.75 where AddCircle() with 12 segments would generate an extra unrequired vertex. by omar · 3 years, 10 months ago
  69. 6633652 Merge branch 'features/tex_antialiased_lines' (#3245) by omar · 3 years, 10 months ago
  70. 3a6c990 Texture-based thick lines: Minor tweaks and rename toward merging in master. Changes to allow changing AA_SIZE (disable texture path). by omar · 3 years, 10 months ago
  71. b5bae97 Texture-based thick lines: Only use textured lines for integer line widths by Ben Carter · 3 years, 10 months ago
  72. 78d6bdf Texture-based thick lines: Remove unnecessary indirection in fetching UV data, removed lerp call, renames, tweaks. by omar · 4 years ago
  73. a07c8b6 Texture-based thick lines: Fixes for AddCustomRect api, add IMGUI_HAS_TEXLINES define (temporarily) to facilitate working with test cases, Demo allows growing FrameBorderSize for testing by Omar · 4 years, 3 months ago
  74. 21d9e8e Texture-based thick lines: Simplified line width calculation code and removed hack for thickness 1.0 lines by Ben Carter · 4 years, 3 months ago
  75. 403bf45 Texture-based thick lines: Allow interpolation between textures for non-integer line widths by Ben Carter · 4 years, 3 months ago
  76. 222b7dd Texture-based thick lines: Tweaks, fix for truetype builder. by omar · 4 years, 4 months ago
  77. 741ab74 Texture-based thick lines: Improvements to code for drawing anti-aliased lines using textures by Ben Carter · 4 years, 4 months ago
  78. 1d3c307 Texture-based thick lines: Initial version of AA line drawing using textures (press SHIFT to enable) by Ben Carter · 4 years, 4 months ago
  79. 8e4046e Atlas build use GetCustomRectByIndex() + comments, rename, and shallow merge from tex_antialiasing_lines branch. by Ben Carter · 3 years, 10 months ago
  80. 0d03e1f CI: Fix emscripten builds that broke due behavior change of emscripten SDK. by Rokas Kupstys · 3 years, 10 months ago
  81. a1d2c6f Fixed invalid comment (#3327) by omar · 3 years, 11 months ago
  82. ab4ef82 Version 1.78 WIP by omar · 3 years, 11 months ago
  83. 0738611 Misc: Bunch of code formatting changes suggested by a pass running 'astyle' by Rokas Kupstys · 3 years, 11 months ago
  84. dca7c3c TestEngine: Added hook to notify test engine of a removed imgui context. by omar · 3 years, 11 months ago
  85. 9418dcb Version 1.77 by omar · 3 years, 11 months ago v1.77
  86. 122febc IO: Added storage for PenPressure (unused by core library, to facilitate experiments) (#2372) by omar · 3 years, 11 months ago
  87. dd02a18 Windows: Amend 6b0cf2e6 to facilitate working in viewport branch + handle safe area padding and ConfigWindowsMoveFromTitleBarOnly. by omar · 3 years, 11 months ago
  88. 6b0cf2e Windows: Fix unintended window size changes when resizing windows close to main viewport edges. by Rokas Kupstys · 3 years, 11 months ago
  89. 45a7cf4 FAQ update, removed redundant block in imgui.cpp by omar · 3 years, 11 months ago
  90. fed80b9 Popups: Changed 'int mouse_buttons' to ImGuiPopupFlags. Added ImGuiPopupFlags_NoOpenOverExistingPopup, ImGuiPopupFlags_NoOpenOverItems. Refactored signature of BeginPopupContextWindow(). by omar · 3 years, 11 months ago
  91. 5acf6d8 Popups: Added ImGuiPopupFlags type, ImGuiPopupFlags_AnyPopupId and ImGuiPopupFlags_AnyPopupLevel flags for IsPopupOpen(). by omar · 3 years, 11 months ago
  92. 1c35750 Added ImGuiCond_None for consistency and for generated bindings needing this for enums mapping. by omar · 3 years, 11 months ago
  93. b83a1f3 BeginPopupModal() doesn't set the ImGuiWindowFlags_NoSavedSettings flag anymore, and will not always be auto-centered. (#915, #3091) by omar · 3 years, 11 months ago
  94. 6838920 Internals: Comments about CalcWrapWidthForPos() (#778) by omar · 3 years, 11 months ago
  95. e0ec69d Internals: Added ImageButtonEx() helper to temporarily bypass ID issues (#2464, #1390) by omar · 3 years, 11 months ago
  96. 1a1dcea Internals: Initialize drawlist earlier in Begin() to facilitate detecting accidental draw earlier than legal. (#3311) by omar · 3 years, 11 months ago
  97. 99f68d7 Docs: Added FAQ entries removed old one which is misleading today. Misc tweaks. by omar · 3 years, 11 months ago
  98. 9c2a36f Internals: clarified the code for ClampWindowRect(). by omar · 3 years, 11 months ago
  99. 8ead38c Clang: Reduce uses of __has_warning for overall sanity, as compilers are hostile to software targetting multiple compiler version. by omar · 3 years, 11 months ago
  100. 7047237 Disabled latest overzealous warnings from Clang by omar · 3 years, 11 months ago