Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added "Tribler" #369

Merged
merged 2 commits into from Jul 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -297,6 +297,7 @@ cog.out(pretty_list)
| [<img src=".github/debian.png" align="top" width="20" />](https://www.terraform.io/) | `terraform` | <i>Automate Infrastructure on Any Cloud.</i> |
| [<img src=".github/github.png" align="top" width="20" />](https://github.com/Mastermindzh/tidal-hifi) | `tidal-hifi` | <i>Web version of listen.tidal.com running in Wlectron with hifi support thanks to widevine.</i> |
| [<img src=".github/direct.png" align="top" width="20" />](https://www.tixati.com/) | `tixati` | <i>A New and Powerful P2P System.</i> |
| [<img src=".github/github.png" align="top" width="20" />](https://www.tribler.org/) | `tribler` | <i>An encrypted torrent client.</i> |
| [<img src=".github/github.png" align="top" width="20" />](https://aquasecurity.github.io/trivy/) | `trivy` | <i>A simple and comprehensive vulnerability/misconfiguration/secret scanner for containers and other artifacts.</i> |
| [<img src=".github/debian.png" align="top" width="20" />](https://typora.io/) | `typora` | <i>A minimal Markdown editor and reader.</i> |
| [<img src=".github/launchpad.png" align="top" width="20" />](https://github.com/ubuntu/ubuntu-make/) | `ubuntu-make` | <i>Easy setup of common tools for developers on Ubuntu.</i> |
Expand Down
12 changes: 11 additions & 1 deletion deb-get
Expand Up @@ -752,6 +752,17 @@ function deb_peazip() {
SUMMARY="PeaZip is a free file archiver utility and extractor."
}

function deb_tribler() {
get_github_releases "https://api.github.com/repos/Tribler/tribler/releases/latest"
if [ "${ACTION}" != "prettylist" ]; then
URL=$(grep "browser_download_url.*_all.deb" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4)
VERSION_PUBLISHED="$(echo "${URL}" | cut -d'/' -f8 | tr -d v)"
fi
PRETTY_NAME="Tribler"
WEBSITE="https://www.tribler.org/"
SUMMARY="An encrypted torrent client."
}

function deb_bottom() {
get_github_releases "https://api.github.com/repos/ClementTsang/bottom/releases/latest"
if [ "${ACTION}" != "prettylist" ]; then
Expand All @@ -763,7 +774,6 @@ function deb_bottom() {
SUMMARY="Yet another cross-platform graphical process/system monitor."
}


function deb_element-desktop() {
GPG_KEY_URL="https://packages.element.io/debian/element-io-archive-keyring.gpg"
APT_LIST_NAME="element-io"
Expand Down