Skip to content

Commit 0b88075

Browse files
v1.86.3
1 parent cca6c47 commit 0b88075

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ JNI based binding for [Dear ImGui](https://github.com/ocornut/imgui) with no dep
1111
Read official [documentation](https://github.com/ocornut/imgui#usage) and [wiki](https://github.com/ocornut/imgui/wiki) to see how to work with Dear ImGui.
1212
Almost everything from C++ could be done in Java in the same way.
1313

14-
Binding has an OpenGL renderer and a GLFW backend implementation, using a [LWJGL3](https://www.lwjgl.org/) library. Could be found in [imgui-lwjgl3](https://github.com/SpaiR/imgui-java/blob/v1.86.2/imgui-lwjgl3) module.<br>
14+
Binding has an OpenGL renderer and a GLFW backend implementation, using a [LWJGL3](https://www.lwjgl.org/) library. Could be found in [imgui-lwjgl3](https://github.com/SpaiR/imgui-java/blob/v1.86.3/imgui-lwjgl3) module.<br>
1515
They are recommended, yet optional to use. The advantage of Dear ImGui is a portability, so feel free to copy-paste classes or write your own implementations.<br>
1616

17-
Additionally, there is an [imgui-app](https://github.com/SpaiR/imgui-java/blob/v1.86.2/imgui-app) module, which provides **a high abstraction layer**.<br>
17+
Additionally, there is an [imgui-app](https://github.com/SpaiR/imgui-java/blob/v1.86.3/imgui-app) module, which provides **a high abstraction layer**.<br>
1818
It hides all low-level stuff under one class to extend, so you can build your GUI application instantly.
1919

2020
### Features
@@ -39,12 +39,12 @@ _Make sure you have installed Java 8 or higher._
3939
You can try binding by yourself in three simple steps:
4040

4141
```
42-
git clone --branch v1.86.2 https://github.com/SpaiR/imgui-java.git
42+
git clone --branch v1.86.3 https://github.com/SpaiR/imgui-java.git
4343
cd imgui-java
4444
./gradlew :example:run
4545
```
4646

47-
See [example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example) module to try other widgets in action.
47+
See [example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example) module to try other widgets in action.
4848

4949
# How to Use
5050
**[ImGui in LWJGL YouTube video](https://youtu.be/Xq-eVcNtUbw)** by [GamesWithGabe](https://www.youtube.com/channel/UCQP4qSCj1eHMHisDDR4iPzw).<br>
@@ -53,7 +53,7 @@ You can use this video as a basic step-by-step tutorial. It shows how to integra
5353
Take a note, that integration itself is a very flexible process. It could be done in one way or another. If you just need a framework for your GUI - use **Application** module. Otherwise, if you need more control, the best way is not just to repeat steps, but to understand what each step does.
5454

5555
## Application
56-
If you don't care about OpenGL or other low-level stuff, then you can use application layer from [imgui-app](https://github.com/SpaiR/imgui-java/blob/v1.86.2/imgui-app) module.
56+
If you don't care about OpenGL or other low-level stuff, then you can use application layer from [imgui-app](https://github.com/SpaiR/imgui-java/blob/v1.86.3/imgui-app) module.
5757
It is a **one jar solution** which includes: GLFW, OpenGL and Dear ImGui itself. So you only need **one dependency** line or **one jar in classpath** to make everything to work. <ins>You don't need to add separate dependencies to LWJGL or native libraries, since they are already included.</ins><br>
5858
Application module is the best choice if everything you care is the GUI for your app.
5959

@@ -94,7 +94,7 @@ repositories {
9494
}
9595
9696
dependencies {
97-
implementation "io.github.spair:imgui-java-app:1.86.2"
97+
implementation "io.github.spair:imgui-java-app:1.86.3"
9898
}
9999
```
100100
</details>
@@ -107,7 +107,7 @@ dependencies {
107107
<dependency>
108108
<groupId>io.github.spair</groupId>
109109
<artifactId>imgui-java-app</artifactId>
110-
<version>1.86.2</version>
110+
<version>1.86.3</version>
111111
</dependency>
112112
</dependencies>
113113
```
@@ -127,7 +127,7 @@ If using Java 9 modules, you will need to require the `imgui.app` module.
127127

128128
## Binding
129129
Using binding without the wrapper requires to "attach" it to your application manually.
130-
You can refer to [imgui-app](https://github.com/SpaiR/imgui-java/blob/v1.86.2/imgui-app) module and see how things are done there.
130+
You can refer to [imgui-app](https://github.com/SpaiR/imgui-java/blob/v1.86.3/imgui-app) module and see how things are done there.
131131

132132
### Dependencies
133133
For simplicity, example of dependencies for Gradle/Maven only shows how to add natives for Windows.
@@ -151,7 +151,7 @@ repositories {
151151
152152
ext {
153153
lwjglVersion = '3.3.1'
154-
imguiVersion = '1.86.2'
154+
imguiVersion = '1.86.3'
155155
}
156156
157157
dependencies {
@@ -176,7 +176,7 @@ dependencies {
176176
```
177177
<properties>
178178
<lwjgl.version>3.3.1</lwjgl.version>
179-
<imgui.java.version>1.86.2</imgui.java.version>
179+
<imgui.java.version>1.86.3</imgui.java.version>
180180
</properties>
181181
182182
<dependencyManagement>
@@ -262,19 +262,19 @@ If using Java 9 modules, imgui-java has Automatic Module Names:
262262
| imgui-java-natives | imgui.natives |
263263

264264
## Extensions
265-
- [ImNodes](https://github.com/Nelarius/imnodes/tree/857cc860af05ac0f6a4039c2af33d982377b6cf4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example/src/main/java/ExampleImNodes.java) <br>
265+
- [ImNodes](https://github.com/Nelarius/imnodes/tree/857cc860af05ac0f6a4039c2af33d982377b6cf4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example/src/main/java/ExampleImNodes.java) <br>
266266
A small, dependency-free node editor for dear imgui. (A good choice for simple start.)
267-
- [imgui-node-editor](https://github.com/thedmd/imgui-node-editor/tree/687a72f940c76cf5064e13fe55fa0408c18fcbe4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example/src/main/java/ExampleImGuiNodeEditor.java) <br>
267+
- [imgui-node-editor](https://github.com/thedmd/imgui-node-editor/tree/687a72f940c76cf5064e13fe55fa0408c18fcbe4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example/src/main/java/ExampleImGuiNodeEditor.java) <br>
268268
Node Editor using ImGui. (A bit more complex than ImNodes, but has more features.)
269-
- [ImGuizmo](https://github.com/CedricGuillemet/ImGuizmo/tree/f7bbbe39971d9d45816417a70e9b53a0f698c56e) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example/src/main/java/ExampleImGuizmo.java) <br>
269+
- [ImGuizmo](https://github.com/CedricGuillemet/ImGuizmo/tree/f7bbbe39971d9d45816417a70e9b53a0f698c56e) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example/src/main/java/ExampleImGuizmo.java) <br>
270270
Immediate mode 3D gizmo for scene editing and other controls based on Dear Imgui.
271-
- [implot](https://github.com/epezent/implot/tree/555ff688a8134bc0c602123149abe9c17d577475) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example/src/main/java/ExampleImPlot.java) <br>
271+
- [implot](https://github.com/epezent/implot/tree/555ff688a8134bc0c602123149abe9c17d577475) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example/src/main/java/ExampleImPlot.java) <br>
272272
Advanced 2D Plotting for Dear ImGui.
273-
- [ImGuiColorTextEdit](https://github.com/BalazsJako/ImGuiColorTextEdit/tree/0a88824f7de8d0bd11d8419066caa7d3469395c4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example/src/main/java/ExampleImGuiColorTextEdit.java) <br>
273+
- [ImGuiColorTextEdit](https://github.com/BalazsJako/ImGuiColorTextEdit/tree/0a88824f7de8d0bd11d8419066caa7d3469395c4) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example/src/main/java/ExampleImGuiColorTextEdit.java) <br>
274274
Syntax highlighting text editor for ImGui.
275-
- [ImGuiFileDialog](https://github.com/aiekick/ImGuiFileDialog/tree/4d42dfba125cbd4780a90fbc5f75e7dfbae64060) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example/src/main/java/ExampleImGuiFileDialog.java) <br>
275+
- [ImGuiFileDialog](https://github.com/aiekick/ImGuiFileDialog/tree/4d42dfba125cbd4780a90fbc5f75e7dfbae64060) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example/src/main/java/ExampleImGuiFileDialog.java) <br>
276276
A file selection dialog built for ImGui.
277-
- [ImGui Club MemoryEditor](https://github.com/ocornut/imgui_club/tree/d4cd9896e15a03e92702a578586c3f91bbde01e8) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.2/example/src/main/java/ExampleImGuiMemoryEditor.java) <br>
277+
- [ImGui Club MemoryEditor](https://github.com/ocornut/imgui_club/tree/d4cd9896e15a03e92702a578586c3f91bbde01e8) | [Example](https://github.com/SpaiR/imgui-java/blob/v1.86.3/example/src/main/java/ExampleImGuiMemoryEditor.java) <br>
278278
Memory editor and viewer for ImGui.
279279

280280
## Freetype
@@ -306,7 +306,7 @@ Don't forget to make clear for your Linux/Mac users, that they will need to inst
306306
307307
ext {
308308
lwjglVersion = '3.3.1'
309-
imguiVersion = '1.86.2'
309+
imguiVersion = '1.86.3'
310310
}
311311
312312
dependencies {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.86.2
1+
version=1.86.3

0 commit comments

Comments
 (0)