Skip to content

Commit

Permalink
Version 1.72b (patch for nav)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Jul 31, 2019
1 parent 27079e6 commit 6a0d0da
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ HOW TO UPDATE?


-----------------------------------------------------------------------
VERSION 1.73 (In Progress)
VERSION 1.72b (Released 2019-07-31)
-----------------------------------------------------------------------

Other Changes:
Expand Down
2 changes: 1 addition & 1 deletion examples/README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------------------------------------------
dear imgui, v1.73 WIP
dear imgui, v1.72b
-----------------------------------------------------------------------
examples/README.txt
(This is the README file for the examples/ folder. See docs/ for more documentation)
Expand Down
2 changes: 1 addition & 1 deletion imgui.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// dear imgui, v1.73 WIP
// dear imgui, v1.72b
// (main code and documentation)

// Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp for demo code.
Expand Down
6 changes: 3 additions & 3 deletions imgui.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// dear imgui, v1.73 WIP
// dear imgui, v1.72b
// (headers)

// See imgui.cpp file for documentation.
Expand Down Expand Up @@ -46,8 +46,8 @@ Index of this file:

// Version
// (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)
#define IMGUI_VERSION "1.73 WIP"
#define IMGUI_VERSION_NUM 17201
#define IMGUI_VERSION "1.72b"
#define IMGUI_VERSION_NUM 17202
#define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx))

// Define attributes of all API symbols declarations (e.g. for DLL under Windows)
Expand Down
2 changes: 1 addition & 1 deletion imgui_demo.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// dear imgui, v1.73 WIP
// dear imgui, v1.72b
// (demo code)

// Message to the person tempted to delete this file when integrating Dear ImGui into their code base:
Expand Down
2 changes: 1 addition & 1 deletion imgui_draw.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// dear imgui, v1.73 WIP
// dear imgui, v1.72b
// (drawing and font code)

/*
Expand Down
2 changes: 1 addition & 1 deletion imgui_internal.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// dear imgui, v1.73 WIP
// dear imgui, v1.72b
// (internal structures/api)

// You may use this file to debug, understand or extend ImGui features but we don't provide any guarantee of forward compatibility!
Expand Down
2 changes: 1 addition & 1 deletion imgui_widgets.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// dear imgui, v1.73 WIP
// dear imgui, v1.72b
// (widgets code)

/*
Expand Down
2 changes: 1 addition & 1 deletion misc/fonts/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dear imgui, v1.73 WIP
dear imgui, v1.72b
(Font Readme)

---------------------------------------
Expand Down

0 comments on commit 6a0d0da

Please sign in to comment.