Add multi-platform release builds for 0.9.0 (closes #138).
Some checks failed
Tagged release / prepare-release (push) Failing after 5s
Tagged release / build-macos (push) Has been skipped
Tagged release / build-linux-arm64 (push) Has been skipped
Tagged release / build-linux-x64 (push) Has been skipped
Tagged release / build-windows (push) Has been skipped
Tagged release / publish-release (push) Has been skipped

This commit is contained in:
Hermes Agent
2026-08-14 09:03:42 +00:00
parent 20f9d15b46
commit 917947a421
14 changed files with 3134 additions and 127 deletions

View File

@@ -822,7 +822,6 @@ where
}
}
shell.capture_event();
return;
} else {
state.is_focused = false;
}
@@ -871,7 +870,6 @@ where
buf.set_cursor(clamped_line, clamped_col);
}
shell.capture_event();
return;
}
}
Event::Mouse(mouse::Event::WheelScrolled { delta }) if cursor.is_over(bounds) => {
@@ -885,7 +883,6 @@ where
let max_scroll = total.saturating_sub(vis);
buf.scroll_by_clamped(lines, max_scroll);
shell.capture_event();
return;
}
Event::Keyboard(keyboard::Event::KeyPressed {
key,
@@ -1099,7 +1096,6 @@ where
_ => return,
}
shell.capture_event();
return;
}
_ => {}
}