-
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4cbc32
commit 1d5d368
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ cronopete | |
crossover | ||
crow-translate | ||
cryptomator | ||
cudatext | ||
cw-tail | ||
dbeaver-ce | ||
deadbeef-static | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
DEFVER=1 | ||
local QT_VER | ||
case "${UPSTREAM_CODENAME}" in | ||
sid|trixie|plucky) QT_VER="6" ;; | ||
*) QT_VER="5" ;; | ||
esac | ||
get_website "https://sourceforge.net/p/cudatext/activity/feed" | ||
if [ "${ACTION}" != prettylist ]; then | ||
URL="$(unroll_url "$(sed 's|</*link>|\n|g' "${CACHE_FILE}" | grep -o -m 1 "^http.*qt${QT_VER}_amd64.deb")")" | ||
VERSION_PUBLISHED="$(cut -d '_' -f 2 <<< "${URL}")" | ||
fi | ||
PRETTY_NAME="CudaText" | ||
WEBSITE="https://cudatext.github.io/" | ||
SUMMARY="Text/code editor with lite UI. Syntax highlighting for 300+ languages. Config system in JSON files. Multi-carets and multi-selections. Search and replace with RegEx. Extendable by Python plugins and themes." |