Firefox 92.0 is now available in the Omniverse (https://wiki.artixlinux.org/Main/Repositories#Omniverse) repository.
This repository also includes packages libreoffice-still, filezilla, audacious, vscodium, remmina, timeshift, displaylink, autokey, tmux, terminator and more.
Artist
whats the difference between the universe AND THE omniverse
The Artix repo's are explained here: https://wiki.artixlinux.org/Main/Repositories
Just run
pacman -Sl <repo-name>
and look what packages are available in each of the repos.
Or this (in Bash :P):
$ diff -y <(pacman -Sl world | cut -d' ' -f2-) <(pacman -Sl extra | cut -d' ' -f2-) | less
Replace "world" and "extra" with repo names.
I know, processes and pipes are cheap, but you can remove the need for
cut with
pacman -Slq repo:
diff -y <(pacman -Slq world) <(pacman -Slq extra) | less
Firefox has been updated to 93.0
One change is that Firefox will block downloads it considers as insecure as per
https://blog.mozilla.org/security/2021/10/05/firefox-93-protects-against-insecure-downloads/
- block insecure HTTP downloads on a secure HTTPS page
- block downloads in sandboxed iframes, unless the iframe is explicitly annotated with the allow-downloads attribute