Skip to content

Commit e6b4782

Browse files
committed
Add app store badge
1 parent 956407f commit e6b4782

5 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
The app currently has **6279** 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)

art/app_store_badge.png

15.7 KB
Loading
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.linuxcommandlibrary.shared
22

33
object Version {
4-
const val appVersion = "3.5.4"
4+
const val appVersion = "3.5.5"
55
}

composeApp/src/commonMain/kotlin/com/linuxcommandlibrary/app/App.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ fun LinuxApp() {
141141
val onNavigateBack: () -> Unit = remember {
142142
{
143143
if (navigationStack.isNotEmpty()) {
144-
currentDestination = navigationStack.removeLast()
144+
currentDestination = navigationStack.removeAt(navigationStack.lastIndex)
145145
}
146146
}
147147
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
agp = "8.13.2"
33
appVersion = "3.5.5"
4-
androidVersionCode = "129"
4+
androidVersionCode = "130"
55
kotlin = "2.3.0"
66
composeMultiplatform = "1.10.0"
77
accompanistAppcompatTheme = "0.36.0"

0 commit comments

Comments
 (0)