Skip to content

Commit

Permalink
Add commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Schubert committed Sep 1, 2024
1 parent 55a6808 commit d505b8f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Icon](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandLibrary/master/art/web_hi_res_144.png)

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

[![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)
[![F-Droid](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/fdroid_badge.png)](https://f-droid.org/en/packages/com.inspiredandroid.linuxcommandbibliotheca/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ class PreferenceUtil(private val context: Context) {
companion object {
const val KEY_BOOKMARKS = "KEY_BOOKMARKS"
const val KEY_DATABASE_VERSION = "DATABASE_VERSION"
const val CURRENT_DATABASE_VERSION = 7
const val CURRENT_DATABASE_VERSION = 8
}
}
Binary file modified assets/database.db
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ fun copyDatabase(context: Context, onUpdateStatus: (Int) -> Unit = {}) {
}
val file = File(databaseFolder, "database.db")

println("Copy ${file.name} from assets to $file")
val inputStream = context.assets.open("database.db")
inputStream.copyToWithStatus(file.outputStream(), onUpdateStatus)
inputStream.close()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -886,13 +886,13 @@ class WebsiteBuilder {
if (showAd) {
div {
style = "text-align: center;"
a("https://coindodo.io/stge") {
a("https://gala.fan/6-I5oCuOy") {
target = ATarget.blank
img {
style = "max-width: calc(100% - 4px);"
src = "/images/af/stge.webp"
src = "/images/musicapp.webp"
attributes["loading"] = "lazy"
width = "800"
width = "600"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The app currently has <b>5547</b> manual pages, <b>22</b> basic categories and a bunch of general terminal tips. It works 100% offline, doesn't need an internet connection and has no tracking software.
The app currently has <b>6056</b> manual pages, <b>22</b> basic categories and a bunch of general terminal tips. It works 100% offline, doesn't need an internet connection and has no tracking software.

<b>Categories</b>

Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/short_description.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5547 manual pages, 22 basic categories and a bunch of general terminal tips.
6056 manual pages, 22 basic categories and a bunch of general terminal tips.

0 comments on commit d505b8f

Please sign in to comment.