Package Details: microsoft-edge-stable-bin 130.0.2849.56-1

Git Clone URL: https://aur.archlinux.org/microsoft-edge-stable-bin.git (read-only, click to copy)
Package Base: microsoft-edge-stable-bin
Description: A browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier
Upstream URL: https://www.microsoftedgeinsider.com/en-us/download
Keywords: browser chromium web
Licenses: custom
Conflicts: edge, edge-stable, edge-stable-bin, microsoft-edge-stable
Provides: edge-stable, microsoft-edge-stable
Submitter: nicomix
Maintainer: aakashhemadri
Last Packager: aakashhemadri
Votes: 125
Popularity: 3.45
First Submitted: 2021-10-29 02:42 (UTC)
Last Updated: 2024-10-24 20:45 (UTC)

Dependencies (11)

Required by (5)

Sources (2)

Pinned Comments

Littletiger commented on 2024-04-23 17:13 (UTC)

I was using --ozone-platform-hint=auto and having the startup issue in 124 as well, changing this to --ozone-platform=wayland fixed it for me

aakashhemadri commented on 2022-03-29 13:23 (UTC) (edited on 2022-03-29 13:24 (UTC) by aakashhemadri)

Please wait 30 minutes after a new update is released by Microsoft. The out-of-date flag sends an email notification to all those subscribed. If after a day the package stays out-of-date then please go ahead and flag the package as out-of-date to notify us.

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 11 12 13 .. 16 Next › Last »

somepaulo commented on 2023-04-20 13:21 (UTC) (edited on 2023-04-20 13:32 (UTC) by somepaulo)

Edge won't start at all since last update (v112.0.1722.54 from the 19th of April 2023). Running from CLI throws out an uninformative error:

$ /usr/bin/microsoft-edge-stable
Illegal instruction (core dumped)

Downgrading to v112.0.1722.48 (15th of April 2023) fixes the issue.

soloturn commented on 2023-04-18 01:18 (UTC)

would you mind to add a clearer description, like "microsofts web browser based on google chromium, necessary to use bing with GPT."?

Lime commented on 2023-04-02 16:35 (UTC)

Hi, I'm having trouble with this version of Edge, which seems to crash consistently (along with the other 2 AUR versions, beta and dev). Any thoughts on how to fix this? Here's what my terminal looks like when I try and launch it: https://pastebin.com/u7aGhMHn

Fade-ing commented on 2023-03-14 06:14 (UTC)

libpipewire02 is no longer available in arch repository, since this fix is already included in Pipewire 0.3.23 (https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/768)

So it's definetly best to remove it from optional dependency

Unsubtle7826 commented on 2023-03-03 17:08 (UTC)

Please remove libpipewire02 as an optional dependency or update it, as it does not exist.

Firestar commented on 2023-02-05 05:28 (UTC)

Every time I startup my computer and open microsoft-edge, kwallet tells me to insert password to open a keyring, why? Can it be cancelled?

$ microsoft-edge-stable 
[1213:1213:0205/131656.215264:ERROR:assistance_home_client.cc(32)] File path /home/firestar/.config/microsoft-edge/Default
[1213:1213:0205/131659.565052:ERROR:processor_entity.cc(171)] Metadata has an exisiting server id that will be overwritten with the current update entity id.metadata server_id:  update.entity.id: 44eab781-8392-47da-9056-1c6d2a40b395
[1213:1213:0205/131659.565135:ERROR:processor_entity.cc(171)] Metadata has an exisiting server id that will be overwritten with the current update entity id.metadata server_id: 0266b7cc-8310-4db8-9289-9a52c9dcd62f update.entity.id: 0266b7cc-8310-4db8-9289-9a52c9dcd62f
Deserialization failed!

aakashhemadri commented on 2023-02-04 20:22 (UTC)

Sorry for the delay in looking into this, thanks for the prompts, patched with your fixes :)

albertlv commented on 2023-02-02 02:26 (UTC) (edited on 2023-02-02 02:28 (UTC) by albertlv)

diff --git a/update_version.sh b/update_version.sh
index 08cd4c8..181a76c 100755
--- a/update_version.sh
+++ b/update_version.sh
@@ -16,6 +16,7 @@ VER=$(curl -sSf https://packages.microsoft.com/repos/edge/dists/stable/main/bina
     grep -A6 "Package: ${PKG}" |
     awk '/Version/{print $2}' |
        cut -d '-' -f1 |
+    sort -rV |
     head -n1)

 # Insert latest version into PKGBUILD and update hashes
@@ -32,6 +33,7 @@ fi
 # updpkgsums
 SUM256=$(curl -sSf https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages |
     grep -A15 "Package: ${PKG}" |
+    grep -A14 "Version: ${VER}" |
     awk '/SHA256/{print $2}' |
     head -n1)

tbroyer commented on 2023-02-01 17:54 (UTC)

Adding a sort -rV before the head -n1 in update_version.sh would fix it for the VER variable, but then the SUM256 will be a bit harder to get right (include the version in the matching pattern, maybe use awk then rather than grep?)