Skip to content

Commit

Permalink
upgrade imgui.net to 1.90.8 (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaafar committed Jun 8, 2024
1 parent 77383b5 commit ae493d9
Show file tree
Hide file tree
Showing 10 changed files with 1,198 additions and 1,109 deletions.
Binary file modified deps/cimgui/linux-x64/cimgui.so
Binary file not shown.
Binary file modified deps/cimgui/osx/cimgui.dylib
Binary file not shown.
Binary file modified deps/cimgui/win-arm64/cimgui.dll
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.
1,782 changes: 916 additions & 866 deletions src/CodeGenerator/definitions/cimgui/definitions.json

Large diffs are not rendered by default.

484 changes: 261 additions & 223 deletions src/CodeGenerator/definitions/cimgui/structs_and_enums.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/ImGui.NET/Generated/ImGuiButtonFlags.gen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ public enum ImGuiButtonFlags
MouseButtonRight = 2,
MouseButtonMiddle = 4,
MouseButtonMask = 7,
MouseButtonDefault = 1,
}
}
38 changes: 20 additions & 18 deletions src/ImGui.NET/Generated/ImGuiInputTextFlags.gen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,26 @@ public enum ImGuiInputTextFlags
None = 0,
CharsDecimal = 1,
CharsHexadecimal = 2,
CharsUppercase = 4,
CharsNoBlank = 8,
AutoSelectAll = 16,
EnterReturnsTrue = 32,
CallbackCompletion = 64,
CallbackHistory = 128,
CallbackAlways = 256,
CallbackCharFilter = 512,
AllowTabInput = 1024,
CtrlEnterForNewLine = 2048,
NoHorizontalScroll = 4096,
AlwaysOverwrite = 8192,
ReadOnly = 16384,
Password = 32768,
CharsScientific = 4,
CharsUppercase = 8,
CharsNoBlank = 16,
AllowTabInput = 32,
EnterReturnsTrue = 64,
EscapeClearsAll = 128,
CtrlEnterForNewLine = 256,
ReadOnly = 512,
Password = 1024,
AlwaysOverwrite = 2048,
AutoSelectAll = 4096,
ParseEmptyRefVal = 8192,
DisplayEmptyRefVal = 16384,
NoHorizontalScroll = 32768,
NoUndoRedo = 65536,
CharsScientific = 131072,
CallbackResize = 262144,
CallbackEdit = 524288,
EscapeClearsAll = 1048576,
CallbackCompletion = 131072,
CallbackHistory = 262144,
CallbackAlways = 524288,
CallbackCharFilter = 1048576,
CallbackResize = 2097152,
CallbackEdit = 4194304,
}
}
2 changes: 1 addition & 1 deletion src/ImGui.NET/ImGui.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A .NET wrapper for the Dear ImGui library.</Description>
<AssemblyVersion>1.90.7.1</AssemblyVersion>
<AssemblyVersion>1.90.8.1</AssemblyVersion>
<Authors>Eric Mellino</Authors>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down

0 comments on commit ae493d9

Please sign in to comment.