Skip to content

Commit e941706

Browse files
committed
0.8.3.0-20
1 parent c8a6d81 commit e941706

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,15 @@ public static int createTexture(String filename) {
125125

126126
### How to retrieve it:
127127

128-
You can find all the instructions by [mary](https://github.com/kotlin-graphics/mary)
128+
```kotlin
129+
repositories {
130+
maven("https://raw.githubusercontent.com/kotlin-graphics/mary/master")
131+
// or with magik plugin
132+
//github("kotlin-graphics/mary")
133+
}
134+
dependencies {
135+
implementation("kotlin.graphics:gli:0.8.3.0-20")
136+
}
137+
```
138+
139+
You can find more info by [mary](https://github.com/kotlin-graphics/mary)

build.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ plugins {
99
id("org.lwjgl.plugin") version "0.0.34"
1010
id("elect86.magik") version "0.3.2"
1111
`maven-publish`
12+
// id("com.github.johnrengelman.shadow") version "8.1.1"
1213
}
1314

1415
repositories {
@@ -18,7 +19,7 @@ repositories {
1819

1920
dependencies {
2021

21-
api("kotlin.graphics:glm:0.9.9.1-6")
22+
api("kotlin.graphics:glm:0.9.9.1-7")
2223

2324
// https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-core
2425
listOf(/*"-batik",*/ "-bmp", "-core", "-icns", "-iff", "-jpeg", "-metadata", "-pcx", "-pdf", "-pict", "-pnm",
@@ -38,9 +39,7 @@ kotlin.jvmToolchain { languageVersion.set(JavaLanguageVersion.of(8)) }
3839

3940
tasks {
4041
withType<KotlinCompile<*>>().all {
41-
kotlinOptions {
42-
freeCompilerArgs += listOf("-opt-in=kotlin.RequiresOptIn")
43-
}
42+
kotlinOptions { freeCompilerArgs += listOf("-opt-in=kotlin.RequiresOptIn") }
4443
}
4544
test { useJUnitPlatform() }
4645
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ pluginManagement {
99

1010
gradle.rootProject {
1111
group = "kotlin.graphics"
12-
version = "0.8.3.0-19"
12+
version = "0.8.3.0-20"
1313
}

src/main/kotlin/gli_/gli.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ const val GLI_VERSION_MAJOR = 0
6767
const val GLI_VERSION_MINOR = 8
6868
const val GLI_VERSION_PATCH = 3
6969
const val GLI_VERSION_REVISION = 0
70-
const val GLI_VERSION_BUILD = 19
70+
const val GLI_VERSION_BUILD = 20
7171
const val GLI_VERSION = GLI_VERSION_MAJOR * 1_000 + GLI_VERSION_MINOR * 100 + GLI_VERSION_PATCH * 10 + GLI_VERSION_REVISION + GLI_VERSION_BUILD / 10f

0 commit comments

Comments
 (0)