Skip to content

Commit 3a976e7

Browse files
committed
v1.74-0.3.2
1 parent cb80d08 commit 3a976e7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Despite this fact, see official [documentation](https://github.com/ocornut/imgui
1414
to get more info about how to do things in ImGui.
1515

1616
Binding doesn't force you to use backend renderer which is introduced here. Feel free to use your own renderer engine if you need so.
17-
See how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.74-0.3.1/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java).
17+
See how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.74-0.3.2/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java).
1818

1919
Binding has the next version naming: `imguiVersion-bindingVersion`.<br>
2020
For example `1.74-0.1` means that binding uses `1.74` version of **ImGui** and binding itself has version `0.1`.
@@ -27,13 +27,13 @@ _Make sure you have installed Java 8 or higher._
2727
You can try this binding by yourself in a three simple steps:
2828

2929
```
30-
git clone --branch v1.74-0.3.1 https://github.com/SpaiR/imgui-java.git
30+
git clone --branch v1.74-0.3.2 https://github.com/SpaiR/imgui-java.git
3131
cd imgui-java
3232
gradlew :imgui-lwjgl3:startExample
3333
```
3434

35-
That's it! This will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.74-0.3.1/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java)
36-
which relies on the GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.74-0.3.1/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L288)
35+
That's it! This will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.74-0.3.2/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java)
36+
which relies on the GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.74-0.3.2/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L288)
3737
method to try different ImGui widgets in action.
3838

3939
<details>
@@ -54,16 +54,16 @@ repositories {
5454
Add binding dependency:
5555
```
5656
dependecies {
57-
implementation 'io.imgui.java:binding:1.74-0.3.1'
57+
implementation 'io.imgui.java:binding:1.74-0.3.2'
5858
}
5959
```
6060

6161
#### Step 3 (optional, but recommended)
6262
If you want to use LWJGL3 renderer:
6363
```
6464
dependecies {
65-
implementation 'io.imgui.java:binding:1.74-0.3.1'
66-
implementation 'io.imgui.java:lwjgl3:1.74-0.3.1'
65+
implementation 'io.imgui.java:binding:1.74-0.3.2'
66+
implementation 'io.imgui.java:lwjgl3:1.74-0.3.2'
6767
}
6868
```
6969
**Disclaimer!**<br>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.74-0.3.1
1+
version=1.74-0.3.2

0 commit comments

Comments
 (0)