mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-12-25 22:35:47 +00:00
Compare commits
1 Commits
v1.2.3
...
1.2.1-test
| Author | SHA1 | Date | |
|---|---|---|---|
| fe9cdc19d3 |
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1,16 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.2.3
|
|
||||||
|
|
||||||
* `Kotlin`: `1.9.20`
|
|
||||||
|
|
||||||
## 1.2.2
|
|
||||||
|
|
||||||
**wasm32 target has been removed**
|
|
||||||
**mingwX86 target has been removed**
|
|
||||||
|
|
||||||
* `Kotlin`: `1.9.20-RC`
|
|
||||||
|
|
||||||
## 1.2.1
|
## 1.2.1
|
||||||
|
|
||||||
* `Kotlin`: `1.9.10`
|
* `Kotlin`: `1.9.10`
|
||||||
|
|||||||
@@ -61,7 +61,9 @@ kotlin {
|
|||||||
nodejs()
|
nodejs()
|
||||||
d8()
|
d8()
|
||||||
}
|
}
|
||||||
|
wasm32()
|
||||||
mingwX64()
|
mingwX64()
|
||||||
|
mingwX86()
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
|
|||||||
@@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m
|
|||||||
# Project data
|
# Project data
|
||||||
|
|
||||||
group=dev.inmo
|
group=dev.inmo
|
||||||
version=1.2.3
|
version=1.2.1-test-version
|
||||||
android_code_version=25
|
android_code_version=23
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
[versions]
|
[versions]
|
||||||
|
|
||||||
kotlin = "1.9.20"
|
kotlin = "1.9.10"
|
||||||
kotlin-gradle-plugin = "7.4.2"
|
kotlin-gradle-plugin = "8.1.1"
|
||||||
|
|
||||||
versions = "0.49.0"
|
versions = "0.48.0"
|
||||||
|
|
||||||
dokka = "1.9.10"
|
dokka = "1.9.0"
|
||||||
|
|
||||||
dexcount = "4.0.0"
|
dexcount = "4.0.0"
|
||||||
junit_version = "4.12"
|
junit_version = "4.12"
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
4
src/wasm32Main/kotlin/defaultLogging.kt
Normal file
4
src/wasm32Main/kotlin/defaultLogging.kt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
package dev.inmo.kslog.common
|
||||||
|
|
||||||
|
internal actual val defaultLogging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit
|
||||||
|
get() = printlnLogging
|
||||||
4
src/wasmMain/kotlin/defaultLogging.kt
Normal file
4
src/wasmMain/kotlin/defaultLogging.kt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
package dev.inmo.kslog.common
|
||||||
|
|
||||||
|
internal actual val defaultLogging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit
|
||||||
|
get() = printlnLogging
|
||||||
Reference in New Issue
Block a user