Browse Source

Upgrade to OPENRNDR 0.3.44

master
Edwin Jakobs 4 years ago
parent
commit
39cacd7f70
No known key found for this signature in database GPG Key ID: 5F1F795A1DF3BAF1
  1. 18
      build.gradle.kts
  2. 2
      gradle/wrapper/gradle-wrapper.properties

18
build.gradle.kts

@ -5,7 +5,7 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
/* the name of this project, default is the template version but you are free to change these */ /* the name of this project, default is the template version but you are free to change these */
group = "org.openrndr.template" group = "org.openrndr.template"
version = "0.3.13" version = "0.3.14"
val applicationMainClass = "TemplateProgramKt" val applicationMainClass = "TemplateProgramKt"
@ -58,10 +58,10 @@ val openrndrFeatures = setOf(
/* Which version of OPENRNDR and ORX should be used? */ /* Which version of OPENRNDR and ORX should be used? */
val openrndrUseSnapshot = false val openrndrUseSnapshot = false
val openrndrVersion = if (openrndrUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.43" val openrndrVersion = if (openrndrUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.44"
val orxUseSnapshot = false val orxUseSnapshot = false
val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.52" val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.53"
//<editor-fold desc="This is code for OPENRNDR, no need to edit this .. most of the times"> //<editor-fold desc="This is code for OPENRNDR, no need to edit this .. most of the times">
val supportedPlatforms = setOf("windows", "macos", "linux-x64", "linux-arm64") val supportedPlatforms = setOf("windows", "macos", "linux-x64", "linux-arm64")
@ -94,13 +94,13 @@ enum class Logging {
/* What type of logging should this project use? */ /* What type of logging should this project use? */
val applicationLogging = Logging.FULL val applicationLogging = Logging.FULL
val kotlinVersion = "1.3.72" val kotlinVersion = "1.4.0"
plugins { plugins {
java java
kotlin("jvm") version("1.3.72") kotlin("jvm") version("1.4.0")
id("com.github.johnrengelman.shadow") version ("6.0.0") id("com.github.johnrengelman.shadow") version ("6.1.0")
id("org.beryx.runtime") version ("1.9.1") id("org.beryx.runtime") version ("1.11.4")
} }
repositories { repositories {
@ -143,8 +143,8 @@ dependencies {
implementation(openrndr("extensions")) implementation(openrndr("extensions"))
implementation(openrndr("filter")) implementation(openrndr("filter"))
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.3.7") implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.3.9")
implementation("io.github.microutils", "kotlin-logging","1.7.10") implementation("io.github.microutils", "kotlin-logging","1.12.0")
when(applicationLogging) { when(applicationLogging) {
Logging.NONE -> { Logging.NONE -> {

2
gradle/wrapper/gradle-wrapper.properties

@ -1,5 +1,5 @@
#Thu Aug 01 12:32:31 CEST 2019 #Thu Aug 01 12:32:31 CEST 2019
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

Loading…
Cancel
Save