File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 cat gradle.properties | grep library.version
6262
6363 - name : Assemble libraries
64- run : ./gradlew :ComposeTextEditor:assemble :ComposeTextEditorSpellCheck:assemble --no-daemon --stacktrace
64+ run : ./gradlew :ComposeTextEditor:assemble :ComposeTextEditorSpellCheck:assemble :ComposeTextEditorFind:assemble --no-daemon --stacktrace
6565
6666 - name : Publish to Maven Central
6767 env :
7272 run : |
7373 ./gradlew :ComposeTextEditor:publishAllPublicationsToMavenCentralRepository --no-daemon --stacktrace
7474 ./gradlew :ComposeTextEditorSpellCheck:publishAllPublicationsToMavenCentralRepository --no-daemon --stacktrace
75+ ./gradlew :ComposeTextEditorFind:publishAllPublicationsToMavenCentralRepository --no-daemon --stacktrace
7576
7677 - name : Create GitHub Release
7778 if : startsWith(github.ref, 'refs/tags/')
9293 echo "**Artifacts:**" >> $GITHUB_STEP_SUMMARY
9394 echo "- composetexteditor" >> $GITHUB_STEP_SUMMARY
9495 echo "- composetexteditorspellcheck" >> $GITHUB_STEP_SUMMARY
96+ echo "- composetexteditorfind" >> $GITHUB_STEP_SUMMARY
9597 echo "**Version:** $VERSION" >> $GITHUB_STEP_SUMMARY
9698 echo "" >> $GITHUB_STEP_SUMMARY
9799 echo "### Next Steps" >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Compose has been missing a **Rich Text Editor** since its inception.
1010I've [ taken a crack] ( https://github.com/Wavesonics/richtext-compose-multiplatform ) at this
1111previously, as have [ others] ( https://github.com/MohamedRejeb/Compose-Rich-Editor ) .
1212
13- However they have all suffered from fundamental limitations in ` BasicTextField ` , the foundation of
13+ However, they have all suffered from fundamental limitations in ` BasicTextField ` , the foundation of
1414all text entry in Compose.
1515
1616This project is an attempt to re-implement text entry from scratch to finally have a
@@ -74,10 +74,14 @@ Text Editor:
7474
7575` implementation("com.darkrockstudios:composetexteditor:1.5.0") `
7676
77- Text Editor with Spell Checking:
77+ Spell Checking addon :
7878
7979` implementation("com.darkrockstudios:composetexteditor-spellcheck:1.5.0") `
8080
81+ Find & Replace addon:
82+
83+ ` implementation("com.darkrockstudios:composetexteditor-find:1.5.0") `
84+
8185
8286[ badge-android ] : http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
8387
You can’t perform that action at this time.
0 commit comments