Skip to content

Commit 7eeeb78

Browse files
committed
chore: update version to v0.2
1 parent 4dcaf03 commit 7eeeb78

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

implot3d.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//--------------------------------------------------
2-
// ImPlot3D v0.1
2+
// ImPlot3D v0.2
33
// implot3d.cpp
44
// Date: 2024-11-16
55
// Author: Breno Cunha Queiroz (brenocq.com)

implot3d.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//--------------------------------------------------
2-
// ImPlot3D v0.1
2+
// ImPlot3D v0.2
33
// implot3d.h
44
// Date: 2024-11-16
55
// Author: Breno Cunha Queiroz (brenocq.com)
@@ -45,7 +45,7 @@
4545
#define IMPLOT3D_API
4646
#endif
4747

48-
#define IMPLOT3D_VERSION "0.1" // ImPlot3D version
48+
#define IMPLOT3D_VERSION "0.2" // ImPlot3D version
4949
#define IMPLOT3D_AUTO -1 // Deduce variable automatically
5050
#define IMPLOT3D_AUTO_COL ImVec4(0, 0, 0, -1) // Deduce color automatically
5151
#define IMPLOT3D_TMP template <typename T> IMPLOT3D_API

implot3d_demo.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//--------------------------------------------------
2-
// ImPlot3D v0.1
2+
// ImPlot3D v0.2
33
// implot3d_demo.cpp
44
// Date: 2024-11-17
55
// Author: Breno Cunha Queiroz (brenocq.com)
@@ -1031,7 +1031,7 @@ void ShowStyleEditor(ImPlot3DStyle* ref) {
10311031
alpha_flags = ImGuiColorEditFlags_AlphaPreviewHalf;
10321032
ImGui::SameLine();
10331033
#else
1034-
if (ImGui::RadioButton("Opaque", alpha_flags == ImGuiColorEditFlags_AlphaOpaque))
1034+
if (ImGui::RadioButton("Opaque", alpha_flags == ImGuiColorEditFlags_AlphaOpaque))
10351035
alpha_flags = ImGuiColorEditFlags_AlphaOpaque;
10361036
ImGui::SameLine();
10371037
if (ImGui::RadioButton("Alpha", alpha_flags == ImGuiColorEditFlags_None))

implot3d_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//--------------------------------------------------
2-
// ImPlot3D v0.1
2+
// ImPlot3D v0.2
33
// implot3d_internal.h
44
// Date: 2024-11-17
55
// Author: Breno Cunha Queiroz (brenocq.com)

implot3d_items.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//--------------------------------------------------
2-
// ImPlot3D v0.1
2+
// ImPlot3D v0.2
33
// implot3d_items.cpp
44
// Date: 2024-11-26
55
// Author: Breno Cunha Queiroz (brenocq.com)

implot3d_meshes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//--------------------------------------------------
2-
// ImPlot3D v0.1
2+
// ImPlot3D v0.2
33
// implot3d_meshes.cpp
44
// Date: 2024-12-07
55
// Author: Breno Cunha Queiroz (brenocq.com)

0 commit comments

Comments
 (0)