Skip to content

Commit

Permalink
Bump to 1.72b (NuGet version 1.72.0).
Browse files Browse the repository at this point in the history
  • Loading branch information
mellinoe committed Sep 22, 2019
1 parent 5e9d6be commit 35aabdc
Show file tree
Hide file tree
Showing 26 changed files with 3,026 additions and 3,003 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -259,4 +259,7 @@ Session.vim
.idea

# download dir
deps/
deps/

# VS Launch
launchSettings.json
Binary file modified deps/cimgui/linux-x64/cimgui.so
Binary file not shown.
Binary file modified deps/cimgui/osx-x64/cimgui.dylib
Binary file not shown.
Binary file modified deps/cimgui/win-x64/cimgui.dll
Binary file not shown.
Binary file modified deps/cimgui/win-x86/cimgui.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion src/CodeGenerator/CodeGenerator.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand Down
4 changes: 2 additions & 2 deletions src/CodeGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ internal static class Program
"ImVector",
"ImVec2",
"ImVec4",
"Pair",
"ImGuiStoragePair",
};

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

0 comments on commit 35aabdc

Please sign in to comment.