Skip to content

Commit be4dfde

Browse files
committed
Add find module to publish
1 parent 5f26240 commit be4dfde

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
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:
@@ -72,6 +72,7 @@ jobs:
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/')
@@ -92,6 +93,7 @@ jobs:
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

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Compose has been missing a **Rich Text Editor** since its inception.
1010
I've [taken a crack](https://github.com/Wavesonics/richtext-compose-multiplatform) at this
1111
previously, 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
1414
all text entry in Compose.
1515

1616
This 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

0 commit comments

Comments
 (0)