Skip to content

Commit 4f5c70a

Browse files
committed
v1.79-1.4.0
1 parent da17675 commit 4f5c70a

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ JNI based binding for [Dear ImGui](https://github.com/ocornut/imgui) with no dep
66
Please read **Binding Notice** to get more info about java-specific things of the API.<br>
77
See official [documentation](https://github.com/ocornut/imgui#usage) and [wiki](https://github.com/ocornut/imgui/wiki) to get more info about how to do things in Dear ImGui.
88

9-
Binding provides all the data you need to render Dear ImGui. If, for some reason, you want to use your own backend renderer, see [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.78-1.3.0/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java) for reference.
9+
Binding provides all the data you need to render Dear ImGui. If, for some reason, you want to use your own backend renderer, see [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.79-1.4.0/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java) for reference.
1010

1111
Versioning semantic of the binding: `imguiVersion-bindingVersion`.<br>
1212
For example `1.74-0.1` means that imgui-java uses `1.74` version of Dear ImGui and binding itself has the version `0.1`.
@@ -21,12 +21,12 @@ _Make sure you have installed Java 8 or higher._
2121
You can try Dear ImGui with Java by yourself in a three simple steps:
2222

2323
```
24-
git clone --branch v1.78-1.3.0 https://github.com/SpaiR/imgui-java.git
24+
git clone --branch v1.79-1.4.0 https://github.com/SpaiR/imgui-java.git
2525
cd imgui-java
2626
gradlew :imgui-lwjgl3:startExample
2727
```
2828

29-
That's all! You will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.78-1.3.0/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). Feel free to modify [ExampleUi](https://github.com/SpaiR/imgui-java/blob/v1.78-1.3.0/imgui-lwjgl3/src/test/java/ExampleUi.java) class to try different Dear ImGui widgets in action.
29+
That's all! You will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.79-1.4.0/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). Feel free to modify [ExampleUi](https://github.com/SpaiR/imgui-java/blob/v1.79-1.4.0/imgui-lwjgl3/src/test/java/ExampleUi.java) class to try different Dear ImGui widgets in action.
3030

3131
![imgui-java demo](https://i.imgur.com/WbnnhCn.gif)
3232

@@ -43,7 +43,7 @@ repositories {
4343
4444
ext {
4545
lwjglVersion = '3.2.3'
46-
imguiVersion = '1.78-1.3.0'
46+
imguiVersion = '1.79-1.4.0'
4747
}
4848
4949
switch (OperatingSystem.current()) {
@@ -90,7 +90,7 @@ dependencies {
9090
9191
<properties>
9292
<lwjgl.version>3.2.3</lwjgl.version>
93-
<imgui.java.version>1.78-1.3.0</imgui.java.version>
93+
<imgui.java.version>1.79-1.4.0</imgui.java.version>
9494
</properties>
9595
9696
<!-- Resolve OS version for native libraries -->

bin/imgui-java.dll

10 KB
Binary file not shown.

bin/imgui-java64.dll

9 KB
Binary file not shown.

bin/libimgui-java.so

12 KB
Binary file not shown.

bin/libimgui-java64.dylib

12.3 KB
Binary file not shown.

bin/libimgui-java64.so

8.06 KB
Binary file not shown.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.78-1.3.0
1+
version=1.79-1.4.0

0 commit comments

Comments
 (0)