Compare commits

..

3 Commits

Author SHA1 Message Date
edwin
c0205c03b8 Bumped orx to 0.3.36 2019-11-04 17:02:22 +01:00
edwin
d31446821f Version bump 2019-10-07 17:24:58 +02:00
edwin
71f315f5ca Version bump 2019-10-07 17:10:49 +02:00

View File

@@ -8,7 +8,7 @@ plugins {
kotlin("jvm") version("1.3.50")
}
group = "org.openrndr.template"
version = "0.3.4"
version = "0.3.5"
val applicationMainClass = "TemplateProgramKt"
val applicationFullLogging = false
@@ -29,9 +29,9 @@ val panelUseSnapshot = false
val panelVersion = if (panelUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.17-m3"
val orxUseSnapshot = false
val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.34"
val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.36"
// supported features are: orx-camera, orx-compositor,orx-easing, orx-filter-extension,orx-file-watcher, orx-kinect-v1
// supported features are: orx-camera, orx-compositor,orx-easing, orx-filter-extension,orx-file-watcher,
// orx-integral-image, orx-interval-tree, orx-jumpflood,orx-kdtree, orx-mesh-generators,orx-midi, orx-no-clear,
// orx-noise, orx-obj, orx-olive
@@ -57,10 +57,6 @@ fun DependencyHandler.openrndrNatives(module: String): Any {
return "org.openrndr:openrndr-$module-natives-$openrndrOs:$openrndrVersion"
}
fun DependencyHandler.orxNatives(module: String): Any {
return "org.openrndr.extra:$module-natives-$openrndrOs:$orxVersion"
}
dependencies {
runtime(openrndr("gl3"))
runtime(openrndrNatives("gl3"))
@@ -70,7 +66,7 @@ dependencies {
compile(openrndr("extensions"))
compile(openrndr("filter"))
compile("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.3.0-RC")
compile("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.3.0")
compile("io.github.microutils", "kotlin-logging","1.7.2")
@@ -99,10 +95,6 @@ dependencies {
compile("org.jetbrains.kotlin", "kotlin-scripting-compiler-embeddable")
}
if ("orx-kinect-v1" in orxFeatures) {
runtime(orxNatives("orx-kinect-v1"))
}
implementation(kotlin("stdlib-jdk8"))
testCompile("junit", "junit", "4.12")
}
@@ -138,4 +130,4 @@ tasks.create("zipDistribution", Zip::class.java) {
tasks.create("run", JavaExec::class.java) {
main = applicationMainClass
classpath = sourceSets.main.get().runtimeClasspath
}.dependsOn(tasks.build)
}.dependsOn(tasks.build)