Squashed from work; the fine-grained history is under tag archive/work-2026-08-29: - mp* wave: mpwm window manager + the mp app family, WM API, theme bridge, PDF engine fix - mpwm polish wave: terminal key focus, focus-history close order, pop-back-to-origin, occupied-workspace cycling, demo - mpwm: ghost-launch/menu-flash root cause, scroll z-gate, browser binds, path-free status, viewers delisted, Fab opens - mpwm: Hyprland-exact close animation over a frozen snapshot - mpwm: warm-instance pool, flat-luminance opens, flicker-free CEF resize - work: land the sources the last commits reference - mpwm: quick-look gap fixes; image cache eviction on preview unload - tweaker: material thumbnails + vibecode popup + ctrl-space notes, undo/redo over the edit ledger, capture-semantics pi - tweaker: tabbed side panel (Props/Shader/Tree) - shader tab with checkerboard material well + prompt, complete widget- - mpwm+mpterm: text quick-look — pty teardown deadlock fix, in-place retarget verified, debug probes stripped
18 lines
529 B
TOML
18 lines
529 B
TOML
# mp-wm-api — the mp* apps' API to the window manager (mpwm).
|
|
#
|
|
# An app hosted as an mpwm tile talks to the compositor over the studio
|
|
# protocol's Custom channel; this crate is the typed vocabulary on both
|
|
# ends: "open a preview of this file", "open this file", "my title/cwd
|
|
# changed", "notify". Standalone (not hosted) the calls fall back sensibly.
|
|
|
|
[package]
|
|
name = "mp-wm-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "mp_wm_api"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets" }
|