From 575592d5203ae8af9a9572276ec73900de6aeb27 Mon Sep 17 00:00:00 2001 From: LeHaine Date: Mon, 7 Feb 2022 19:56:39 -0500 Subject: [PATCH] update version to 0.1.0 --- gradle.properties | 2 +- samples/build.gradle.kts | 23 ----------------------- 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/gradle.properties b/gradle.properties index 9d79745be..86642b2f0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ kotlin.code.style=official kotlin.mpp.enableGranularSourceSetsMetadata=true kotlin.native.enableDependencyPropagation=false kotlin.js.generate.executable.default=false -littleKtVersion=0.0.1-SNAPSHOT +littleKtVersion=0.1.0 lwjglVersion=3.2.3 pngDecoderVersion=1.0 mp3DecoderVersion=1.0.1 diff --git a/samples/build.gradle.kts b/samples/build.gradle.kts index 41d461f15..5f4db298e 100644 --- a/samples/build.gradle.kts +++ b/samples/build.gradle.kts @@ -1,19 +1,10 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinJsCompilerType import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType -//buildscript { -// repositories { -// mavenLocal() -// } -// dependencies { -// classpath("com.lehaine.littlekt.gradle:texturepacker:0.0.1-SNAPSHOT") -// } -//} plugins { kotlin("multiplatform") kotlin("plugin.serialization") version "1.6.0" - //id("com.lehaine.littlekt.gradle.texturepacker") version "0.0.1-SNAPSHOT" } repositories { @@ -21,20 +12,6 @@ repositories { maven(url = "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") } -//littleKt { -// texturePacker { -// inputDir = "../art/export_tiles/raw/" -// outputDir = "src/commonMain/resources/" -// outputName = "tiles.atlas" -// -// packing { -// outputPagesAsPowerOfTwo = false -// allowRotation = false -// maxWidth = 128 -// maxHeight = 128 -// } -// } -//} kotlin { jvm {