Skip to content

Commit 1a5365d

Browse files
committed
v1.74-0.4.1
1 parent 313aac7 commit 1a5365d

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 10 additions & 10 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 render engine if you need so.
17-
See how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.74-0.4/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.4.1/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.4 https://github.com/SpaiR/imgui-java.git
30+
git clone --branch v1.74-0.4.1 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.4/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java)
36-
which relies on GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.74-0.4/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.4.1/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java)
36+
which relies on GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.74-0.4.1/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L288)
3737
method to try different ImGui widgets in action.
3838

3939
<details>
@@ -53,13 +53,13 @@ repositories {
5353
### Step 2
5454
Add binding dependency:
5555
```
56-
implementation 'io.imgui.java:binding:1.74-0.4'
56+
implementation 'io.imgui.java:binding:1.74-0.4.1'
5757
```
5858

5959
### Step 3
6060
If you want to use LWJGL3 renderer:
6161
```
62-
implementation 'io.imgui.java:lwjgl3:1.74-0.4'
62+
implementation 'io.imgui.java:lwjgl3:1.74-0.4.1'
6363
```
6464
**Disclaimer!**<br>
6565
LWJGL3 renderer is based on the `3.2.3` version of the [LWJGL](https://www.lwjgl.org/).
@@ -69,7 +69,7 @@ You can find how to do that [here](https://www.lwjgl.org/customize).
6969
### Step 4
7070
Add binary lib dependency:
7171
```
72-
runtimeOnly "io.imgui.java:$imguiNatives:1.74-0.4"
72+
runtimeOnly "io.imgui.java:$imguiNatives:1.74-0.4.1"
7373
```
7474
Where `imguiNatives` could be:
7575
- `natives-linux`
@@ -91,9 +91,9 @@ VM option with path to a folder where you placed downloaded file.
9191
}
9292

9393
dependencies {
94-
implementation 'io.imgui.java:binding:1.74-0.4'
95-
implementation 'io.imgui.java:lwjgl3:1.74-0.4'
96-
runtimeOnly "io.imgui.java:natives-windows:1.74-0.4"
94+
implementation 'io.imgui.java:binding:1.74-0.4.1'
95+
implementation 'io.imgui.java:lwjgl3:1.74-0.4.1'
96+
runtimeOnly "io.imgui.java:natives-windows:1.74-0.4.1"
9797
}
9898
</details>
9999

bin/imgui-java.dll

2.5 KB
Binary file not shown.

bin/imgui-java64.dll

3.5 KB
Binary file not shown.

bin/libimgui-java.so

4 KB
Binary file not shown.

bin/libimgui-java64.so

4 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.74-0.4
1+
version=1.74-0.4.1

0 commit comments

Comments
 (0)