Skip to content

Commit 2a92d2d

Browse files
committed
Update readme
1 parent d6d84dc commit 2a92d2d

2 files changed

Lines changed: 10 additions & 12 deletions

File tree

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44

55
The app currently has **7700** manual pages, **23+** basic categories and a bunch of general terminal tips. It works 100% offline, doesn't need an internet connection and has no tracking software.
66

7+
[![App Store](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/app_store_badge.png)](https://apps.apple.com/us/app/linux-command-library/id1219649976)
78
[![Play Store](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/play_store_badge.png)](https://play.google.com/store/apps/details?id=com.inspiredandroid.linuxcommandbibliotheca)
89
[![F-Droid](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/fdroid_badge.png)](https://f-droid.org/en/packages/com.inspiredandroid.linuxcommandbibliotheca/)
910
[![Web](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/web_badge.png)](https://linuxcommandlibrary.com)
1011

12+
Native CLI and GUI binaries for Linux, macOS, and Windows are available in [Releases](https://github.com/SimonSchubert/LinuxCommandLibrary/releases).
13+
1114
### Android screenshots
1215

1316
<p>
@@ -31,9 +34,7 @@ The app currently has **7700** manual pages, **23+** basic categories and a bunc
3134

3235
### CLI screenshot
3336

34-
<img src="https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/screen-cli-1.png" width="300">
35-
36-
Execute `gradle :cli:buildJar` to create jar file for Linux, Windows and Mac.
37+
<img src="https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/screen-cli-1.png" width="400">
3738

3839
### Content
3940

@@ -47,12 +48,10 @@ Clear and reset the terminal, List of recent commands, Close a frozen window/app
4748

4849
### CI/CD
4950

50-
[Github Action](.github/workflows/android.yml) to automatically create a new Github release with APK and JAR and upload an AAB to the Play Store.
51+
[Github Action](.github/workflows/android.yml) to automatically create a new Github release with APK, CLI binaries, and desktop installers, and upload an AAB to the Play Store.
5152

5253
### Tests
5354

54-
Android Jetpack Compose screen tests: [ComposeTests.kt](android/src/androidTest/java/com/inspiredandroid/linuxcommandbibliotheca/ComposeTests.kt)
55-
5655
Android Jetpack Compose deeplinking tests: [ComposeDeeplinkTests.kt](android/src/androidTest/java/com/inspiredandroid/linuxcommandbibliotheca/ComposeDeeplinkTests.kt)
5756

5857
Common code unit tests: [CommonTests.kt](common/src/commonTest/kotlin/CommonTests.kt)

websiteBuilder/src/main/kotlin/com/linuxcommandlibrary/desktop/MarkdownBuilder.kt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,13 @@ class MarkdownBuilder {
3333
stream.appendLine()
3434
stream.appendLine("The app currently has **${MarkdownFileUtils.getCommandCount()}** manual pages, **${MarkdownFileUtils.getBasicCategories().size}+** basic categories and a bunch of general terminal tips. It works 100% offline, doesn't need an internet connection and has no tracking software.")
3535
stream.appendLine()
36+
stream.appendLine("[![App Store](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/app_store_badge.png)](https://apps.apple.com/us/app/linux-command-library/id1219649976)")
3637
stream.appendLine("[![Play Store](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/play_store_badge.png)](https://play.google.com/store/apps/details?id=com.inspiredandroid.linuxcommandbibliotheca)")
3738
stream.appendLine("[![F-Droid](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/fdroid_badge.png)](https://f-droid.org/en/packages/com.inspiredandroid.linuxcommandbibliotheca/)")
3839
stream.appendLine("[![Web](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/web_badge.png)](https://linuxcommandlibrary.com)")
3940
stream.appendLine()
41+
stream.appendLine("Native CLI and GUI binaries for Linux, macOS, and Windows are available in [Releases](https://github.com/SimonSchubert/LinuxCommandLibrary/releases).")
42+
stream.appendLine()
4043
stream.appendLine("### Android screenshots")
4144
stream.appendLine()
4245
stream.appendLine("<p>")
@@ -69,9 +72,7 @@ class MarkdownBuilder {
6972
stream.appendLine()
7073
stream.appendLine("### CLI screenshot")
7174
stream.appendLine()
72-
stream.appendLine("<img src=\"https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/screen-cli-1.png\" width=\"300\">")
73-
stream.appendLine()
74-
stream.appendLine("Execute `gradle :cli:buildJar` to create jar file for Linux, Windows and Mac.")
75+
stream.appendLine("<img src=\"https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/screen-cli-1.png\" width=\"400\">")
7576
stream.appendLine()
7677
stream.appendLine("### Content")
7778
stream.appendLine()
@@ -90,13 +91,11 @@ class MarkdownBuilder {
9091
stream.appendLine()
9192
stream.appendLine("### CI/CD")
9293
stream.appendLine()
93-
stream.appendLine("[Github Action](.github/workflows/android.yml) to automatically create a new Github release with APK and JAR and upload an AAB to the Play Store.")
94+
stream.appendLine("[Github Action](.github/workflows/android.yml) to automatically create a new Github release with APK, CLI binaries, and desktop installers, and upload an AAB to the Play Store.")
9495

9596
stream.appendLine()
9697
stream.appendLine("### Tests")
9798
stream.appendLine()
98-
stream.appendLine("Android Jetpack Compose screen tests: [ComposeTests.kt](android/src/androidTest/java/com/inspiredandroid/linuxcommandbibliotheca/ComposeTests.kt)")
99-
stream.appendLine()
10099
stream.appendLine("Android Jetpack Compose deeplinking tests: [ComposeDeeplinkTests.kt](android/src/androidTest/java/com/inspiredandroid/linuxcommandbibliotheca/ComposeDeeplinkTests.kt)")
101100
stream.appendLine()
102101
stream.appendLine("Common code unit tests: [CommonTests.kt](common/src/commonTest/kotlin/CommonTests.kt)")

0 commit comments

Comments
 (0)