Skip to content

Commit 1ebb913

Browse files
committed
Version 1.89.5
1 parent ba98667 commit 1ebb913

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

docs/CHANGELOG.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,19 @@ HOW TO UPDATE?
3232

3333

3434
-----------------------------------------------------------------------
35-
VERSION 1.89.5 WIP (In Progress)
35+
VERSION 1.89.5 (Released 2023-04-13)
3636
-----------------------------------------------------------------------
3737

38-
Breaking Changes:
39-
4038
Other changes:
4139

40+
- InputText: Reworked prev/next-word behavior to more closely match Visual Studio
41+
text editor. Include '.' as a delimiter and alter varying subtle behavior with how
42+
blanks and separators are treated when skipping words. (#6067) [@ajweeks]
4243
- InputText: Fixed a tricky edge case, ensuring value is always written back on the
4344
frame where IsItemDeactivated() returns true, in order to allow usage without user
4445
retaining underlying data. While we don't really want to encourage user not retaining
4546
underlying data, in the absence of a "late commit" behavior/flag we understand it may
4647
be desirable to take advantage of this trick. (#4714)
47-
- InputText: Reworked prev/next-word behavior to more closely match Visual Studio
48-
text editor. Include '.' as a delimiter and alter varying subtle behavior with how
49-
blanks and separators are treated when skipping words. (#6067) [@ajweeks]
5048
- Drag, Sliders: Fixed parsing of text input when '+' or '#' format flags are used
5149
in the format string. (#6259) [@idbrii]
5250
- Nav: Made Ctrl+Tab/Ctrl+Shift+Tab windowing register ownership to held modifier so
@@ -56,7 +54,7 @@ Other changes:
5654
- ColorEdit: Fixed shading of S/V triangle in Hue Wheel mode. (#5200, #6254) [@jamesthomasgriffin]
5755
- TabBar: Tab-bars with ImGuiTabBarFlags_FittingPolicyScroll can be scrolled with
5856
horizontal mouse-wheel (or Shift + WheelY). (#2702)
59-
- Rendering: Using adaptative tesselation for: RadioButton, ColorEdit preview circles,
57+
- Rendering: Using adaptive tessellation for RadioButton, ColorEdit preview circles,
6058
Windows Close and Collapse Buttons.
6159
- ButtonBehavior: Fixed an edge case where changing widget type/behavior while active
6260
and using same id could lead to an assert. (#6304)
@@ -74,7 +72,7 @@ Other changes:
7472
- Fixed tapping on TableHeader() on a touch-screen.
7573
- IO: Added io.AddMouseSourceEvent() and ImGuiMouseSource enum. This is to allow backend to
7674
specify actual event source between Mouse/TouchScreen/Pen. (#2702, #2334, #2372, #3453, #5693)
77-
- IO: Fixed support for calling io.AddXXXX functions fron inactive context (wrongly
75+
- IO: Fixed support for calling io.AddXXXX functions from inactive context (wrongly
7876
advertised as supported in 1.89.4). (#6199, #6256, #5856) [@cfillion]
7977
- Backends: OpenGL3: Fixed GL loader crash when GL_VERSION returns NULL. (#6154, #4445, #3530)
8078
- Backends: OpenGL3: Properly restoring "no shader program bound" if it was the case prior to
@@ -94,12 +92,14 @@ Other changes:
9492
(#6314) [@PathogenDavid]
9593
- Backends: WebGPU: Align buffers. Use WGSL shaders instead of SPIR-V. Add gamma uniform. (#6188) [@eliemichel]
9694
- Backends: WebGPU: Reorganized to store data in io.BackendRendererUserData like other backends.
97-
- Examples: Vulkan: Fixed validation errors with newer VulkanSDK by explicitely querying and enabling
95+
- Examples: Vulkan: Fixed validation errors with newer VulkanSDK by explicitly querying and enabling
9896
"VK_KHR_get_physical_device_properties2", "VK_KHR_portability_enumeration", and
9997
VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR. (#6109, #6172, #6101)
10098
- Examples: Windows: Added 'misc/debuggers/imgui.natstepfilter' file to all Visual Studio projects,
10199
now that VS 2022 17.6 Preview 2 support adding Debug Step Filter spec files into projects.
102100
- Examples: SDL3: Updated for latest WIP SDL3 branch. (#6243)
101+
- TestSuite: Added variety of new regression tests and improved/amended existing ones
102+
in imgui_test_engine/ repo. [@PathogenDavid, @ocornut]
103103

104104

105105
-----------------------------------------------------------------------

imgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.5 WIP
1+
// dear imgui, v1.89.5
22
// (main code and documentation)
33

44
// Help:

imgui.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.5 WIP
1+
// dear imgui, v1.89.5
22
// (headers)
33

44
// Help:
@@ -22,8 +22,8 @@
2222

2323
// Library Version
2424
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM > 12345')
25-
#define IMGUI_VERSION "1.89.5 WIP"
26-
#define IMGUI_VERSION_NUM 18949
25+
#define IMGUI_VERSION "1.89.5"
26+
#define IMGUI_VERSION_NUM 18950
2727
#define IMGUI_HAS_TABLE
2828

2929
/*

imgui_demo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.5 WIP
1+
// dear imgui, v1.89.5
22
// (demo code)
33

44
// Help:

imgui_draw.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.5 WIP
1+
// dear imgui, v1.89.5
22
// (drawing and font code)
33

44
/*

imgui_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.5 WIP
1+
// dear imgui, v1.89.5
22
// (internal structures/api)
33

44
// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.

imgui_tables.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.5 WIP
1+
// dear imgui, v1.89.5
22
// (tables and columns code)
33

44
/*

imgui_widgets.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.89.5 WIP
1+
// dear imgui, v1.89.5
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)