Skip to content

Commit cb9ef8c

Browse files
authored
Merge pull request #18 from SnipMeDev/feature/non-mobile-targets
Non mobile targets
2 parents 7bd8b1a + 8e643e0 commit cb9ef8c

File tree

9 files changed

+40
-11
lines changed

9 files changed

+40
-11
lines changed

.DS_Store

0 Bytes
Binary file not shown.

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.6.0]
2+
3+
### Added
4+
- Support for other non-mobile targets
5+
6+
### Changed
7+
- Project maven description
8+
- Kotlin version to 1.9.0
9+
110
## [0.5.0]
211

312
### Changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
![highlights_banner_opaque](https://github.com/SnipMeDev/Highlights/assets/8405055/e123ce0f-6f58-451a-9e0a-893c0809b909)
22

3+
[![Maven Central](https://img.shields.io/maven-central/v/dev.snipme/highlights)](https://mvnrepository.com/artifact/dev.snipme)
4+
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
5+
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
6+
37
# Highlights
4-
Kotlin Multiplatform syntax highlighting engine
8+
Kotlin Multiplatform syntax highlighting engine.
59

610
## Installation ⬇️
711
```shell
@@ -11,7 +15,7 @@ repositories {
1115
```
1216

1317
```shell
14-
implementation("dev.snipme:highlights:0.5.0")
18+
implementation("dev.snipme:highlights:0.6.0")
1519
```
1620

1721
## Features ✨
@@ -22,6 +26,12 @@ implementation("dev.snipme:highlights:0.5.0")
2226
- Result caching and support for incremental changes
2327
- Written in pure Kotlin, so available for many platforms 📱 💻 🖥️
2428

29+
## Support ☕
30+
Kotlin Multiplatform is a fresh environment and developing for it is neither fast nor easy 🥲
31+
32+
If you feel that any of our project has saved you a time or effort, then consider supporting us via:
33+
[🧋 Buy Me A Coffee](https://bmc.link/SnipMeDev)
34+
2535
## Usage ✍️
2636

2737
> 💡 As each Highlights instance caches code analysis, it is recommended to re-use the same instance for small code changes.

build.gradle.kts

+14-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import org.jetbrains.kotlin.gradle.plugin.mpp.pm20.util.archivesName
66
apply(from = "publish-root.gradle")
77

88
plugins {
9-
kotlin("multiplatform") version "1.8.22"
9+
kotlin("multiplatform") version "1.9.0"
1010
id("maven-publish")
1111
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
1212
id("signing")
1313
}
1414

1515
group = "dev.snipme"
16-
version = "0.5.0"
16+
version = "0.6.0"
1717

1818
kotlin {
1919
// Android
@@ -30,6 +30,17 @@ kotlin {
3030
iosX64()
3131
iosArm64()
3232
iosSimulatorArm64()
33+
// Desktop
34+
mingwX64()
35+
linuxX64()
36+
linuxArm64()
37+
macosX64()
38+
macosArm64()
39+
// Web
40+
js {
41+
browser()
42+
nodejs()
43+
}
3344
// Dependencies
3445
sourceSets {
3546
val commonTest by getting {
@@ -57,7 +68,7 @@ publishing {
5768
root.appendNode("name", project.name)
5869
root.appendNode(
5970
"description",
60-
"Kotlin Multiplatform (KMM) syntax highlighting engine"
71+
"Kotlin Multiplatform syntax highlighting engine."
6172
)
6273
root.appendNode("url", "https://github.com/SnipMeDev/Highlights")
6374

gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
kotlin.js.compiler=ir

sample/build.gradle.kts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22

33
plugins {
4-
kotlin("jvm") version "1.8.21"
4+
kotlin("jvm") version "1.9.0"
55
application
66
}
77

@@ -10,6 +10,7 @@ version = "1.0-SNAPSHOT"
1010

1111
repositories {
1212
mavenCentral()
13+
mavenLocal()
1314
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
1415
}
1516

@@ -30,5 +31,5 @@ application {
3031
}
3132

3233
dependencies {
33-
implementation("dev.snipme:highlights:0.5.0")
34+
implementation("dev.snipme:highlights:0.6.0")
3435
}

sample/src/main/kotlin/Main.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ val sampleClass = """
3030
}
3131
""".trimIndent()
3232

33-
fun main(args: Array<String>) {
33+
fun main() {
3434
println("### HIGHLIGHTS ###")
3535
println()
3636

settings.gradle.kts

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ pluginManagement {
22
repositories {
33
google()
44
gradlePluginPortal()
5-
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
65
mavenCentral()
76
}
87
}
@@ -11,7 +10,6 @@ dependencyResolutionManagement {
1110
repositories {
1211
google()
1312
mavenCentral()
14-
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
1513
}
1614
}
1715

src/commonTest/kotlin/dev/snipme/highlights/internal/CodeAnalyzerTest.kt

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import dev.snipme.highlights.model.PhraseLocation
44
import dev.snipme.highlights.model.SyntaxLanguage
55
import kotlin.test.Test
66
import kotlin.test.assertEquals
7-
import kotlin.test.assertNotNull
87

98
internal class CodeAnalyzerTest {
109

0 commit comments

Comments
 (0)