Skip to content

Commit ffc0d71

Browse files
committed
v1.76-0.10
1 parent 547f24e commit ffc0d71

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

1111
**[Docking API](https://user-images.githubusercontent.com/8225057/46304087-00035580-c5ae-11e8-8904-f27a9434574a.gif)** is available! Read "Using Docking" to get more info.
1212

@@ -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.76-0.9 https://github.com/SpaiR/imgui-java.git
24+
git clone --branch v1.76-0.10 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.76-0.9/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). Feel free to modify [ExampleUi](https://github.com/SpaiR/imgui-java/blob/v1.76-0.9/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.76-0.10/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). Feel free to modify [ExampleUi](https://github.com/SpaiR/imgui-java/blob/v1.76-0.10/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/ljAhD7a.gif)
3232

@@ -40,7 +40,7 @@ repositories {
4040
4141
ext {
4242
lwjglVersion = '3.2.3'
43-
imguiVersion = '1.76-0.9'
43+
imguiVersion = '1.76-0.10'
4444
}
4545
4646
switch (org.gradle.internal.os.OperatingSystem.current()) {
@@ -78,7 +78,7 @@ Even if the viewport feature is still in a very experimental state, yet the dock
7878
See an official documentation about how to work with [docking](https://github.com/ocornut/imgui/issues/2109).
7979

8080
## Using FreeType
81-
Dear ImGui by default uses a 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.9/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). [Read more](https://github.com/ocornut/imgui/blob/v1.76/misc/freetype/README.md)
81+
Dear ImGui by default uses a 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.10/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). [Read more](https://github.com/ocornut/imgui/blob/v1.76/misc/freetype/README.md)
8282

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

bin/imgui-java.dll

114 KB
Binary file not shown.

bin/imgui-java64.dll

111 KB
Binary file not shown.

bin/libimgui-java.so

124 KB
Binary file not shown.

bin/libimgui-java64.so

112 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.76-0.9
1+
version=1.76-0.10

0 commit comments

Comments
 (0)