Skip to content

Commit f624455

Browse files
committed
Version 1.73 WIP
1 parent 9bd7846 commit f624455

File tree

9 files changed

+16
-10
lines changed

9 files changed

+16
-10
lines changed

docs/CHANGELOG.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ HOW TO UPDATE?
2929
- Please report any issue!
3030

3131

32+
-----------------------------------------------------------------------
33+
VERSION 1.73 WIP (In Progress)
34+
-----------------------------------------------------------------------
35+
36+
Other Changes:
37+
3238
-----------------------------------------------------------------------
3339
VERSION 1.72b (Released 2019-07-31)
3440
-----------------------------------------------------------------------

examples/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-----------------------------------------------------------------------
2-
dear imgui, v1.72b
2+
dear imgui, v1.73 WIP
33
-----------------------------------------------------------------------
44
examples/README.txt
55
(This is the README file for the examples/ folder. See docs/ for more documentation)

imgui.cpp

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

44
// Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp for demo code.

imgui.h

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

44
// See imgui.cpp file for documentation.
@@ -46,8 +46,8 @@ Index of this file:
4646

4747
// Version
4848
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals. Work in progress versions typically starts at XYY99 then bounce up to XYY00, XYY01 etc. when release tagging happens)
49-
#define IMGUI_VERSION "1.72b"
50-
#define IMGUI_VERSION_NUM 17202
49+
#define IMGUI_VERSION "1.73 WIP"
50+
#define IMGUI_VERSION_NUM 17203
5151
#define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx))
5252

5353
// Define attributes of all API symbols declarations (e.g. for DLL under Windows)

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.72b
1+
// dear imgui, v1.73 WIP
22
// (demo code)
33

44
// Message to the person tempted to delete this file when integrating Dear ImGui into their code base:

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.72b
1+
// dear imgui, v1.73 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.72b
1+
// dear imgui, v1.73 WIP
22
// (internal structures/api)
33

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

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

44
/*

misc/fonts/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dear imgui, v1.72b
1+
dear imgui, v1.73 WIP
22
(Font Readme)
33

44
---------------------------------------

0 commit comments

Comments
 (0)