WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit f7eea63

Browse files
committed
Version v1.89.8
1 parent ab490dc commit f7eea63

File tree

8 files changed

+17
-14
lines changed

8 files changed

+17
-14
lines changed

docs/CHANGELOG.txt

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,20 @@ HOW TO UPDATE?
3737

3838

3939
-----------------------------------------------------------------------
40-
VERSION 1.89.8 WIP (In Progress)
40+
VERSION 1.89.8 (Released 2023-08-01)
4141
-----------------------------------------------------------------------
4242

43+
Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.89.8
44+
4345
Breaking changes:
4446

4547
- IO: Obsoleted io.ClearInputCharacters() (added in 1.47) as it now ambiguous
4648
and often incorrect/misleading considering the existence of a higher-level
47-
input queue. (#4921)
49+
input queue. This is automatically cleared by io.ClearInputsKeys(). (#4921)
4850
- ImDrawData: CmdLists[] array is now owned, changed from 'ImDrawList**' to
4951
'ImVector<ImDrawList*>'. Majority of users shouldn't be affected, but you
5052
cannot compare to NULL nor reassign manually anymore.
51-
Instead use AddDrawList(). (#6406, #4879, #1878)
53+
Instead use AddDrawList(). Allocation count are identical. (#6406, #4879, #1878)
5254

5355
Other changes:
5456

@@ -96,9 +98,10 @@ Other changes:
9698
- Demo: Showcase a few more InputText() flags.
9799
- Backends: Made all backends sources files support global IMGUI_DISABLE. (#6601)
98100
- Backends: GLFW: Revert ignoring mouse data on GLFW_CURSOR_DISABLED as it can be used
99-
differently. User may set ImGuiConfigFLags_NoMouse if desired. (#5625, #6609) [@scorpion-26]
101+
differently. User may set ImGuiConfigFlags_NoMouse if desired. (#5625, #6609) [@scorpion-26]
100102
- Backends: WebGPU: Update for changes in Dawn. (#6602, #6188) [@williamhCode]
101-
- Examples: Vulkan: Creating minimal descriptor pools to fit only what is needed by example. (#6642) [@SaschaWillem]
103+
- Examples: Vulkan: Creating minimal descriptor pools to fit only what is needed by
104+
example. (#6642) [@SaschaWillem]
102105

103106

104107
-----------------------------------------------------------------------

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.8 WIP
1+
// dear imgui, v1.89.8
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.8 WIP
1+
// dear imgui, v1.89.8
22
// (headers)
33

44
// Help:
@@ -25,8 +25,8 @@
2525

2626
// Library Version
2727
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
28-
#define IMGUI_VERSION "1.89.8 WIP"
29-
#define IMGUI_VERSION_NUM 18974
28+
#define IMGUI_VERSION "1.89.8"
29+
#define IMGUI_VERSION_NUM 18980
3030
#define IMGUI_HAS_TABLE
3131

3232
/*

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.8 WIP
1+
// dear imgui, v1.89.8
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.8 WIP
1+
// dear imgui, v1.89.8
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.8 WIP
1+
// dear imgui, v1.89.8
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.8 WIP
1+
// dear imgui, v1.89.8
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.8 WIP
1+
// dear imgui, v1.89.8
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)