| 2018-03-23 | 
                Examples: SDL: Note about SDL breaking the IME under Windows (I can't seem a way SDL2 Windows IME implementation can possibly work, the functions are never called/referenced).
                
                 
                  
                  omar
                  committed 
  
    
      on 23 Mar 2018
    
  
                  
                 | 
|---|---|
| 2018-03-22 | 
                Internals: Removed ImGuiDataType_Float2.
                
                 
                  
                  omar
                  committed 
  
    
      on 22 Mar 2018
    
  
                  
                 | 
| 
                Added InputDouble() function. We use a format string instead of a decimal_precision parameter to also for "%e" and variants. (#1011) May transition the other InputXXX function to use format strings as well.
                
                 
                  
                  omar
                  committed 
  
    
      on 22 Mar 2018
    
  
                  
                 | |
| 
                InputFloat: Scientific input. InputText: Added ImGuiInputTextFlags_CharsScientific to add 'e' 'E' to list of characters that can be input. (later useful for #1011)
                
                 
                  
                  omar
                  committed 
  
    
      on 22 Mar 2018
    
  
                  
                 | |
| 
                Nav: Fixed a crash with IMGUI_DEBUG_NAV_SCORING enabled + added info to Metrics.
                
                 
                  
                  omar
                  committed 
  
    
      on 22 Mar 2018
    
  
                  
                 | |
| 2018-03-20 | 
                Examples: GLFW: Don't alter cursor mode if GLFW_CURSOR input mode is GLFW_CURSOR_DISABLED. (#1202) [@PhilCK]
                
                 
                  
                  omar
                  committed 
  
    
      on 20 Mar 2018
    
  
                  
                 | 
| 
                IO: Added ImGuiConfigFlags_NoSetMouseCursors. Added ImGuiBackendFlags_HasMouseCursors, ImGuiBackendFlags_HasSetMousePos. (#787, #1495, #1202)
                
                 
                  
                  omar
                  committed 
  
    
      on 20 Mar 2018
    
  
                  
                 | |
| 
                Added ImGuiBackendFlags for backend to expose its capabilities. Added ImGuiBackendFlags_HasGamepad. (#787, #1542)
                
                 
                  
                  omar
                  committed 
  
    
      on 20 Mar 2018
    
  
                  
                 | |
| 
                IO: Renamed io.WantMoveMouse to io.WantSetMousePos (was added in 1.52, _not_ used by core and only honored by some binding ahead of merging the Nav branch) + internal renaming (#787)
                
                 
                  
                  omar
                  committed 
  
    
      on 20 Mar 2018
    
  
                  
                 | |
| 
                imconfig: Added IMGUI_STB_TRUETYPE_FILENAME, IMGUI_STB_RECT_PACK_FILENAME + documenting IMGUI_DISABLE_STB_XXX flags and hiding IMGUI_STB_NAMESPACE which is misleading.
                
                  ...
                
                 
                  
                  omar
                  committed 
  
    
      on 20 Mar 2018
    
  
                  
                 | |
| 
                Examples: Renamed applications to emphasis on use of GLFW as a platform framework + minor local tweaks
                
                 
                  
                  omar
                  committed 
  
    
      on 20 Mar 2018
    
  
                  
                 | |
| 
                ImVector: Fixed insert() helper using the = operator (followup to be consistent with  4186c2c)
                  
                  omar
                  committed 
  
    
      on 20 Mar 2018
    
  
                  
                 | |
| 2018-03-19 | 
                Fixed enum typo.
                
                 
                  
                  omar
                  committed 
  
    
      on 19 Mar 2018
    
  
                  
                 | 
| 
                Examples: Vulkan: Fix missing subpass dependency
                
                  ...
                
                 
                  
                    Christian Forfang
                    authored 
  
    
      on 19 Mar 2018
    
  
                    
                  
                  omar
                  committed 
  
    
      on 19 Mar 2018
    
  
                  
                 | |
| 
                Examples: Vulkan: Using VK_PRESENT_MODE_MAILBOX_KHR. Disable IMGUI_UNLIMITED_FRAME_RATE by default. Fixed warnings. (#1042)
                
                 
                  
                  omar
                  committed 
  
    
      on 19 Mar 2018
    
  
                  
                 | |
| 
                Demo: Added more complete Combo demo. (#1658)
                
                 
                  
                  omar
                  committed 
  
    
      on 19 Mar 2018
    
  
                  
                 | |
| 
                Nav: InputText: Allow editing text input fields with NavActivate (space). Not sure about that, on one hand it feels more consistent but you can't finish the editing with space to double space (activate + input space) could feel inconsistent. (#787)
                
                 
                  
                  omar
                  committed 
  
    
      on 19 Mar 2018
    
  
                  
                 | |
| 
                Nav: Track nav input source more generally (gamepad vs keyboard) (#787) + update todos and demo tweaks
                
                 
                  
                  omar
                  committed 
  
    
      on 19 Mar 2018
    
  
                  
                 | |
| 2018-03-18 | 
                imgui.h: Various comments and tweaks.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Mar 2018
    
  
                  
                 | 
| 
                imgui.h: Moved columns lower in the file. Various spacing changes and minor comments.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Mar 2018
    
  
                  
                 | |
| 2018-03-17 | 
                ImVector: Added copy/assign operators as helpers to ease cloning of data.
                
                 
                  
                  omar
                  committed 
  
    
      on 17 Mar 2018
    
  
                  
                 | 
| 
                ImDrawList: Added Clone() helper function.
                
                 
                  
                  omar
                  committed 
  
    
      on 17 Mar 2018
    
  
                  
                 | |
| 
                ImVector: resize() / push_back() use memcpy() as we are not supposed to be constructor/destructor/operator aware at all. (If we do need to rework ImVector). In turn this will allow us to define assign/copy operators.
                
                 
                  
                  omar
                  committed 
  
    
      on 17 Mar 2018
    
  
                  
                 | |
| 
                ImVector: Using  value_type consistently. Spacing.
                
                 
                  
                  omar
                  committed 
  
    
      on 17 Mar 2018
    
  
                  
                 | |
| 
                Update TODO list, minor fix in Readme, comments, Clang -Weverything warning fix in imgui_draw.cpp under Windows.
                
                 
                  
                  omar
                  committed 
  
    
      on 17 Mar 2018
    
  
                  
                 | |
| 2018-03-13 | 
                Moved IM_NEW, IM_DELETE helpers to imgui.h for convenient use by back-ends and user code.
                
                 
                  
                  omar
                  committed 
  
    
      on 13 Mar 2018
    
  
                  
                 | 
| 
                ImVector: Spacing, assert tweaks
                
                 
                  
                  omar
                  committed 
  
    
      on 13 Mar 2018
    
  
                  
                 | |
| 
                Misc: Fix  111ea7a, GetStyleColorName() would assert, removed removed ImGuiCol defines (too much risk/complexity trying to silently ignore it).
                  
                  omar
                  committed 
  
    
      on 13 Mar 2018
    
  
                  
                 | |
| 
                Contributing: tweaks, mention screenshots more prominently.
                
                 
                  
                  omar
                  committed 
  
    
      on 13 Mar 2018
    
  
                  
                 | |
| 2018-03-12 | 
                Misc comments, todos + reintroduced removed ImGuiCol defines under !IMGUI_DISABLE_OBSOLETE_FUNCTIONS wrap.
                
                 
                  
                  omar
                  committed 
  
    
      on 12 Mar 2018
    
  
                  
                 |