Skip to content

Commit d3f0301

Browse files
author
Simon Schubert
committed
Add commands
1 parent 3e506a9 commit d3f0301

10 files changed

Lines changed: 16 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
The app currently has **6692** 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.
5+
The app currently has **6697** 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.
66

77
[![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)
88
[![F-Droid](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/fdroid_badge.png)](https://f-droid.org/en/packages/com.inspiredandroid.linuxcommandbibliotheca/)

android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939
applicationId = "com.inspiredandroid.linuxcommandbibliotheca"
4040
minSdk = 24
4141
targetSdk = 35
42-
versionCode = 98
42+
versionCode = 99
4343
versionName = project.version.toString()
4444
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
4545
}

android/src/main/java/com/inspiredandroid/linuxcommandbibliotheca/PreferenceUtil.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ class PreferenceUtil(context: Context) {
4545
companion object {
4646
const val KEY_BOOKMARKS = "KEY_BOOKMARKS"
4747
const val KEY_DATABASE_VERSION = "DATABASE_VERSION"
48-
const val CURRENT_DATABASE_VERSION = 13
48+
const val CURRENT_DATABASE_VERSION = 14
4949
}
5050
}

assets/database.db

28 KB
Binary file not shown.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
}
2121

2222
group = "com.inspiredandroid"
23-
version = "3.3.4"
23+
version = "3.3.5"
2424

2525
allprojects {
2626
repositories {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=3.3.4
1+
version=3.3.5

desktop/src/main/kotlin/com/linuxcommandlibrary/desktop/WebsiteBuilder.kt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import com.linuxcommandlibrary.shared.getHtmlFileName
77
import com.linuxcommandlibrary.shared.getSortPriority
88
import com.linuxcommandlibrary.shared.initDatabase
99
import databases.BasicCategory
10+
import kotlinx.coroutines.async
1011
import kotlinx.html.ATarget
1112
import kotlinx.html.DIV
1213
import kotlinx.html.FlowContent
@@ -16,6 +17,7 @@ import kotlinx.html.HtmlTagMarker
1617
import kotlinx.html.InputType
1718
import kotlinx.html.LINK
1819
import kotlinx.html.META
20+
import kotlinx.html.ScriptCrossorigin
1921
import kotlinx.html.UL
2022
import kotlinx.html.a
2123
import kotlinx.html.attributesMapOf
@@ -875,6 +877,11 @@ class WebsiteBuilder {
875877
link(rel = "manifest", href = "/site.webmanifest")
876878
meta(name = "msapplication-TileColor", content = "#da532c")
877879
meta(name = "theme-color", content = "#ffffff")
880+
script {
881+
src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3003920357099437"
882+
async = true
883+
crossorigin = ScriptCrossorigin.anonymous
884+
}
878885
}
879886

880887
private fun HEAD.uncommonMeta(
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Add new commands
2+
Upgrade sdks

fastlane/metadata/android/en-US/full_description.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The app currently has <b>6692</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.
1+
The app currently has <b>6697</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.
22

33
<b>Categories</b>
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6692 manual pages, 22 basic categories and a bunch of general terminal tips.
1+
6697 manual pages, 22 basic categories and a bunch of general terminal tips.

0 commit comments

Comments
 (0)