Skip to content

Commit f528113

Browse files
committed
0.7.7
1 parent cabad87 commit f528113

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ plugins {
44
id 'maven'
55
id 'java'
66
id 'java-library'
7-
id "org.jetbrains.kotlin.jvm" version "1.3.50"
8-
id "com.github.johnrengelman.shadow" version '5.1.0'
7+
id "org.jetbrains.kotlin.jvm" version "1.3.61"
8+
id "com.github.johnrengelman.shadow" version '5.2.0'
99
}
1010

1111
// jitpack
@@ -15,14 +15,14 @@ ext {
1515
moduleName = "${group}.uno"
1616
kot = 'org.jetbrains.kotlin:kotlin'
1717
kx = "com.github.kotlin-graphics"
18-
kotlin_version = '1.3.50'
19-
kotlintest_version = '3.4.0'
20-
vkk_version = 'dfe678f2556b04b0a3384c62ac0614d892cc7b3d'
21-
gln_version = '7d31a75d53594f70f9111b5617c83b1b9095a01f'
22-
gli_version = '0ea3295ed86b66d548dc71ef10bbf0259f49e0a7'
23-
glm_version = 'a484ec1181813912c5a69d3a6706a994ca138eff'
24-
unsigned_version = 'c81c2e39fb9e10403650c1b371b8573fc745bfb4'
25-
kool_version = '0ef9ad97d0c709de3cda4d7f05e74bff883b00a6'
18+
kotlin_version = '1.3.61'
19+
kotlintest_version = '3.4.2'
20+
vkk_version = '6eddb77616e18c68ab25d6bbdbbf96df8c2aec0f'
21+
gln_version = '880960aeaf813f72242f03458cf44e606d4c05f0'
22+
gli_version = '57d313a2c7691b3b65168fe21eb50433a1358656'
23+
glm_version = '1b4ac18dd1a3c23440d3f33596688aac60bc0141'
24+
unsigned_version = '18131d0fe0b7465a145a4502d31452c5ae0e59a1'
25+
kool_version = 'fcf04b2c03b8949d9d9a8b0a580082e927903510'
2626
lwjgl_version = "3.2.3"
2727
lwjgl_natives = current() == WINDOWS ? "windows" : current() == LINUX ? "linux" : "macos"
2828
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip

uno-awt/src/main/kotlin/uno/awt/LwjglCanvas.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ abstract class LwjglCanvas(val glDebug: Boolean = false) : Canvas() {
165165
frames++
166166
if (time > 1000) {
167167
time %= 1000
168-
println("fps = $frames")
168+
if (awtDebug) println("fps = $frames")
169169
frames = 0
170170
}
171171
}
@@ -279,7 +279,7 @@ abstract class LwjglCanvas(val glDebug: Boolean = false) : Canvas() {
279279
}
280280

281281
fun destroyInternal() {
282-
println("destroyInternal")
282+
if (awtDebug) println("destroyInternal")
283283

284284
glfwWindow.inContext {
285285
destroy()

uno-core/src/main/kotlin/uno/kotlin/util.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ operator fun IntBuffer.plusAssign(i: Int) {
7272
put(i)
7373
}
7474

75-
val version = "0.7.6"
75+
val version = "0.7.7"

0 commit comments

Comments
 (0)