4 wires and counting

$ follow Open WebUI

Keep up with Open WebUI in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-05-07
stories 11

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Open WebUI Desktop fixes blank Linux webviews, decouples local server

By RepoJournal · Filed · About Open WebUI

1 person shipped this

Open WebUI Desktop 0.0.19 ships with a critical Linux fix that restores blank webviews by replacing --in-process-gpu with SwiftShader.

Open WebUI Desktop is releasing 0.0.19 [1] alongside a refactor [2] that reshapes how the app manages the local server. The release bundles the new architecture and the Linux fix. The refactor decouples the local server from the connections array: local is now a virtual connection ID, synthesized only when the open-webui package is installed, and connections[] is strictly remote. Previously, the local server was modeled as a type:'local' entry, which was only created during the Get Started flow, breaking installs from Settings. [2]

Two platform-specific fixes are in development. On Linux, the --in-process-gpu flag broke <webview> guest compositing, leaving connection views blank. The fix replaces it with SwiftShader (--use-gl=angle --use-angle=swiftshader), which keeps the GPU process out-of-process (required for webview compositing) while using software rendering to avoid the driver-level /dev/shm crashes. [3] On macOS, Spotlight no longer drags the app to its original Space: app.focus({ steal: true }) activates the whole app, so the fix uses targeted window-level focus with visibleOnAllWorkspaces. [4]

Maintainer Timothy Jaeryang Baek notes the in-process GPU flag "broke <webview> guest compositing entirely," which is the root cause users saw as blank connection views on every Linux configuration. [3]

Quick answers

What shipped in Open WebUI on May 7, 2026?
Open WebUI Desktop 0.0.19 ships with a critical Linux fix that restores blank webviews by replacing --in-process-gpu with SwiftShader. In total, 7 commits, 2 pull requests, and 2 releases landed.
Who contributed to Open WebUI on May 7, 2026?
1 developer shipped this update, including tjbck.
What were the notable Open WebUI updates?
0.0.19, refac, and fix: replace --in-process-gpu with SwiftShader to fix blank webviews on Linux.