Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
39aeceb
{"schema":"maestro/commit/1","summary":"add text annotations with too…
yvette-carlisle Apr 8, 2026
2da1a33
{"schema":"maestro/commit/1","summary":"fix ci style for system font …
yvette-carlisle Apr 8, 2026
990f864
{"schema":"maestro/commit/1","summary":"fix text hit testing and expo…
yvette-carlisle Apr 8, 2026
ba0a2b4
{"schema":"maestro/commit/1","summary":"harden export text fallback b…
yvette-carlisle Apr 8, 2026
480d319
{"schema":"maestro/commit/1","summary":"preserve alpha when compositi…
yvette-carlisle Apr 8, 2026
c1faf7e
{"schema":"maestro/commit/1","summary":"defer ime finalization and th…
yvette-carlisle Apr 8, 2026
057044d
{"schema":"maestro/commit/1","summary":"scale frozen exports to the o…
yvette-carlisle Apr 8, 2026
3807312
{"schema":"maestro/commit/1","summary":"preserve frozen overlay stack…
yvette-carlisle Apr 8, 2026
d0bc998
{"schema":"maestro/commit/1","summary":"keep frozen edit payload evic…
yvette-carlisle Apr 8, 2026
6c74bfd
{"schema":"maestro/commit/1","summary":"clip frozen text preview to c…
yvette-carlisle Apr 9, 2026
113cf58
{"schema":"maestro/commit/1","summary":"clip active frozen text previ…
yvette-carlisle Apr 9, 2026
4b40f1e
{"schema":"maestro/commit/1","summary":"finalize text edits on tool s…
yvette-carlisle Apr 9, 2026
0c8a8eb
{"schema":"maestro/commit/1","summary":"stop text drag when toolbar r…
yvette-carlisle Apr 9, 2026
ffabf30
{"schema":"maestro/commit/1","summary":"clear text dedupe state after…
yvette-carlisle Apr 9, 2026
a9bdb79
{"schema":"maestro/commit/1","summary":"clear stale ime preedit and c…
yvette-carlisle Apr 9, 2026
4226d64
{"schema":"maestro/commit/1","summary":"bound system font coverage pr…
yvette-carlisle Apr 9, 2026
389ebf9
{"schema":"maestro/commit/1","summary":"gate text edit start to the c…
yvette-carlisle Apr 10, 2026
1514a67
{"schema":"maestro/commit/1","summary":"refresh ime anchor after text…
yvette-carlisle Apr 10, 2026
4c8584f
{"schema":"maestro/commit/1","summary":"preserve ime composition when…
yvette-carlisle Apr 10, 2026
4a1488f
{"schema":"maestro/commit/1","summary":"probe fallback fonts until th…
yvette-carlisle Apr 10, 2026
ea278d3
{"schema":"maestro/commit/1","summary":"derive mac toolbar startup wi…
yvette-carlisle Apr 10, 2026
2a3fafa
{"schema":"maestro/commit/1","summary":"make toolbar startup sizing c…
yvette-carlisle Apr 10, 2026
9b17d8d
{"schema":"maestro/commit/1","summary":"hide text overlays during act…
yvette-carlisle Apr 10, 2026
2c6cbb7
{"schema":"maestro/commit/1","summary":"bound startup font probes aft…
yvette-carlisle Apr 10, 2026
7c75a2e
{"schema":"maestro/commit/1","summary":"fix toolbar startup sizing an…
yvette-carlisle Apr 10, 2026
4070ca0
{"schema":"maestro/commit/1","summary":"guard macos cursor rect helpe…
yvette-carlisle Apr 10, 2026
99ca193
{"schema":"maestro/commit/1","summary":"cover text mode in toolbar st…
yvette-carlisle Apr 10, 2026
8f6560e
{"schema":"maestro/commit/1","summary":"disable text mode during scro…
yvette-carlisle Apr 10, 2026
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
86 changes: 85 additions & 1 deletion Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ egui = { version = "0.34" }
egui-phosphor = { version = "0.12", features = ["fill"] }
egui-wgpu = { version = "0.34" }
egui-winit = { version = "0.34" }
font8x8 = { version = "0.3" }
fontdb = { version = "0.23" }
fontdue = { version = "0.9" }
global-hotkey = { version = "0.7", features = ["tracing"] }
image = { version = "0.25", default-features = false, features = ["png"] }
objc = { version = "0.2" }
Expand All @@ -42,6 +45,7 @@ tracing = { version = "0.1" }
tracing-appender = { version = "0.2" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tray-icon = { version = "0.22" }
ttf-parser = { version = "0.21" }
wgpu = { version = "29.0" }
winit = { version = "0.30", features = ["rwh_06"] }
xcap = { version = "0.9" }
Expand Down
4 changes: 4 additions & 0 deletions packages/rsnap-overlay/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ egui = { workspace = true }
egui-phosphor = { workspace = true }
egui-wgpu = { workspace = true }
egui-winit = { workspace = true }
font8x8 = { workspace = true }
fontdb = { workspace = true }
fontdue = { workspace = true }
image = { workspace = true }
pollster = { workspace = true }
serde = { workspace = true }
serde_json = { version = "1.0" }
thiserror = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
ttf-parser = { workspace = true }
wgpu = { workspace = true }
winit = { workspace = true }

Expand Down
2 changes: 2 additions & 0 deletions packages/rsnap-overlay/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ mod overlay;
mod png;
mod scroll_capture;
mod state;
mod system_fonts;
mod text_rendering;
mod worker;

#[cfg(target_os = "macos")]
Expand Down
Loading
Loading