Compare commits

...

16 Commits

Author SHA1 Message Date
hexis
38edf20fa8
Merge b7ae502899 into 696110eae5 2024-10-27 23:06:10 +01:00
Adam Perkowski
696110eae5
refact(release): better categories (#876) 2024-10-25 15:44:41 -05:00
hexisXz
b7ae502899 . 2024-10-01 22:58:03 +00:00
hexisXz
ff26cb159c added lapce IDE 2024-10-01 22:36:55 +00:00
hexisXz
36d65e5e63 flatpak fix 2024-09-30 14:45:15 +00:00
hexisXz
6bde17648a added FI 2024-09-30 04:50:22 +00:00
hexisXz
f2526b048e fixed things 2024-09-30 04:41:55 +00:00
hexisXz
c0728e1b10 fixed things 2024-09-30 04:31:44 +00:00
hexisXz
8bfd5367fb added waterfox browser 2024-09-30 04:07:43 +00:00
hexisXz
9511a7d2c1 added waterfox browser 2024-09-30 04:04:33 +00:00
hexisXz
054acfab1e added waterfox browser 2024-09-30 03:59:05 +00:00
hexisXz
0b9ba635a9 added waterfox browser 2024-09-30 03:08:12 +00:00
hexisXz
4fdbf65bb1 added waterfox browser 2024-09-30 03:05:07 +00:00
hexisXz
d54333752b added waterfox browser 2024-09-30 02:58:28 +00:00
hexisXz
ce764c03c7 added waterfox browser 2024-09-30 02:57:04 +00:00
hexisXz
3911cf61e8 added waterfox browser 2024-09-30 02:14:40 +00:00
3 changed files with 42 additions and 8 deletions

19
.github/release.yml vendored
View File

@ -1,20 +1,23 @@
changelog: changelog:
categories: categories:
- title: '🚀 Features' - title: '🚀 Features'
labels: label: 'enhancement'
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes' - title: '🐛 Bug Fixes'
labels: label: 'bug'
- 'fix' - title: '⚙️ Refactoring'
- 'bugfix' label: 'refactor'
- 'bug' - title: '🧩 UI/UX'
label: 'UI/UX'
- title: '📚 Documentation' - title: '📚 Documentation'
label: 'documentation' label: 'documentation'
- title: '🔒 Security' - title: '🔒 Security'
label: 'security' label: 'security'
- title: '🧰 GitHub Actions' - title: '🧰 GitHub Actions'
label: 'github actions' label: 'github_actions'
- title: '🦀 Rust'
label: 'rust'
- title: '📃 Scripting'
label: 'script'
exclude: exclude:
labels: labels:
- 'skip-changelog' - 'skip-changelog'

View File

@ -0,0 +1,25 @@
#!/bin/sh -e
. ../../common-script.sh
installWaterfox() {
if ! command_exists waterfox; then
printf "%b\n" "${YELLOW}Installing waterfox...${RC}"
case "$PACKAGER" in
pacman)
"$AUR_HELPER" -S --needed --noconfirm waterfox-bin
;;
*)
. ../setup-flatpak.sh
flatpak install -y flathub net.waterfox.waterfox
;;
esac
else
printf "%b\n" "${GREEN}Waterfox is already installed.${RC}"
fi
}
checkEnv
checkEscalationTool
checkAURHelper
installWaterfox

View File

@ -186,6 +186,12 @@ description = "Vivaldi is a freeware, cross-platform web browser developed by Vi
script = "browsers/vivaldi.sh" script = "browsers/vivaldi.sh"
task_list = "I" task_list = "I"
[[data.entries]]
name = "waterfox"
description = "Waterfox is the privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet."
script = "browsers/waterfox.sh"
task_list = "FI"
[[data]] [[data]]
name = "Alacritty" name = "Alacritty"
description = "Alacritty is a modern terminal emulator that comes with sensible defaults, but allows for extensive configuration. By integrating with other applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. The supported platforms currently consist of BSD, Linux, macOS and Windows.\nThis command installs and condifures alacritty terminal emulator." description = "Alacritty is a modern terminal emulator that comes with sensible defaults, but allows for extensive configuration. By integrating with other applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. The supported platforms currently consist of BSD, Linux, macOS and Windows.\nThis command installs and condifures alacritty terminal emulator."