Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion agentmux-cef/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agentmux-cef"
version = "0.33.42"
version = "0.33.43"
description = "AgentMux CEF Host — Pinned Chromium renderer replacing system WebView2"
authors = ["AgentMux Corp"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion agentmux-launcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agentmux-launcher"
version = "0.33.42"
version = "0.33.43"
description = "AgentMux Launcher — tiny exe that sets DLL path then spawns the CEF host"
authors = ["AgentMux Corp"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion agentmux-srv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agentmux-srv"
version = "0.33.42"
version = "0.33.43"
edition = "2021"
description = "AgentMux Rust backend server"

Expand Down
2 changes: 1 addition & 1 deletion agentmux-wsh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agentmux-wsh"
version = "0.33.42"
version = "0.33.43"
edition = "2021"
description = "Shell integration CLI for AgentMux"

Expand Down
12 changes: 7 additions & 5 deletions frontend/app/block/block.scss
Original file line number Diff line number Diff line change
Expand Up @@ -419,12 +419,14 @@
pointer-events: none;
border-radius: var(--block-border-radius);
z-index: var(--zindex-block-mask-inner);
// backdrop-filter guarantees this element composites above all
// composited-scroll children (xterm-viewport with overflow-y:scroll).
// backdrop-filter elements MUST render above the layers they sample —
// unlike will-change:opacity/transform which Chromium may squash or
// reorder. 0.1px blur is imperceptible at any DPR.
// Force this element onto its own compositor layer so it renders
// above xterm's hardware-accelerated scroll/WebGL surfaces.
// Two independent hints — either alone may be optimized away by
// Chromium on certain DWM configurations (Win11 vs Win10):
// 1. backdrop-filter: spec-required to composite above sampled layers
// 2. will-change: transform: forces a dedicated GPU layer
backdrop-filter: blur(0.1px);
will-change: transform;

&.show-block-mask {
user-select: none;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"productName": "AgentMux",
"description": "Open-Source AI-Native Terminal Built for Seamless Workflows",
"license": "Apache-2.0",
"version": "0.33.42",
"version": "0.33.43",
"homepage": "https://github.com/agentmuxai/agentmux",
"build": {
"appId": "ai.agentmux.app"
Expand Down