Skip to content

Commit 84cc72f

Browse files
committed
Version 1.91.0 WIP
1 parent cb16be3 commit 84cc72f

8 files changed

+21
-12
lines changed

docs/CHANGELOG.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ HOW TO UPDATE?
3535
and API updates have been a little more frequent lately. They are documented below and in imgui.cpp and should not affect all users.
3636
- Please report any issue!
3737

38+
-----------------------------------------------------------------------
39+
VERSION 1.91.0 WIP (In Progress)
40+
-----------------------------------------------------------------------
41+
42+
Breaking changes:
43+
44+
Other changes:
45+
46+
3847
-----------------------------------------------------------------------
3948
VERSION 1.90.9 (Released 2024-07-01)
4049
-----------------------------------------------------------------------

imgui.cpp

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

44
// Help:

imgui.h

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

44
// Help:
@@ -27,8 +27,8 @@
2727

2828
// Library Version
2929
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
30-
#define IMGUI_VERSION "1.90.9"
31-
#define IMGUI_VERSION_NUM 19090
30+
#define IMGUI_VERSION "1.91.0 WIP"
31+
#define IMGUI_VERSION_NUM 19091
3232
#define IMGUI_HAS_TABLE
3333

3434
/*
@@ -1660,11 +1660,11 @@ enum ImGuiStyleVar_
16601660
ImGuiStyleVar_TabRounding, // float TabRounding
16611661
ImGuiStyleVar_TabBorderSize, // float TabBorderSize
16621662
ImGuiStyleVar_TabBarBorderSize, // float TabBarBorderSize
1663-
ImGuiStyleVar_TableAngledHeadersAngle, // float TableAngledHeadersAngle
1664-
ImGuiStyleVar_TableAngledHeadersTextAlign,// ImVec2 TableAngledHeadersTextAlign
1663+
ImGuiStyleVar_TableAngledHeadersAngle, // float TableAngledHeadersAngle
1664+
ImGuiStyleVar_TableAngledHeadersTextAlign,// ImVec2 TableAngledHeadersTextAlign
16651665
ImGuiStyleVar_ButtonTextAlign, // ImVec2 ButtonTextAlign
16661666
ImGuiStyleVar_SelectableTextAlign, // ImVec2 SelectableTextAlign
1667-
ImGuiStyleVar_SeparatorTextBorderSize, // float SeparatorTextBorderSize
1667+
ImGuiStyleVar_SeparatorTextBorderSize, // float SeparatorTextBorderSize
16681668
ImGuiStyleVar_SeparatorTextAlign, // ImVec2 SeparatorTextAlign
16691669
ImGuiStyleVar_SeparatorTextPadding, // ImVec2 SeparatorTextPadding
16701670
ImGuiStyleVar_COUNT

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

44
/*

0 commit comments

Comments
 (0)