๐Ÿ“ฆโž”๐Ÿฆ‹ Store and retrieve files on the Atmosphere
35
fork

Configure Feed

Select the types of activity you want to include in your feed.

various

Ducky a5f58427 4b38113f

+5 -3
+2
.vscode/settings.json
··· 9 9 "exiftool", 10 10 "feedgens", 11 11 "jetstream", 12 + "jetstreams", 12 13 "lexi", 13 14 "mediainfo", 14 15 "nsid", 15 16 "pkgman", 16 17 "rkey", 17 18 "termux", 19 + "urandom", 18 20 "websocat", 19 21 "xrpc" 20 22 ]
+2 -2
src/commands/release.sh
··· 9 9 key="$2" 10 10 value="$3" 11 11 12 - echo "$(echo "$string" | sed -s "s|{:$key:}|$value|g")" 12 + sed -s "s|{:$key:}|$value|g" <<< "$string" 13 13 } 14 14 15 15 atfile.util.check_prog "git" ··· 97 97 98 98 echo -e "\n# \"Four million lines of BASIC\"\n# - Kif Kroker (3003)" >> "$dist_path" 99 99 100 - checksum="$(atfile.util.get_md5 "$dist_path")" 100 + checksum="$(atfile.util.get_md5 "$dist_path" | cut -d "|" -f 1)" 101 101 102 102 echo "๐Ÿงช Testing..." 103 103 shellcheck_output="$(shellcheck --format=json "$dist_path" 2>&1)"
+1 -1
src/shared/util.sh
··· 702 702 function atfile.util.get_random() { 703 703 amount="$1" 704 704 [[ -z "$amount" ]] && amount="6" 705 - echo "$(tr -dc A-Za-z0-9 </dev/urandom | head -c $amount; echo)" 705 + echo "$(tr -dc A-Za-z0-9 </dev/urandom | head -c "$amount"; echo)" 706 706 } 707 707 708 708 function atfile.util.get_random_pbc_jetstream() {