diff --git a/README.md b/README.md index 57475711..03c1edbe 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Please read **Binding notice** to get more info about specific of the binding AP 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 ImGui. Binding doesn't force you to use backend renderer which is introduced here. Feel free to use your own render engine if you need so. -See how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.75-0.7.2/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java). +See how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.76-0.8/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java). Binding has the next version naming: `imguiVersion-bindingVersion`.
For example `1.74-0.1` means that binding uses `1.74` version of **ImGui** and binding itself has version `0.1`. @@ -25,13 +25,13 @@ _Make sure you have installed Java 8 or higher._ You can try this binding by yourself in a three simple steps: ``` -git clone --branch v1.75-0.7.2 https://github.com/SpaiR/imgui-java.git +git clone --branch v1.76-0.8 https://github.com/SpaiR/imgui-java.git cd imgui-java gradlew :imgui-lwjgl3:startExample ``` -That's it! This will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.75-0.7.2/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java) -which relies on GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.75-0.7.2/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L346) +That's it! This will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.76-0.8/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java) +which relies on GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.76-0.8/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L346) method to try different ImGui widgets in action. **GIF with example:** https://imgur.com/a/E2rfuCR @@ -57,7 +57,7 @@ method to try different ImGui widgets in action. ext { lwjglVersion = '3.2.3' - imguiVersion = '1.75-0.7.2' + imguiVersion = '1.76-0.8' } dependencies { @@ -85,13 +85,13 @@ repositories { ### Step 2 Add binding dependency: ``` -implementation 'io.imgui.java:binding:1.75-0.7.2' +implementation 'io.imgui.java:binding:1.76-0.8' ``` ### Step 3 If you want to use LWJGL3 renderer: ``` -implementation 'io.imgui.java:lwjgl3:1.75-0.7.2' +implementation 'io.imgui.java:lwjgl3:1.76-0.8' ``` **Disclaimer!**
LWJGL3 renderer is based on the `3.2.3` version of the [LWJGL](https://www.lwjgl.org/). @@ -101,7 +101,7 @@ You can find how to do that [here](https://www.lwjgl.org/customize). ### Step 4 Add binary lib dependency: ``` -runtimeOnly "io.imgui.java:$imguiNatives:1.75-0.7.2" +runtimeOnly "io.imgui.java:$imguiNatives:1.76-0.8" ``` Where `imguiNatives` could be: - `natives-linux` diff --git a/bin/imgui-java.dll b/bin/imgui-java.dll index 1b54c058..e3ce7ab8 100755 Binary files a/bin/imgui-java.dll and b/bin/imgui-java.dll differ diff --git a/bin/imgui-java64.dll b/bin/imgui-java64.dll index 8b04c829..66a0c561 100755 Binary files a/bin/imgui-java64.dll and b/bin/imgui-java64.dll differ diff --git a/bin/libimgui-java.so b/bin/libimgui-java.so index db596dd4..52411d08 100755 Binary files a/bin/libimgui-java.so and b/bin/libimgui-java.so differ diff --git a/bin/libimgui-java64.so b/bin/libimgui-java64.so index 66ef5ac9..a9358486 100755 Binary files a/bin/libimgui-java64.so and b/bin/libimgui-java64.so differ diff --git a/gradle.properties b/gradle.properties index 7ebd5f09..72363f51 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=1.75-0.7.2 +version=1.76-0.8