Skip to content

Commit

Permalink
0.8.3.0-20
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed Apr 4, 2023
1 parent c8a6d81 commit e941706
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,15 @@ public static int createTexture(String filename) {

### How to retrieve it:

You can find all the instructions by [mary](https://github.com/kotlin-graphics/mary)
```kotlin
repositories {
maven("https://raw.githubusercontent.com/kotlin-graphics/mary/master")
// or with magik plugin
//github("kotlin-graphics/mary")
}
dependencies {
implementation("kotlin.graphics:gli:0.8.3.0-20")
}
```

You can find more info by [mary](https://github.com/kotlin-graphics/mary)
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ plugins {
id("org.lwjgl.plugin") version "0.0.34"
id("elect86.magik") version "0.3.2"
`maven-publish`
// id("com.github.johnrengelman.shadow") version "8.1.1"
}

repositories {
Expand All @@ -18,7 +19,7 @@ repositories {

dependencies {

api("kotlin.graphics:glm:0.9.9.1-6")
api("kotlin.graphics:glm:0.9.9.1-7")

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

tasks {
withType<KotlinCompile<*>>().all {
kotlinOptions {
freeCompilerArgs += listOf("-opt-in=kotlin.RequiresOptIn")
}
kotlinOptions { freeCompilerArgs += listOf("-opt-in=kotlin.RequiresOptIn") }
}
test { useJUnitPlatform() }
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ pluginManagement {

gradle.rootProject {
group = "kotlin.graphics"
version = "0.8.3.0-19"
version = "0.8.3.0-20"
}
2 changes: 1 addition & 1 deletion src/main/kotlin/gli_/gli.kt
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ const val GLI_VERSION_MAJOR = 0
const val GLI_VERSION_MINOR = 8
const val GLI_VERSION_PATCH = 3
const val GLI_VERSION_REVISION = 0
const val GLI_VERSION_BUILD = 19
const val GLI_VERSION_BUILD = 20
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 comments on commit e941706

Please sign in to comment.