Skip to content

Commit 15eaceb

Browse files
IsmaelMartinezclaude
authored andcommitted
fix: restore --ozone-platform=x11 default in package.json (IsmaelMartinez#2511)
PR IsmaelMartinez#2509 ("docs(roadmap): capture 2026-05-07 ozone-platform default reset session") accidentally bundled a package.json change that flipped the flag from =x11 to =auto. =auto is not a valid value for --ozone-platform — Chromium aborts with `FATAL:ui/ozone/platform_selection.cc:46 Invalid ozone platform: auto`, making every build cut from main since 2026-05-07 unlaunchable on every distro and packaging format. Restore the working =x11 default. The proper "remove the flag entirely and let Chromium auto-detect per session" direction is being handled separately on IsmaelMartinez#2506; this is the minimum patch to keep main releasable until that lands. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent edd1fe0 commit 15eaceb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"synopsis": "Teams for Linux",
100100
"description": "Unofficial Microsoft Teams client for Linux using Electron. It uses the Web App and wraps it as a standalone application using Electron.",
101101
"executableArgs": [
102-
"--ozone-platform=wayland"
102+
"--ozone-platform=x11"
103103
],
104104
"desktop": {
105105
"entry": {
@@ -143,7 +143,7 @@
143143
"grade": "stable",
144144
"base": "core22",
145145
"executableArgs": [
146-
"--ozone-platform=auto"
146+
"--ozone-platform=x11"
147147
],
148148
"plugs": [
149149
"default",

0 commit comments

Comments
 (0)