Skip to content

Commit e0cab56

Browse files
committed
Version 1.65
1 parent 5a679a4 commit e0cab56

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

docs/CHANGELOG.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ HOW TO UPDATE?
2828
and API updates have been a little more frequent lately. They are documented below and in imgui.cpp and should not affect all users.
2929
- Please report any issue!
3030

31+
3132
-----------------------------------------------------------------------
32-
VERSION 1.65 (In Progress)
33+
VERSION 1.65 (Released 2018-09-06)
3334
-----------------------------------------------------------------------
3435

3536
Breaking Changes:
@@ -43,6 +44,7 @@ Breaking Changes:
4344

4445
Other Changes:
4546

47+
- This is a minor release following the 1.64 refactor, with a little more shuffling of code.
4648
- Clarified and improved the source code sectioning in all files (easier to search or browse sections).
4749
- Nav: Removed the [Beta] tag from various descriptions of the gamepad/keyboard navigation system.
4850
Although it is not perfect and will keep being improved, it is fairly functional and used by many. (#787)

imgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dear imgui, v1.65 WIP
1+
// dear imgui, v1.65
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.65 WIP
1+
// dear imgui, v1.65
22
// (headers)
33

44
// See imgui.cpp file for documentation.
@@ -23,8 +23,8 @@
2323

2424
// Version
2525
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals. Work in progress versions typically starts at XYY00 then bounced up to XYY01 when release tagging happens)
26-
#define IMGUI_VERSION "1.65 WIP"
27-
#define IMGUI_VERSION_NUM 16500
26+
#define IMGUI_VERSION "1.65"
27+
#define IMGUI_VERSION_NUM 16501
2828
#define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))
2929

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

44
// Message to the person tempted to delete this file when integrating 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.65 WIP
1+
// dear imgui, v1.65
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.65 WIP
1+
// dear imgui, v1.65
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.65 WIP
1+
// dear imgui, v1.65
22
// (widgets code)
33

44
/*

0 commit comments

Comments
 (0)