Skip to content

Commit

Permalink
[ ver ] 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Jan 20, 2021
1 parent 0fbb696 commit c589f03
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## v0.17.0

+ Fix a binding issue of `GlfwUtil` (unused/unmaintained, but it was wrongly written)
+ Add `imgui.setWindowTitle` with 3 overloads
+ Add `fileDialog.selections`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ repositories {
}
// ...
dependencies {
String jimguiVersion = 'v0.16.0'
String jimguiVersion = 'v0.17.0'
implementation "org.ice1000.jimgui:core:$jimguiVersion" // basic functionality
implementation "org.ice1000.jimgui:kotlin-dsl:$jimguiVersion" // kotlin dsl wrapper
}
Expand All @@ -214,7 +214,7 @@ tasks.withType(JavaExec).configureEach {
```kotlin
import org.apache.tools.ant.taskdefs.condition.Os
dependencies {
val jimguiVersion = "v0.16.0"
val jimguiVersion = "v0.17.0"
implementation("org.ice1000.jimgui:core:$jimguiVersion") // basic functionality
implementation("org.ice1000.jimgui:kotlin-dsl:$jimguiVersion") // kotlin dsl wrapper
}
Expand All @@ -240,7 +240,7 @@ tasks.withType<JavaExec>().configureEach {
<groupId>org.ice1000.jimgui</groupId>
<!-- basic functionality -->
<artifactId>core</artifactId>
<version>v0.16.0</version>
<version>v0.17.0</version>
<type>pom</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ val isCI = !System.getenv("CI").isNullOrBlank()

allprojects {
group = "org.ice1000.jimgui"
version = "v0.16.0"
version = "v0.17.0"

apply { plugin("java") }

Expand Down

0 comments on commit c589f03

Please sign in to comment.