-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed undo on first click into editor
- Migrated to material3 - Updated other libraries - Renamed androidExample project as it caused gradle problems?
- Loading branch information
1 parent
b894e7e
commit 76a1a9b
Showing
40 changed files
with
128 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
kotlin.code.style=official | ||
kotlin.native.enableDependencyPropagation=false | ||
library_version=1.3.0 | ||
library_version=1.4.0 | ||
android.useAndroidX=true | ||
kotlin.version=1.7.0 | ||
agp.version=7.2.1 | ||
compose_version=1.2.0 | ||
jetbrains_compose_version=1.2.0-alpha01-dev753 | ||
android_compile_sdk=33 | ||
android_target_sdk=33 | ||
android_min_sdk=26 | ||
kotlin.version=1.8.0 | ||
agp.version=7.3.1 | ||
compose_version=1.3.0 | ||
jetbrains_compose_version=1.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
richtexteditor/src/androidMain/kotlin/com/darkrockstudios/richtexteditor/common/platform.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
package com.darkrockstudios.richtexteditor.common | ||
|
||
actual fun systemLineSeparator(): String = System.lineSeparator() | ||
import kotlinx.coroutines.Dispatchers | ||
import kotlin.coroutines.CoroutineContext | ||
|
||
actual fun systemLineSeparator(): String = System.lineSeparator() | ||
actual val defaultDispatcher: CoroutineContext = Dispatchers.Default | ||
actual val uiDispatcher: CoroutineContext = Dispatchers.Main |
7 changes: 6 additions & 1 deletion
7
richtexteditor/src/commonMain/kotlin/com/darkrockstudios/richtexteditor/common/platform.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
package com.darkrockstudios.richtexteditor.common | ||
|
||
import kotlin.coroutines.CoroutineContext | ||
|
||
@Suppress("NO_ACTUAL_FOR_EXPECT") | ||
expect fun systemLineSeparator(): String | ||
expect fun systemLineSeparator(): String | ||
|
||
expect val defaultDispatcher: CoroutineContext | ||
expect val uiDispatcher: CoroutineContext |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.