1. 6bf5aed Declaration and assignment can be joined, Member function may be 'const'. (#2875) by stfx · 4 years, 8 months ago
  2. c863c1f Clean up number rounding. Now it is more obvious what code is doing. (#2862) by Rokas Kupstys · 4 years, 8 months ago
  3. 0b2d35f Fix snprintf and vsnprintf definition inconsistencies. by Sam Hocevar · 4 years, 8 months ago
  4. 4e56de7 Doc: Promote Discord over Discourse. Obsoleting Discourse server. by omar · 4 years, 8 months ago
  5. f002a11 Backends: OpenGL3: Fix building with pre-3.2 GL bindings which do not expose glDrawElementsBaseVertex(), using runtime GL version to decide if we set ImGuiBackendFlags_RendererHasVtxOffset. (#2866, #2852) [@dpilawa] by omar · 4 years, 8 months ago
  6. 4d0c88e Backends: GL3: Fix compile for < 3.2 bindings where glDrawElementsBaseVertex is not available. (#2866, #2852) by dawid · 4 years, 8 months ago
  7. 9b323a7 SplitterBehavior: not using FrameRounding in render (was in first commit of the function, not sure why). (#319) by omar · 4 years, 8 months ago
  8. 3c238ec Move issue_template and pull_request_template to .github folder. by omar · 4 years, 8 months ago
  9. d5b5a81 GitHub Actions CI script for Windows/Linux/MacOS/iOS/Emscripten builds. by Rokas Kupstys · 4 years, 8 months ago
  10. 24e9a6e Remove .travis.yml due to switching to github actions. by Rokas Kupstys · 4 years, 8 months ago
  11. ec0e953 Fixed a couple of subtle bounding box vertical positioning issues relating to text baseline alignment. by omar · 4 years, 9 months ago
  12. 75d540d Example: Emscripten: Fix for compilation (filesystem module is required) (#2734) by Funto · 4 years, 8 months ago
  13. be9f1e8 ColorPicker: Fixed SV triangle gradient to block (broken in 1.73). (#2864, #2711). [@lewa-j] by Alexey · 4 years, 8 months ago
  14. 23c1ff4 Removed redirecting functions/enums names that were marked obsolete in 1.52 (October 2017). by omar · 4 years, 8 months ago
  15. 048b73d Various comments + Doc: Examples readme. Moved main menu bar code below menu bar code. by omar · 4 years, 8 months ago
  16. 7dbae8a Doc: Simplified Readme, removed FAQ index by omar · 4 years, 8 months ago
  17. 6ffee0e Backends: DX12: Added extra ID3D12DescriptorHeap parameter to ImGui_ImplDX12_Init() function. The value is unused in master branch but will be used by the multi-viewport features (docking branch). (#2851) by omar · 4 years, 8 months ago
  18. eedc8f9 Examples: DX12: Using IDXGIDebug1::ReportLiveObjects() when DX12_ENABLE_DEBUG_LAYER is enabled. by omar · 4 years, 8 months ago
  19. 4de32cc Backends: GLFW: Restore previously installed user callbacks in ImplGlfw when ImGui shuts down (#2836) by malte-v · 4 years, 8 months ago
  20. 714fe29 Replace manual flooring with IM_FLOOR() macro. (#2850) by Rokas Kupstys · 4 years, 8 months ago
  21. 53278be FAQ, Readme. Use = {} instead of = { 0 }, wasn't problematic because they were all static variables or one stack array not read. But hey. by omar · 4 years, 8 months ago
  22. 9994f5b Fixed more FAQ links, oops.. (#2848) by omar · 4 years, 8 months ago
  23. 3bbc27e Fixed more FAQ links. (#2848) by omar · 4 years, 8 months ago
  24. 5fc427a Improved and moved FAQ to docs/FAQ.md so it can be readable on the web. (#2848) by omar · 4 years, 8 months ago
  25. 9d6b2b0 Ignore directories created by JetBrains IDEs. by Rokas Kupstys · 4 years, 8 months ago
  26. 6892b81 Remove trailing spaces from bunch of files. by Rokas Kupstys · 4 years, 8 months ago
  27. c21fdab Doc: Readme: moving contents to FAQ. by omar · 4 years, 8 months ago
  28. a41f0b2 Inputs: Fixed a miscalculation in the keyboard/mouse "typematic" repeat delay/rate calculation, used by keys and e.g. repeating mouse buttons as well as the GetKeyPressedAmount() function. by omar · 4 years, 8 months ago
  29. c7bdec7 InputText, Nav: Fixed Left!Right keys broken when activating Keyboard Navigation. (#787) Amend 892dfb1 by omar · 4 years, 8 months ago
  30. 67e4cd5 Comments, some logging for NavInitRequest debugging Moved OpenPopupOnItemClick() next to BeginPopupContextItem() by omar · 4 years, 8 months ago
  31. 8c4dcbf Diligent Engine by omar · 4 years, 8 months ago
  32. 23eabd5 Emscripten by omar · 4 years, 8 months ago
  33. 5841103 Bindings by omar · 4 years, 8 months ago
  34. 1c73a0c Bindings by omar · 4 years, 8 months ago
  35. cba84df Update README.md by omar · 4 years, 8 months ago
  36. aeb6481 InputText: Filter out Ascii 127 (DEL) emitted by low-level OSX layer, as we are using the Key value. (#2578) by omar · 4 years, 8 months ago
  37. fc10ba8 Amend f0238ece9cba67ecabef438008fea53682bd6bc7 (#2817, #2818) by omar · 4 years, 9 months ago
  38. 378035c Fixed backspace handling on MacOS (fixed https://github.com/ocornut/imgui/issues/2817). by Egor Yusov · 4 years, 9 months ago
  39. bf746c4 DragScalar, SliderScalar, InputScalar: Added p_ prefix to parameter that are pointers to the datato clarify how they are used, and more comments redirecting to the demo code. (#2844) by omar · 4 years, 9 months ago
  40. 927472f Combo: Added _NoMove flag to prevent window from docking, which has an effect in Docking branch (in Master was not noticeable as the Combo code kept repositioning the window). (#2835) by omar · 4 years, 9 months ago
  41. 3b271b1 Demo: Added simple item reordering demo in Widgets -> Drag and Drop section. (#2823, #143) [@rokups] by omar · 4 years, 9 months ago
  42. 8aad348 ImVector: Fixed index_from_ptr() not asserting when passed end() element. by omar · 4 years, 9 months ago
  43. 323412d Examples: Allegro5: updated build instructions for macOS by Harris Brakmic · 4 years, 9 months ago
  44. 73fa650 Internal: InputTextEx: tweaked a bit of code (should be a no-op) by omar · 4 years, 9 months ago
  45. f1f321d Update README.md by omar · 4 years, 9 months ago
  46. ee3373d TreeNode: Fixed combination of ImGuiTreeNodeFlags_SpanFullWidth and ImGuiTreeNodeFlags_OpenOnArrow incorrectly locating the arrow hit position to the left of the frame. (#2451, #2438, #1897) by omar · 4 years, 9 months ago
  47. ccb2a94 Internal: SliderBehaviorT: Condition '!is_decimal' is always true (#2828) by domgho · 4 years, 9 months ago
  48. 1425bec Demo: Text baseline demo tweaks. by omar · 4 years, 9 months ago
  49. a6c3be4 Internals: Tweaks to ItemSize() should be harmless. Added DebugDrawItemRect() helper. by omar · 4 years, 9 months ago
  50. 892dfb1 InputText, Nav: Fixed Home/End key broken when activating Keyboard Navigation. (#787) by omar · 4 years, 9 months ago
  51. a2f3dcf Added comment about SDL and SDL_INIT_GAMECONTROLLER. (#2809) by omar · 4 years, 9 months ago
  52. 893056a Fix syntax typos in README (#2819) by Denys Nahurnyi · 4 years, 9 months ago
  53. eb52232 Update README.md by omar · 4 years, 9 months ago
  54. 0dad3f4 Fix harmless float calculation overflow. (#2813) by omar · 4 years, 9 months ago
  55. c262276 Version 1.74 WIP by omar · 4 years, 9 months ago
  56. f0f5301 Backends: OpenGL3: Commented out extra tokens at end of #else directive (#2804) by Konstantin Podsvirov · 4 years, 9 months ago
  57. 688cf86 Merge branch 'master' of https://github.com/ocornut/imgui by omar · 4 years, 9 months ago v1.73
  58. d5efe16 Version 1.73 by omar · 4 years, 9 months ago
  59. 293f74e Update README.md by omar · 4 years, 9 months ago
  60. 664f9e7 Documentation: Various tweaks and improvements to the README page. [@ker0chan] by omar · 4 years, 9 months ago
  61. e100523 CollapsingHeader: Added support for ImGuiTreeNodeFlags_Bullet and ImGuiTreeNodeFlags_Leaf on framed nodes. (#2159, #2160) by goran-w · 6 years ago
  62. ca858c0 Demo tweaks. Comments. Compacting the rarely used AutoFitXXX fields in ImGuiWindowTempData. by omar · 4 years, 9 months ago
  63. 52deb41 Internal: Refactored internal RenderMouseCursor so colors can be specified. (#2614) by omar · 4 years, 9 months ago
  64. 2584923 Internal: Tree: tweaks (initially tried to implement auto-scrolling, stashed) by omar · 4 years, 9 months ago
  65. 9769164 Backends: OpenGL3: Attempt to automatically detect default GL loader by using __has_include. Followup to 44cd8e3 (#2798) by omar · 4 years, 9 months ago
  66. 44cd8e3 Automatically include the available gl loader header by osheriff · 4 years, 9 months ago
  67. 80b3ab7 TabBar: Fixed single tab shrinking reducing the tab to 0.0f size. Broken by a856c670c17fe70d61e519bf74ccb2559915a2ff. by omar · 4 years, 9 months ago
  68. f47a0a8 ImVector: added find, find_erase, find_erase_unsorted helpers. by omar · 4 years, 9 months ago
  69. eab03f4 Selectable: Added ImGuiSelectableFlags_AllowItemOverlap flag in public api (was previously internal only). by omar · 4 years, 9 months ago
  70. a45e3b5 Readme, Wiki: Image loading examples. by omar · 4 years, 9 months ago
  71. f7468d0 Fixed mouse event forwarding in macos example (#2710, #1961) by omar · 4 years, 9 months ago
  72. 38d22bc ColorPicker / ColorEdit: restore Hue when zeroing Saturation. (#2722, #2770) - changelog, fixed uninitialized variables, tweaks, renaming. by omar · 4 years, 9 months ago
  73. accb026 ColorPicker / ColorEdit: restore Hue when zeroing Saturation. (#2722, #2770) by Rokas Kupstys · 4 years, 10 months ago
  74. 656c515 Warning fix. by omar · 4 years, 9 months ago
  75. 9d02ed5 TreeNode: Added ImGuiTreeNodeFlags_SpanAvailWidth and ImGuiTreeNodeFlags_SpanFullWidth flags (#2451, #2438, #1897) by omar · 4 years, 9 months ago
  76. 74e01e6 Fixed unused static function warning for some compilers. (#2793) by omar · 4 years, 9 months ago
  77. 098591f ImDrawListSplitter: fixed an issue merging channels if the last submitted draw command used a different texture. (#2506) by omar · 4 years, 9 months ago
  78. b48dc06 Style: Allow style.WindowMenuButtonPosition to be set to ImGuiDir_None to hide the collapse button. (#2634, #2639) by omar · 4 years, 9 months ago
  79. 3b014d0 Merge branch 'features/ellipsis_rendering' by omar · 4 years, 9 months ago
  80. 3f986e7 Internal: Offset STB_TEXTURE_K_ defines to remove that change from #2541 + sponsors update. by omar · 4 years, 9 months ago
  81. 7d5a17e Remove trailing spaces (grep for ' \r?$' in visual studio) by omar · 4 years, 9 months ago
  82. 1c951dc Font: Narrow ellipsis: once we know an ellipsis is going to be drawn, we can claim the space between pos_max.x and ellipsis_max.x which gives us enough extra space to not requires the further (and otherwise valid) optimizations. Gets us vastly simplified code, yay. (#2775) by omar · 4 years, 9 months ago features/ellipsis_rendering
  83. 57623c1 Font: Narrow ellipsis: various minor stylistic tweaks (#2775) by omar · 4 years, 9 months ago
  84. 45405f0 Font: implement a way to draw narrow ellipsis without relying on hardcoded 1 pixel dots. (#2775) by Rokas Kupstys · 4 years, 10 months ago
  85. 404dc03 BeginTabItem: Fixed case where right-most tab would create an extraneous draw calls (probably related to other tab fitting code in 1.73 wip) by omar · 4 years, 9 months ago
  86. e7e88ed Examples: SDL/GLFW + OpenGL3: Fixes for Makefile (#2774) by NeroBurner · 4 years, 9 months ago
  87. 561e7dd Fix signed types warning in pasteboard handler (#2786) by Qix · 4 years, 9 months ago
  88. 3dcf323 Columns: Separator: Fixed a bug where non-visible separators within columns would alter the next row position differently than visible ones. by omar · 4 years, 9 months ago
  89. b05f6f6 Nav, Scrolling: Added support for Home/End key. (#787) by omar · 4 years, 10 months ago
  90. 3cf519c Fix DragScalar for unsigned types (#2780) by Bagrat Dabaghyan · 4 years, 9 months ago
  91. cc288e0 Backends: OpenGL3: Tweaked initialization code allow application calling ImGui_ImplOpenGL3_CreateFontsTexture() before ImGui_ImplOpenGL3_NewFrame() if for some reason they wanted. by omar · 4 years, 9 months ago
  92. c077dd4 Fixed missing IMGUI_API for IsMouseDragPastThreshold(). by omar · 4 years, 10 months ago
  93. 0537ac0 ColorEdit: Disable Hue edit when Saturation==0 instead of letting Hue values jump around. by omar · 4 years, 10 months ago
  94. b59ec7b DragInt, DragFloat, DragScalar: Using (v_min > v_max) allows locking any edit to the value. by omar · 4 years, 10 months ago
  95. 3f99890 TabBar: feed desired width (sum of unclipped tabs width) into layout system to allow for auto-resize. (#2768) by omar · 4 years, 10 months ago
  96. f8d3d8d TabBar: improved shrinking for large number of tabs to avoid leaving extraneous space on the right side. Individuals tabs are given integer-rounded width and remainder is spread between tabs left-to-right. by omar · 4 years, 10 months ago
  97. bfcdaeb Disable with ConfigWindowsMemoryCompactTimer < 0.0f (#2636) by omar · 4 years, 10 months ago
  98. 62f75c7 Added a mechanism to compact/free the larger allocations of unused windows (buffers are compacted when a window is unused for 60 seconds, as per io.ConfigWindowsMemoryCompactTimer = 60.0f). Note that memory usage has never been reported as a problem, so this is merely a touch of overzealous luxury. (#2636) by omar · 5 years ago
  99. 45a0db5 Demo: PlotLine example displays the average value. (#2759) + extra comments by Hanif Bin Ariffin · 4 years, 10 months ago
  100. c841801 SliderScalar: Improved assert when using U32 or U64 types with a large v_max value. (#2765) by omar · 4 years, 10 months ago