Skip to content

Commit a028986

Browse files
committed
Update web tldr ui
1 parent 552fc3f commit a028986

8 files changed

Lines changed: 28 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ local.properties
2222
processed.txt
2323
instructions-tldr.md
2424
instructions-man.md
25+
instructions-improve.md
2526
products_dataset.json
2627
instructions-config.md
2728
commands.txt

README.md

Lines changed: 2 additions & 2 deletions
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 **7770** 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.
5+
The app currently has **7892** manual pages, **28+** 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
[![App Store](https://raw.githubusercontent.com/SimonSchubert/LinuxCommandBibliotheca/master/art/app_store_badge.png)](https://apps.apple.com/us/app/linux-command-library/id1219649976)
88
[![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)
@@ -46,7 +46,7 @@ CLI: ```brew install simonschubert/tap/linux-command-library-cli```
4646

4747
#### Categories
4848

49-
One-liners, AI tools, System information, System control, Users & Groups, Files & Folders, Input, Printing, JSON, Network, Search & Find, GIT, SSH, Video & Audio, Package manager, Hacking tools, Terminal games, Cryptocurrencies, VIM Text Editor, Emacs Text Editor, Nano Text Editor, Pico Text Editor, Micro Text Editor
49+
One-liners, AI tools, System information, System control, Users & Groups, Files & Folders, Input, Printing, JSON, Network, Search & Find, GIT, SSH, Video & Audio, Package manager, Text Processing, Compression & Archiving, Hacking tools, Terminal games, Cryptocurrencies, Shell Scripting, Tmux, Regular Expressions, VIM Text Editor, Emacs Text Editor, Nano Text Editor, Pico Text Editor, Micro Text Editor
5050

5151
#### Tips
5252

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The app currently has <b>7770</b> manual pages, <b>23</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>7892</b> manual pages, <b>28</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

@@ -17,9 +17,14 @@ The app currently has <b>7770</b> manual pages, <b>23</b> basic categories and a
1717
* SSH
1818
* Video & Audio
1919
* Package manager
20+
* Text Processing
21+
* Compression & Archiving
2022
* Hacking tools
2123
* Terminal games
2224
* Cryptocurrencies
25+
* Shell Scripting
26+
* Tmux
27+
* Regular Expressions
2328
* VIM Text Editor
2429
* Emacs Text Editor
2530
* Nano Text Editor
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7770 manual pages, 23 basic categories and a bunch of general terminal tips.
1+
7892 manual pages, 28 basic categories and a bunch of general terminal tips.

iosApp/iosApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>3.5.13</string>
20+
<string>3.5.14</string>
2121
<key>CFBundleVersion</key>
2222
<string>1</string>
2323
<key>LSRequiresIPhoneOS</key>

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,14 @@ class WebsiteBuilder {
703703
}
704704
}
705705

706+
"TLDR" -> {
707+
div {
708+
unsafe {
709+
+HtmlMarkdownRenderer.renderSections(section.elements)
710+
}
711+
}
712+
}
713+
706714
else -> {
707715
// Use HtmlMarkdownRenderer for all other sections
708716
p {

websiteBuilder/src/main/resources/stylesheets/main.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,15 @@ font-size: 12px;
380380
color: black !important;
381381
}
382382

383+
.panel > div {
384+
margin: 1em 0;
385+
}
386+
387+
.panel > div > .code-wrapper {
388+
margin-top: 4px;
389+
margin-bottom: 8px;
390+
}
391+
383392
.panel a {
384393
font-weight: bold;
385394
color: #F44336;

0 commit comments

Comments
 (0)