Skip to content

Commit 194e4e8

Browse files
committed
v1.76-0.8.1
1 parent adf01f3 commit 194e4e8

File tree

6 files changed

+6
-6
lines changed

6 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-
imgui-java provides all the data you need to render Dear ImGui. If, for some reason, you want to use your own backend renderer, 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).
9+
imgui-java provides all the data you need to render Dear ImGui. If, for some reason, you want to use your own backend renderer, see how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.76-0.8.1/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java).
1010

1111
Binding has the next versioning semantic: `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`.
@@ -19,12 +19,12 @@ _Make sure you have installed Java 8 or higher._
1919
You can try Dear ImGui with Java by yourself in a three simple steps:
2020

2121
```
22-
git clone --branch v1.76-0.8 https://github.com/SpaiR/imgui-java.git
22+
git clone --branch v1.76-0.8.1 https://github.com/SpaiR/imgui-java.git
2323
cd imgui-java
2424
gradlew :imgui-lwjgl3:startExample
2525
```
2626

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

2929
![imgui-java demo](https://i.imgur.com/ljAhD7a.gif)
3030

@@ -38,7 +38,7 @@ repositories {
3838
3939
ext {
4040
lwjglVersion = '3.2.3'
41-
imguiVersion = '1.76-0.8'
41+
imguiVersion = '1.76-0.8.1'
4242
}
4343
4444
dependencies {
@@ -69,7 +69,7 @@ Alternatively you can download imgui-java binaries manually from the [release pa
6969
**You are ready to use imgui-java binding!**
7070

7171
## Using FreeType
72-
Dear ImGui by default uses an stb_strutype library to render a fonts atlas. It's possible to use FreeType instead to get better fonts quality. See an example in [ImGuiGlfwExample](https://github.com/spair/imgui-java/blob/v1.76-0.8/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L279). [Read more](https://github.com/ocornut/imgui/blob/v1.76/misc/freetype/README.md)
72+
Dear ImGui by default uses an stb_strutype library to render a fonts atlas. It's possible to use FreeType instead to get better fonts quality. See an example in [ImGuiGlfwExample](https://github.com/spair/imgui-java/blob/v1.76-0.8.1/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L279). [Read more](https://github.com/ocornut/imgui/blob/v1.76/misc/freetype/README.md)
7373

7474
## Binding Notice
7575
* All Dear ImGui methods are available in `camelCase`, not in `PascalCase`.

bin/imgui-java.dll

512 Bytes
Binary file not shown.

bin/imgui-java64.dll

512 Bytes
Binary file not shown.

bin/libimgui-java.so

0 Bytes
Binary file not shown.

bin/libimgui-java64.so

0 Bytes
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.76-0.8
1+
version=1.76-0.8.1

0 commit comments

Comments
 (0)