Skip to main content
Topic: Latest Firefox available in the Omniverse repository (Read 995 times) previous topic - next topic
0 Members and 4 Guests are viewing this topic.

Latest Firefox available in the Omniverse repository

Firefox 92.0 is now available in the Omniverse repository.
This repository also includes packages libreoffice-still, filezilla, audacious, vscodium, remmina, timeshift, displaylink, autokey, tmux, terminator and more.
Artist

 

Re: Latest Firefox available in the Omniverse repository

Reply #1
whats the difference between the universe AND THE omniverse



Re: Latest Firefox available in the Omniverse repository

Reply #4
Just run
Code: [Select]
pacman -Sl <repo-name>
and look what packages are available in each of the repos.
Or this (in Bash :P):
Code: [Select]
$ diff -y <(pacman -Sl world | cut -d' ' -f2-) <(pacman -Sl extra | cut -d' ' -f2-) | less
Replace "world" and "extra" with repo names.

Re: Latest Firefox available in the Omniverse repository

Reply #5
Or this (in Bash :P):
Code: [Select]
$ 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:

Code: [Select]
diff -y <(pacman -Slq world) <(pacman -Slq extra) | less

Re: Latest Firefox available in the Omniverse repository

Reply #6
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