Skip to content

zWork v0.5.1

Choose a tag to compare

@github-actions github-actions released this 30 Jul 21:26
· 5 commits to main since this release

Download zWork for your platform:

Platform File
Linux zWork-linux-x86_64.AppImage
macOS zWork-macos-universal.dmg
Windows zWork-windows-x86_64-setup.exe

Install

Linux (recommended):

curl -fsSL https://raw.githubusercontent.com/Ryz3nPlayZ/zWork/main/scripts/install.sh | bash

Or download the .AppImage and run:

chmod +x zWork-linux-x86_64.AppImage
./zWork-linux-x86_64.AppImage

macOS (cURL - no GateKeeper prompt):

curl -fsSL https://raw.githubusercontent.com/Ryz3nPlayZ/zWork/main/scripts/install-macos.sh | bash

Or download zWork-macos-universal.dmg, open it, then drag zWork to Applications.

Windows:

irm https://raw.githubusercontent.com/Ryz3nPlayZ/zWork/main/scripts/install-windows.ps1 | iex

If SmartScreen appears, click "More info" then "Run anyway".


What's new

Windows parity pass + native Share Window capture.

New

  • Share Window (macOS). The overlay's window picker now captures windows natively through the Tauri host (CoreGraphics) using zWork's own Screen Recording grant — no cua-driver dependency — and routes the screenshot to zwork-vision.

Fixes (Windows)

  • Scroll-dead zones removed. The app-region: drag CSS rules were dropped: WKWebView ignores them, but WebView2 treats such elements as window caption and swallows all mouse input over them — including wheel events — which made drag-region areas (Settings header, top bands, sidebar base layer) unscrollable on Windows. Dragging still works via the data-tauri-drag-region attribute, which wry handles natively.
  • Consistent typography. Inter (variable) is now bundled and leads the font-sans stack, so Windows/Linux render the same typeface and metrics as macOS instead of falling back to Segoe UI (which also ignored the Inter-specific ss01/cv11 feature settings).
  • Opaque main window on Windows. A tauri.windows.conf.json overlay disables main-window transparency there — transparency cost the native DWM frame (no drop shadow, no Win11 rounded corners) and existed only to serve macOS vibrancy.
  • Sidebar translucency gated to macOS. On Tauri Windows/Linux there is no compositor blur behind the window; the CSS backdrop-blur fallback rendered as a flat slab (black under VMs). The toggle is hidden and the effect forced off on those platforms.
  • Visible scrollbars. Windows now keeps a faint scrollbar thumb at rest instead of the macOS-style hover-only thumb, restoring scroll affordance.

Fixes (all platforms)

  • Window drag no longer hijacks interactive children. onDragMouseDown now walks closest() past buttons, inputs, textareas, and [data-no-drag] before starting a native drag, so drag-selecting text or pressing-and-moving on sidebar items no longer moves the window.