Skip to content

Commit 35aabdc

Browse files
committed
Bump to 1.72b (NuGet version 1.72.0).
1 parent 5e9d6be commit 35aabdc

26 files changed

+3026
-3003
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,4 +259,7 @@ Session.vim
259259
.idea
260260

261261
# download dir
262-
deps/
262+
deps/
263+
264+
# VS Launch
265+
launchSettings.json

deps/cimgui/linux-x64/cimgui.so

9.82 KB
Binary file not shown.

deps/cimgui/osx-x64/cimgui.dylib

4.47 KB
Binary file not shown.

deps/cimgui/win-x64/cimgui.dll

5.5 KB
Binary file not shown.

deps/cimgui/win-x86/cimgui.dll

4.5 KB
Binary file not shown.

src/CodeGenerator/CodeGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>

src/CodeGenerator/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ internal static class Program
5656
"ImVector",
5757
"ImVec2",
5858
"ImVec4",
59-
"Pair",
59+
"ImGuiStoragePair",
6060
};
6161

6262
private static readonly Dictionary<string, string> s_wellKnownDefaultValues = new Dictionary<string, string>()
@@ -70,7 +70,7 @@ internal static class Program
7070
{ "ImVec2(0,1)", "new Vector2(0, 1)" },
7171
{ "ImVec4(0,0,0,0)", "new Vector4()" },
7272
{ "ImVec4(1,1,1,1)", "new Vector4(1, 1, 1, 1)" },
73-
{ "ImDrawCornerFlags_All", "(int)ImDrawCornerFlags.All" },
73+
{ "ImDrawCornerFlags_All", "ImDrawCornerFlags.All" },
7474
{ "FLT_MAX", "float.MaxValue" },
7575
{ "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))", "0xFFFFFFFF" }
7676
};

0 commit comments

Comments
 (0)