Skip to content

Commit 19de616

Browse files
committed
v1.77-0.17.2
1 parent 54e2da3 commit 19de616

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 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.77-0.17.1/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java) for reference.
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.77-0.17.2/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java) for reference.
1010

1111
Versioning semantic of the binding: `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`.
@@ -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.77-0.17.1 https://github.com/SpaiR/imgui-java.git
24+
git clone --branch v1.77-0.17.2 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.77-0.17.1/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). Feel free to modify [ExampleUi](https://github.com/SpaiR/imgui-java/blob/v1.77-0.17.1/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.77-0.17.2/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). Feel free to modify [ExampleUi](https://github.com/SpaiR/imgui-java/blob/v1.77-0.17.2/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

@@ -43,7 +43,7 @@ repositories {
4343
4444
ext {
4545
lwjglVersion = '3.2.3'
46-
imguiVersion = '1.77-0.17.1'
46+
imguiVersion = '1.77-0.17.2'
4747
}
4848
4949
switch (OperatingSystem.current()) {
@@ -87,7 +87,7 @@ dependencies {
8787
8888
<properties>
8989
<lwjgl.version>3.2.3</lwjgl.version>
90-
<imgui.java.version>1.77-0.17.1</imgui.java.version>
90+
<imgui.java.version>1.77-0.17.2</imgui.java.version>
9191
</properties>
9292
9393
<!-- Resolve OS version for native libraries -->
@@ -232,7 +232,7 @@ Even if the viewport feature is still in a very experimental state, yet the dock
232232
See an official documentation about how to work with [docking](https://github.com/ocornut/imgui/issues/2109).
233233

234234
## Using FreeType
235-
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.77-0.17.1/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). [Read more](https://github.com/ocornut/imgui/blob/v1.76/misc/freetype/README.md)
235+
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.77-0.17.2/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java). [Read more](https://github.com/ocornut/imgui/blob/v1.76/misc/freetype/README.md)
236236

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.77-0.17.1
1+
version=1.77-0.17.2

0 commit comments

Comments
 (0)