Skip to content

Commit 18f1940

Browse files
committed
Sync files from source repository
1 parent 0df5694 commit 18f1940

18 files changed

Lines changed: 20 additions & 133 deletions

am2pla-site

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ fi
2121

2222
# GET THE EXACT NUMBER OF AVAILABLE APPS
2323
ARGS=$(sort -u ./args)
24-
APPS_NUMBER=$(grep -v "ffwa-\|\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch"-apps | grep -e "$" -c)
25-
ITEMS_NUMBER=$(grep "ffwa-\|\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch"-apps | grep -e "$" -c)
24+
APPS_NUMBER=$(grep -v "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch"-apps | grep -e "$" -c)
25+
ITEMS_NUMBER=$(grep "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch"-apps | grep -e "$" -c)
2626
CATEGORIES="am-utils android audio \
2727
comic command-line communication \
2828
disk \
@@ -50,7 +50,7 @@ function _update_json() {
5050
echo "[" > apps.json
5151
for arg in $ARGS; do
5252
case "$arg" in
53-
ffwa-*|kdegames|kdeutils|node|platform-tools) continue;;
53+
kdegames|kdeutils|node|platform-tools) continue;;
5454
esac
5555
description=$(grep "$arg :" "$arch"-apps | sed 's/"/\\"/g; s/^.*: //')
5656
printf " {\n \"packageName\": \"%b\",\n \"description\": \"%b..\",\n \"icon\": \"https://portable-linux-apps.github.io/icons/%b.png\"\n },\n" "$arg" "$description" "$arg" >> apps.json
@@ -305,7 +305,7 @@ cat >> ./index.md << 'EOF'
305305
--------
306306
307307
### What are the portable linux apps?
308-
*Portable Linux Apps are standalone applications for GNU/Linux that can (theoretically) run everywhere, also on a USB stick. These applications can be AppImage packages (see [appimage.org](https://appimage.org/)) or standalone archives (for example Firefox, Thunderbird...).*
308+
*Portable Linux Apps are standalone applications for GNU/Linux that can (theoretically) run everywhere, also on a USB stick. These applications can be AppImage packages (see [appimage.org](https://appimage.org/)) or standalone archives.*
309309
310310
--------
311311
@@ -467,13 +467,11 @@ curl -s -Lo ./AM-INSTALLER https://raw.githubusercontent.com/ivan-hc/AM/main/AM-
467467
468468
*"AM" installs, removes, updates and manages only standalone programs, ie those programs that can be run from a single directory in which they are contained.*
469469
470-
*1. **PORTABLE PROGRAMS** from official sources (see Firefox, Thunderbird, NodeJS, Platform Tools...), extracted from official .deb/tar/zip packages.*
470+
*1. **PORTABLE PROGRAMS** from official sources (see NodeJS, Platform Tools...), extracted from official .deb/tar/zip packages.*
471471
472472
*2. **APPIMAGES**, from both official and unofficial sources (I also create unofficial AppImages), or compiled on-the-fly with [pkg2appimage](https://github.com/AppImage/pkg2appimage) and [appimagetool](https://github.com/AppImage/AppImageKit), like an AUR helper, from official archives.*
473473
474-
*3. **FIREFOX PROFILES** to run as webapps, the ones with suffix "ffwa-" in the apps list.*
475-
476-
*4. **THIRD-PARTY LIBRARIES** if they are missing in your repositories.*
474+
*3. **THIRD-PARTY LIBRARIES** if they are missing in your repositories.*
477475
478476
*The database aims to be a reference point where you can download all the AppImage packages scattered around the web, otherwise unobtainable, as you would expect from any package manager, through specific installation scripts for each application, as happens with the AUR PKGBUILDs, on Arch Linux. You can see all of them [here](https://github.com/ivan-hc/AM/tree/main/programs), divided by architecture.*
479477
@@ -557,7 +555,6 @@ am -i --user topgrade
557555
- [Option Zero: "AppImages"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-zero-appimages)
558556
- [Option One: "build AppImages on-the-fly"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-one-build-appimages-on-the-fly)
559557
- [Option Two: "Archives and other programs"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-two-archives-and-other-programs)
560-
- [Option Three: "Firefox profiles"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-three-firefox-profiles)
561558
- [How an installation script works](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-an-installation-script-works)
562559
- [How to test an installation script](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-to-test-an-installation-script)
563560
- [How to submit a Pull Request](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-to-submit-a-pull-request)
@@ -688,16 +685,16 @@ for category in $CATEGORIES; do
688685
elif [ "$category" = video ]; then
689686
grep -i "$category\|stream\|media player\|film\|movie\|netflix\|youtube\|iptv" ./"$arch"-apps >> "$arch-$category"
690687
elif [ "$category" = web-app ]; then
691-
grep -i "$category\|webapp\|web app\|ffwa" ./"$arch"-apps >> "$arch-$category"
688+
grep -i "$category\|webapp\|web app" ./"$arch"-apps >> "$arch-$category"
692689
elif [ "$category" = web-browser ]; then
693690
grep -i "$category\|web browser\|browser web\|browser.*web\|browser.*chrome\|brave.*browser\|chrome.*browser\|chromium.*browser\|chromium fork\|firefox.*web browser\|firefox fork\|librewolf\|vivaldi" ./"$arch"-apps >> "$arch-$category"
694691
else
695692
grep -i "$category" ./"$arch"-apps >> "$arch-$category"
696693
fi
697694
echo -e "$(sort -u ./"$arch-$category" | awk -v FS="(◆ | : )" '{print $2}')" > args
698695
ARGS=$(sort -u ./args)
699-
APPS_NUMBER=$(grep -v "ffwa-\|\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch-$category" | grep -e "$" -c)
700-
ITEMS_NUMBER=$(grep "ffwa-\|\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch-$category" | grep -e "$" -c)
696+
APPS_NUMBER=$(grep -v "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch-$category" | grep -e "$" -c)
697+
ITEMS_NUMBER=$(grep "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch-$category" | grep -e "$" -c)
701698
_category_list_header
702699
_category_list_body
703700
_footer_categories >> "$category".md

apps.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
| [Home](index.md) |
44
| --- |
55

6-
#### Here are listed all **3220** unique applications, AppImage packages and command line utilities managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture, plus **78** more entries and items to help you install apps more easily.
6+
#### Here are listed all **3220** unique applications, AppImage packages and command line utilities managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture, plus **69** more entries and items to help you install apps more easily.
77

88

99
<div id="app-search-box" style="margin: 1em 0;">
@@ -949,15 +949,6 @@
949949
| <img loading="lazy" src="icons/fflogs-uploader.png" width="48" height="48"> | [***fflogs-uploader***](apps/fflogs-uploader.md) | *FFLogs Uploader appimage.*..[ *read more* ](apps/fflogs-uploader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fflogs-uploader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fflogs-uploader) |
950950
| <img loading="lazy" src="icons/ffmpeg.png" width="48" height="48"> | [***ffmpeg***](apps/ffmpeg.md) | *Unofficial, A complete, cross-platform solution to record, convert and stream audio and video.*..[ *read more* ](apps/ffmpeg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffmpeg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffmpeg) |
951951
| <img loading="lazy" src="icons/ffsend.png" width="48" height="48"> | [***ffsend***](apps/ffsend.md) | *Easily and securely share files from the command line. A fully featured Firefox Send client.*..[ *read more* ](apps/ffsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffsend) |
952-
| <img loading="lazy" src="icons/ffwa-facebook.png" width="48" height="48"> | [***ffwa-facebook***](apps/ffwa-facebook.md) | *WebApp & Firefox Profile for Facebook.*..[ *read more* ](apps/ffwa-facebook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-facebook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-facebook) |
953-
| <img loading="lazy" src="icons/ffwa-github.png" width="48" height="48"> | [***ffwa-github***](apps/ffwa-github.md) | *WebApp & Firefox Profile for GitHub.*..[ *read more* ](apps/ffwa-github.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-github) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-github) |
954-
| <img loading="lazy" src="icons/ffwa-gmail.png" width="48" height="48"> | [***ffwa-gmail***](apps/ffwa-gmail.md) | *WebApp & Firefox Profile for Gmail.*..[ *read more* ](apps/ffwa-gmail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-gmail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-gmail) |
955-
| <img loading="lazy" src="icons/ffwa-netflix.png" width="48" height="48"> | [***ffwa-netflix***](apps/ffwa-netflix.md) | *WebApp & Firefox Profile for Netflix.*..[ *read more* ](apps/ffwa-netflix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-netflix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-netflix) |
956-
| <img loading="lazy" src="icons/ffwa-reddit.png" width="48" height="48"> | [***ffwa-reddit***](apps/ffwa-reddit.md) | *WebApp & Firefox Profile for Reddit.*..[ *read more* ](apps/ffwa-reddit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-reddit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-reddit) |
957-
| <img loading="lazy" src="icons/ffwa-twitter.png" width="48" height="48"> | [***ffwa-twitter***](apps/ffwa-twitter.md) | *WebApp & Firefox Profile for Twitter.*..[ *read more* ](apps/ffwa-twitter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-twitter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-twitter) |
958-
| <img loading="lazy" src="icons/ffwa-whatsapp.png" width="48" height="48"> | [***ffwa-whatsapp***](apps/ffwa-whatsapp.md) | *WebApp & Firefox Profile for WhatsApp.*..[ *read more* ](apps/ffwa-whatsapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-whatsapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-whatsapp) |
959-
| <img loading="lazy" src="icons/ffwa-wikipedia.png" width="48" height="48"> | [***ffwa-wikipedia***](apps/ffwa-wikipedia.md) | *WebApp & Firefox Profile for Wikipedia.*..[ *read more* ](apps/ffwa-wikipedia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-wikipedia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-wikipedia) |
960-
| <img loading="lazy" src="icons/ffwa-youtube.png" width="48" height="48"> | [***ffwa-youtube***](apps/ffwa-youtube.md) | *WebApp & Firefox Profile for YouTube.*..[ *read more* ](apps/ffwa-youtube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-youtube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-youtube) |
961952
| <img loading="lazy" src="icons/ficus.png" width="48" height="48"> | [***ficus***](apps/ficus.md) | *A software for editing and managing markdown documents.*..[ *read more* ](apps/ficus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ficus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ficus) |
962953
| <img loading="lazy" src="icons/fiddler-everywhere.png" width="48" height="48"> | [***fiddler-everywhere***](apps/fiddler-everywhere.md) | *Debug your network traffic to deliver high-quality products.*..[ *read more* ](apps/fiddler-everywhere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fiddler-everywhere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fiddler-everywhere) |
963954
| <img loading="lazy" src="icons/fidias-database-migration-app.png" width="48" height="48"> | [***fidias-database-migration-app***](apps/fidias-database-migration-app.md) | *Migrate SQL-based databases.*..[ *read more* ](apps/fidias-database-migration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fidias-database-migration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fidias-database-migration-app) |

apps/ffwa-facebook.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/ffwa-github.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/ffwa-gmail.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/ffwa-netflix.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/ffwa-reddit.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/ffwa-twitter.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/ffwa-whatsapp.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

apps/ffwa-wikipedia.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)