Opera 80 Stable
-
hectormaciasa1979 last edited by leocg
Your big announcement is Reader Mode and it comes Disabled by default?
-
leocg Moderator Volunteer last edited by leocg
@hectormaciasa1979 To what? If you are talking about the change in Chromium release cycle, I don't think so, It had been announced already a while ago.
-
red last edited by
On my machine scrolling is jerkier with Opera 80, while it was silky smooth with 79.0.4143.72. ( [AMD/ATI] RS780L [Radeon 3000] on Fedora )
-
kmielczarczyk Opera last edited by
@hectormaciasa1979: Sorry for this oversight - it will be enabled with an update next week.
-
kmielczarczyk Opera last edited by
@kyu3: Yes, sorry for this oversight. It will be turned on with the next updated by default.
-
kmielczarczyk Opera last edited by
@cvm: Sorry for this oversight, you need to enabled it on opera://flags. It will be enabled by default in the next update.
-
BruceHankins last edited by
What about the issue with opera-stable 80 and libffmpeg.so? I'm getting error opera: symbol lookup error: opera: undefined symbol: av_stream_get_first_dts. Also posted a question about it lhere with all the build and system details.
-
ironbone last edited by
Missing files in the deb repository.
Can not upgrade on Ubuntu using
apt update/upgradeAlso, on snap the last version is: 79.0.4143.72
-
ironbone last edited by
@ironbone: Just take a look here
https://deb.opera.com/opera-stable/pool/non-free/o/opera-stable/
There is only the old version -
gmiazga Opera last edited by
@ironbone it is available here https://deb.opera.com/opera-stable/pool/non-free/o/opera-stable/opera-stable_80.0.4170.16_amd64.deb perhaps cache hasn't fully refreshed yet on all systems.
-
treego last edited by
@treego said:
No update available yet for Chromebook/Linux ... I am not upset ... I am patient.
I was able to update to Opera 80 this morning now. Thank you, Opera!
As usual, I had to update the libffmpeg.so file ... see here to get the current libffmpeg.so file for your Opera 80 on Linux.
-
marezezelj last edited by
After updating to Opera 80, tiles in Speed Dial not clear, website logos looks blurry. Windows 11.
-
red last edited by red
@jactym said in Opera 80 Stable:
@brucehankins: https://github.com/nicolas-meilan/fix-opera-linux-ffmpeg
That doesn't work anymore. It pulls from a repository that's stuck on an older version.
The following small snippet pulls the latest version from an up to date repository.
(To see the code you'll have to go trough the forums )# Written by Davide Repetto (ReD), distributed under the GPLv2. # Set 'target' to suit your distribution and run as root. # The default 'target' is intended for opera-stable in fedora. # If you prefer to run unprivileged, just set 'target' to somewhere you can write and run as your normal user. target='/usr/lib64/opera/lib_extra' [ ! -e "${target}" ] && mkdir -p "${target}" wget -O - https://repo.herecura.eu/herecura/x86_64/$( \ wget -O - -nv -q https://repo.herecura.eu/herecura/x86_64/ \ | grep 'opera-beta-ffmpeg-codecs.*\.pkg\.tar\.zst">' \ | sed 's/<a href="\(.*zst\).*".*/\1/') \ | tar -xp -v --zstd --strip-components=4 --overwrite -C "${target}" unset target