- Fix Xutf8LookupString signature (missing XIC param caused all keys to map to \0) - Port bamboo-core Vietnamese engine to Rust (bamboo.rs, input_method.rs) - Flexible backtracking for mark/tone keys (scan up to 5 chars back) - Correct tone placement for io, uâ, yê clusters - Evdev capture preferred over X11 XRecord (more reliable) - Uinput injection with correct Linux keycodes - Vietnamese Unicode via clipboard paste + trailing ASCII via uinput - Persistent X11 connection for Ctrl+V (no per-call dlopen overhead) - Consume stale VNI/Telex control keys when no match found - Fix execute_commands backspace count for evdev grabbing path - Add vietc-uinputd privileged injection daemon - AppImage: bundle uinputd, preserve LD_LIBRARY_PATH, fix xrecord build flags - Remove old generated test files, add 63 focused engine tests
14 lines
250 B
Rust
14 lines
250 B
Rust
pub mod inject;
|
|
pub mod monitor;
|
|
pub mod uinput_monitor;
|
|
pub mod uinput_client;
|
|
pub mod wayland_im;
|
|
|
|
#[cfg(feature = "x11")]
|
|
pub mod x11_inject;
|
|
|
|
#[cfg(feature = "x11")]
|
|
pub mod x11_capture;
|
|
|
|
pub use inject::KeyInjector;
|
|
pub use monitor::KeyMonitor;
|