mirror of
				https://github.com/InsanusMokrassar/KSLog.git
				synced 2025-10-31 03:20:04 +00:00 
			
		
		
		
	Compare commits
	
		
			41 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 8c0968ba86 | |||
| 526de46a98 | |||
| 0af8c78e37 | |||
| 6840598e04 | |||
| 7a2d070ee3 | |||
| 92651d3ba6 | |||
| b8c72f1131 | |||
| 9b92fa29f4 | |||
| 42ced6edd2 | |||
| dd3e4c4c2a | |||
| f528909915 | |||
| b3919c8439 | |||
| d1dd159e36 | |||
| 3db55982e9 | |||
| 8e477b1056 | |||
| 480d2c8132 | |||
| a2a73dfe83 | |||
| 4528918347 | |||
|  | 9ef93724ad | ||
| dccbd13788 | |||
| 8bb34d6842 | |||
| cff3f71de7 | |||
| aab0ac064f | |||
| d2909ed5f0 | |||
| 81eba88ce9 | |||
| a73f0d132c | |||
| bd87184f81 | |||
| 7228e81344 | |||
| ac828b1af7 | |||
| a8c85b9614 | |||
| 98fbf43d4d | |||
| ef8a3e1500 | |||
| 3edbb78d56 | |||
| 663395ccbe | |||
| ecd2b08c69 | |||
| f5e50d00a2 | |||
| a1784dc6af | |||
| 4d6410c870 | |||
| 3a4035f1a6 | |||
| 86bf9468ba | |||
| 24adeef67b | 
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -1,4 +1,6 @@ | |||||||
| .idea | .idea | ||||||
|  | .kotlin | ||||||
|  | kotlin-js-store/ | ||||||
| out/* | out/* | ||||||
| *.iml | *.iml | ||||||
| target | target | ||||||
| @@ -12,5 +14,6 @@ out/ | |||||||
| secret.gradle | secret.gradle | ||||||
| local.* | local.* | ||||||
| local/ | local/ | ||||||
|  | **/*.local.* | ||||||
|  |  | ||||||
| publishing.sh | publishing.sh | ||||||
|   | |||||||
							
								
								
									
										39
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										39
									
								
								CHANGELOG.md
									
									
									
									
									
								
							| @@ -1,5 +1,44 @@ | |||||||
| # Changelog | # Changelog | ||||||
|  |  | ||||||
|  | ## 1.5.1 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `2.2.20` | ||||||
|  |  | ||||||
|  | ## 1.5.0 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `2.2.0` | ||||||
|  |  | ||||||
|  | ## 1.4.2 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `2.1.21` | ||||||
|  | * Android SDK Level: `36` | ||||||
|  |  | ||||||
|  | ## 1.4.1 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `2.1.10` | ||||||
|  |  | ||||||
|  | ## 1.4.0 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `2.1.0` | ||||||
|  |  | ||||||
|  | ## 1.3.6 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `2.0.20` | ||||||
|  |  | ||||||
|  | ## 1.3.5 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `2.0.10` | ||||||
|  | * Android SDK Level: `35` | ||||||
|  |  | ||||||
|  | ## 1.3.4 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `1.9.24` | ||||||
|  | * Native realization of `KSLoggerDefaultPlatformLoggerLambda` now is common for all native targets | ||||||
|  |  | ||||||
|  | ## 1.3.3 | ||||||
|  |  | ||||||
|  | * `Kotlin`: `1.9.23` | ||||||
|  |  | ||||||
| ## 1.3.2 | ## 1.3.2 | ||||||
|  |  | ||||||
| * `Kotlin`: `1.9.22` | * `Kotlin`: `1.9.22` | ||||||
|   | |||||||
							
								
								
									
										30
									
								
								build.gradle
									
									
									
									
									
								
							
							
						
						
									
										30
									
								
								build.gradle
									
									
									
									
									
								
							| @@ -20,9 +20,29 @@ plugins { | |||||||
|     alias(libs.plugins.kotlin.multiplatform) |     alias(libs.plugins.kotlin.multiplatform) | ||||||
|     alias(libs.plugins.kotlin.dokka) |     alias(libs.plugins.kotlin.dokka) | ||||||
|     alias(libs.plugins.versions) |     alias(libs.plugins.versions) | ||||||
|  |     alias(libs.plugins.nmcp.aggregation) | ||||||
| } | } | ||||||
|  |  | ||||||
| apply plugin: "com.android.library" | apply plugin: "com.android.library" | ||||||
|  | apply from: "defaultAndroidSettings.gradle" | ||||||
|  |  | ||||||
|  | apply from: "github_release.gradle" | ||||||
|  | apply from: "publish.gradle" | ||||||
|  | apply from: "dokka.gradle" | ||||||
|  |  | ||||||
|  |  | ||||||
|  | if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) { | ||||||
|  |     nmcpAggregation { | ||||||
|  |         centralPortal { | ||||||
|  |             username = project.hasProperty('SONATYPE_USER') ? project.property('SONATYPE_USER') : System.getenv('SONATYPE_USER') | ||||||
|  |             password = project.hasProperty('SONATYPE_PASSWORD') ? project.property('SONATYPE_PASSWORD') : System.getenv('SONATYPE_PASSWORD') | ||||||
|  |             validationTimeout = Duration.ofHours(4) | ||||||
|  |             publishingType = System.getenv('PUBLISHING_TYPE') != "" ? System.getenv('PUBLISHING_TYPE') : "USER_MANAGED" | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         publishAllProjectsProbablyBreakingProjectIsolation() | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
| project.version = "$version" | project.version = "$version" | ||||||
| project.group = "$group" | project.group = "$group" | ||||||
| @@ -73,6 +93,10 @@ kotlin { | |||||||
|             dependencies { |             dependencies { | ||||||
|                 implementation libs.kotlin.test.common |                 implementation libs.kotlin.test.common | ||||||
|                 implementation libs.kotlin.test.annotations.common |                 implementation libs.kotlin.test.annotations.common | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         jvmTest { | ||||||
|  |             dependencies { | ||||||
|                 implementation libs.kotlin.test.junit |                 implementation libs.kotlin.test.junit | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
| @@ -83,9 +107,3 @@ java { | |||||||
|     sourceCompatibility = JavaVersion.VERSION_1_8 |     sourceCompatibility = JavaVersion.VERSION_1_8 | ||||||
|     targetCompatibility = JavaVersion.VERSION_1_8 |     targetCompatibility = JavaVersion.VERSION_1_8 | ||||||
| } | } | ||||||
|  |  | ||||||
| apply from: "defaultAndroidSettings.gradle" |  | ||||||
|  |  | ||||||
| apply from: "github_release.gradle" |  | ||||||
| apply from: "publish.gradle" |  | ||||||
| apply from: "dokka.gradle" |  | ||||||
|   | |||||||
| @@ -11,12 +11,20 @@ private String getCurrentVersionChangelog() { | |||||||
|     return changelogDataOS.toString().trim() |     return changelogDataOS.toString().trim() | ||||||
| } | } | ||||||
|  |  | ||||||
| if (new File(projectDir, "secret.gradle").exists()) { |  | ||||||
|     apply from: './secret.gradle' | def githubTokenVariableName = "GITHUB_RELEASE_TOKEN" | ||||||
|  | def githubTokenVariableFromEnv = System.getenv(githubTokenVariableName) | ||||||
|  |  | ||||||
|  | def secretFile = new File(projectDir, "secret.gradle") | ||||||
|  | if (secretFile.exists() || project.hasProperty(githubTokenVariableName) || (githubTokenVariableFromEnv != "" && githubTokenVariableFromEnv != null)) { | ||||||
|  |     if (secretFile.exists()) { | ||||||
|  |         apply from: './secret.gradle' | ||||||
|  |     } | ||||||
|     apply plugin: "com.github.breadmoirai.github-release" |     apply plugin: "com.github.breadmoirai.github-release" | ||||||
|  |     def githubReleaseToken = project.hasProperty(githubTokenVariableName) ? project.property(githubTokenVariableName).toString() : githubTokenVariableFromEnv | ||||||
|  |  | ||||||
|     githubRelease { |     githubRelease { | ||||||
|         token "${project.property('GITHUB_RELEASE_TOKEN')}" |         token githubReleaseToken | ||||||
|  |  | ||||||
|         owner = "InsanusMokrassar" |         owner = "InsanusMokrassar" | ||||||
|         repo = "KSLog" |         repo = "KSLog" | ||||||
|   | |||||||
| @@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m | |||||||
| # Project data | # Project data | ||||||
|  |  | ||||||
| group=dev.inmo | group=dev.inmo | ||||||
| version=1.3.2 | version=1.5.1 | ||||||
| android_code_version=29 | android_code_version=38 | ||||||
|   | |||||||
| @@ -1,20 +1,21 @@ | |||||||
| [versions] | [versions] | ||||||
|  |  | ||||||
| kotlin = "1.9.22" | kotlin = "2.2.20" | ||||||
| kotlin-gradle-plugin = "8.2.1" | kotlin-gradle-plugin = "8.10.+" | ||||||
|  |  | ||||||
| versions = "0.50.0" | nmcp = "1.2.0" | ||||||
|  | versions = "0.51.0" | ||||||
|  |  | ||||||
| dokka = "1.9.10" | dokka = "2.0.0" | ||||||
|  |  | ||||||
| dexcount = "4.0.0" | dexcount = "4.0.0" | ||||||
| junit_version = "4.12" | junit_version = "4.12" | ||||||
| test_ext_junit_version = "1.1.5" | test_ext_junit_version = "1.3.0" | ||||||
| espresso_core = "3.5.1" | espresso_core = "3.7.0" | ||||||
|  |  | ||||||
| android-minSdk = "21" | android-minSdk = "21" | ||||||
| android-compileSdk = "34" | android-compileSdk = "36" | ||||||
| android-buildTools = "34.0.0" | android-buildTools = "36.0.0" | ||||||
|  |  | ||||||
| github-release = "2.5.2" | github-release = "2.5.2" | ||||||
|  |  | ||||||
| @@ -42,3 +43,5 @@ kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref | |||||||
| kotlin-dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } | kotlin-dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } | ||||||
|  |  | ||||||
| versions = { id = "com.github.ben-manes.versions", version.ref = "versions" } | versions = { id = "com.github.ben-manes.versions", version.ref = "versions" } | ||||||
|  |  | ||||||
|  | nmcp-aggregation = { id = "com.gradleup.nmcp.aggregation", version.ref = "nmcp" } | ||||||
|   | |||||||
							
								
								
									
										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-8.5-bin.zip | distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip | ||||||
| zipStoreBase=GRADLE_USER_HOME | zipStoreBase=GRADLE_USER_HOME | ||||||
| zipStorePath=wrapper/dists | zipStorePath=wrapper/dists | ||||||
|   | |||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -1,3 +1,4 @@ | |||||||
|  |  | ||||||
| apply plugin: 'maven-publish' | apply plugin: 'maven-publish' | ||||||
|  |  | ||||||
| task javadocsJar(type: Jar) { | task javadocsJar(type: Jar) { | ||||||
| @@ -19,66 +20,47 @@ publishing { | |||||||
|             } |             } | ||||||
|  |  | ||||||
|             developers { |             developers { | ||||||
|  |                 developer { | ||||||
|  |                     id = "Akkihi" | ||||||
|  |                     name = "Akkihi" | ||||||
|  |                     email = "akkihiguy@gmail.com" | ||||||
|  |                 } | ||||||
|  |  | ||||||
|                     developer { |                 developer { | ||||||
|                         id = "Akkihi" |                     id = "InsanusMokrassar" | ||||||
|                         name = "Akkihi" |                     name = "InsanusMokrassar" | ||||||
|                         email = "akkihiguy@gmail.com" |                     email = "ovsyannikov.alexey95@gmail.com" | ||||||
|                     } |                 } | ||||||
|                  |  | ||||||
|  |  | ||||||
|                     developer { |  | ||||||
|                         id = "InsanusMokrassar" |  | ||||||
|                         name = "InsanusMokrassar" |  | ||||||
|                         email = "ovsyannikov.alexey95@gmail.com" |  | ||||||
|                     } |  | ||||||
|                  |  | ||||||
|             } |             } | ||||||
|  |  | ||||||
|             licenses { |             licenses { | ||||||
|                  |                 license { | ||||||
|                     license { |                     name = "MIT License" | ||||||
|                         name = "MIT License" |                     url = "https://opensource.org/licenses/MIT" | ||||||
|                         url = "https://opensource.org/licenses/MIT" |                 } | ||||||
|                     } |  | ||||||
|                  |  | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         repositories { |     } | ||||||
|             if ((project.hasProperty('GITHUBPACKAGES_USER') || System.getenv('GITHUBPACKAGES_USER') != null) && (project.hasProperty('GITHUBPACKAGES_PASSWORD') || System.getenv('GITHUBPACKAGES_PASSWORD') != null)) { |     repositories { | ||||||
|                 maven { |         if ((project.hasProperty('INMONEXUS_USER') || System.getenv('INMONEXUS_USER') != null) && (project.hasProperty('INMONEXUS_PASSWORD') || System.getenv('INMONEXUS_PASSWORD') != null)) { | ||||||
|                     name = "GithubPackages" |             maven { | ||||||
|                     url = uri("https://maven.pkg.github.com/InsanusMokrassar/KSLog") |                 name = "InmoNexus" | ||||||
|              |                 url = uri("https://nexus.inmo.dev/repository/maven-releases/") | ||||||
|                     credentials { |  | ||||||
|                         username = project.hasProperty('GITHUBPACKAGES_USER') ? project.property('GITHUBPACKAGES_USER') : System.getenv('GITHUBPACKAGES_USER') |  | ||||||
|                         password = project.hasProperty('GITHUBPACKAGES_PASSWORD') ? project.property('GITHUBPACKAGES_PASSWORD') : System.getenv('GITHUBPACKAGES_PASSWORD') |  | ||||||
|                     } |  | ||||||
|          |          | ||||||
|  |                 credentials { | ||||||
|  |                     username = project.hasProperty('INMONEXUS_USER') ? project.property('INMONEXUS_USER') : System.getenv('INMONEXUS_USER') | ||||||
|  |                     password = project.hasProperty('INMONEXUS_PASSWORD') ? project.property('INMONEXUS_PASSWORD') : System.getenv('INMONEXUS_PASSWORD') | ||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|             if ((project.hasProperty('INMONEXUS_USER') || System.getenv('INMONEXUS_USER') != null) && (project.hasProperty('INMONEXUS_PASSWORD') || System.getenv('INMONEXUS_PASSWORD') != null)) { |         } | ||||||
|                 maven { |         if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) { | ||||||
|                     name = "InmoNexus" |             maven { | ||||||
|                     url = uri("https://nexus.inmo.dev/repository/maven-releases/") |                 name = "sonatype" | ||||||
|              |                 url = uri("https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/") | ||||||
|                     credentials { |  | ||||||
|                         username = project.hasProperty('INMONEXUS_USER') ? project.property('INMONEXUS_USER') : System.getenv('INMONEXUS_USER') |  | ||||||
|                         password = project.hasProperty('INMONEXUS_PASSWORD') ? project.property('INMONEXUS_PASSWORD') : System.getenv('INMONEXUS_PASSWORD') |  | ||||||
|                     } |  | ||||||
|              |  | ||||||
|                 } |  | ||||||
|             } |  | ||||||
|             if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) { |  | ||||||
|                 maven { |  | ||||||
|                     name = "sonatype" |  | ||||||
|                     url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") |  | ||||||
|              |  | ||||||
|                     credentials { |  | ||||||
|                         username = project.hasProperty('SONATYPE_USER') ? project.property('SONATYPE_USER') : System.getenv('SONATYPE_USER') |  | ||||||
|                         password = project.hasProperty('SONATYPE_PASSWORD') ? project.property('SONATYPE_PASSWORD') : System.getenv('SONATYPE_PASSWORD') |  | ||||||
|                     } |  | ||||||
|          |          | ||||||
|  |                 credentials { | ||||||
|  |                     username = project.hasProperty('SONATYPE_USER') ? project.property('SONATYPE_USER') : System.getenv('SONATYPE_USER') | ||||||
|  |                     password = project.hasProperty('SONATYPE_PASSWORD') ? project.property('SONATYPE_PASSWORD') : System.getenv('SONATYPE_PASSWORD') | ||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| {"licenses":[{"id":"MIT","title":"MIT License","url":"https://opensource.org/licenses/MIT"}],"mavenConfig":{"name":"${project.name}","description":"Simple logging library for kotlin","url":"https://github.com/InsanusMokrassar/KSLog","vcsUrl":"https://github.com/InsanusMokrassar/KSLog.git","developers":[{"id":"Akkihi","name":"Akkihi","eMail":"akkihiguy@gmail.com"},{"id":"InsanusMokrassar","name":"InsanusMokrassar","eMail":"ovsyannikov.alexey95@gmail.com"}],"repositories":[{"name":"GithubPackages","url":"https://maven.pkg.github.com/InsanusMokrassar/KSLog"},{"name":"InmoNexus","url":"https://nexus.inmo.dev/repository/maven-releases/"},{"name":"sonatype","url":"https://oss.sonatype.org/service/local/staging/deploy/maven2/"}],"gpgSigning":{"type":"dev.inmo.kmppscriptbuilder.core.models.GpgSigning.Optional"}}} | {"licenses":[{"id":"MIT","title":"MIT License","url":"https://opensource.org/licenses/MIT"}],"mavenConfig":{"name":"${project.name}","description":"Simple logging library for kotlin","url":"https://github.com/InsanusMokrassar/KSLog","vcsUrl":"https://github.com/InsanusMokrassar/KSLog.git","developers":[{"id":"Akkihi","name":"Akkihi","eMail":"akkihiguy@gmail.com"},{"id":"InsanusMokrassar","name":"InsanusMokrassar","eMail":"ovsyannikov.alexey95@gmail.com"}],"repositories":[{"name":"InmoNexus","url":"https://nexus.inmo.dev/repository/maven-releases/"},{"name":"sonatype","url":"https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"}],"gpgSigning":{"type":"dev.inmo.kmppscriptbuilder.core.models.GpgSigning.Optional"}}} | ||||||
| @@ -1,4 +0,0 @@ | |||||||
| package dev.inmo.kslog.common |  | ||||||
|  |  | ||||||
| actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = |  | ||||||
|     printlnLogging |  | ||||||
| @@ -1,4 +0,0 @@ | |||||||
| package dev.inmo.kslog.common |  | ||||||
|  |  | ||||||
| actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = |  | ||||||
|     printlnLogging |  | ||||||
| @@ -1,4 +0,0 @@ | |||||||
| package dev.inmo.kslog.common |  | ||||||
|  |  | ||||||
| actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit = |  | ||||||
|     printlnLogging |  | ||||||
		Reference in New Issue
	
	Block a user