Skip to content

Commit ae493d9

Browse files
authored
upgrade imgui.net to 1.90.8 (#481)
1 parent 77383b5 commit ae493d9

File tree

10 files changed

+1198
-1109
lines changed

10 files changed

+1198
-1109
lines changed

deps/cimgui/linux-x64/cimgui.so

4.58 KB
Binary file not shown.

deps/cimgui/osx/cimgui.dylib

976 Bytes
Binary file not shown.

deps/cimgui/win-arm64/cimgui.dll

1 KB
Binary file not shown.

deps/cimgui/win-x64/cimgui.dll

1 KB
Binary file not shown.

deps/cimgui/win-x86/cimgui.dll

1.5 KB
Binary file not shown.

src/CodeGenerator/definitions/cimgui/definitions.json

+916-866
Large diffs are not rendered by default.

src/CodeGenerator/definitions/cimgui/structs_and_enums.json

+261-223
Large diffs are not rendered by default.

src/ImGui.NET/Generated/ImGuiButtonFlags.gen.cs

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ public enum ImGuiButtonFlags
88
MouseButtonRight = 2,
99
MouseButtonMiddle = 4,
1010
MouseButtonMask = 7,
11-
MouseButtonDefault = 1,
1211
}
1312
}

src/ImGui.NET/Generated/ImGuiInputTextFlags.gen.cs

+20-18
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,26 @@ public enum ImGuiInputTextFlags
66
None = 0,
77
CharsDecimal = 1,
88
CharsHexadecimal = 2,
9-
CharsUppercase = 4,
10-
CharsNoBlank = 8,
11-
AutoSelectAll = 16,
12-
EnterReturnsTrue = 32,
13-
CallbackCompletion = 64,
14-
CallbackHistory = 128,
15-
CallbackAlways = 256,
16-
CallbackCharFilter = 512,
17-
AllowTabInput = 1024,
18-
CtrlEnterForNewLine = 2048,
19-
NoHorizontalScroll = 4096,
20-
AlwaysOverwrite = 8192,
21-
ReadOnly = 16384,
22-
Password = 32768,
9+
CharsScientific = 4,
10+
CharsUppercase = 8,
11+
CharsNoBlank = 16,
12+
AllowTabInput = 32,
13+
EnterReturnsTrue = 64,
14+
EscapeClearsAll = 128,
15+
CtrlEnterForNewLine = 256,
16+
ReadOnly = 512,
17+
Password = 1024,
18+
AlwaysOverwrite = 2048,
19+
AutoSelectAll = 4096,
20+
ParseEmptyRefVal = 8192,
21+
DisplayEmptyRefVal = 16384,
22+
NoHorizontalScroll = 32768,
2323
NoUndoRedo = 65536,
24-
CharsScientific = 131072,
25-
CallbackResize = 262144,
26-
CallbackEdit = 524288,
27-
EscapeClearsAll = 1048576,
24+
CallbackCompletion = 131072,
25+
CallbackHistory = 262144,
26+
CallbackAlways = 524288,
27+
CallbackCharFilter = 1048576,
28+
CallbackResize = 2097152,
29+
CallbackEdit = 4194304,
2830
}
2931
}

src/ImGui.NET/ImGui.NET.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>A .NET wrapper for the Dear ImGui library.</Description>
4-
<AssemblyVersion>1.90.7.1</AssemblyVersion>
4+
<AssemblyVersion>1.90.8.1</AssemblyVersion>
55
<Authors>Eric Mellino</Authors>
66
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

0 commit comments

Comments
 (0)