From 15fbc47f5a8d1127826a9d3a930336d059f6bf0f Mon Sep 17 00:00:00 2001 From: Phuoc Thinh Vu <163667116+kakapt@users.noreply.github.com> Date: Thu, 19 Feb 2026 19:03:44 +0700 Subject: [PATCH 1/2] fix(nix): update bunDeps outputHash (#853) --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index f012eb3..0a064a0 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; # Read version from Cargo.toml - cargoToml = builtins.fromTOML (builtins.readFile ./src-tauri/Cargo.toml); + cargoToml = fromTOML (builtins.readFile ./src-tauri/Cargo.toml); version = cargoToml.package.version; in { @@ -51,7 +51,7 @@ outputHashAlgo = "sha256"; outputHashMode = "recursive"; - outputHash = "sha256-6SvLw/8UBIHlcIY7jUJKv6DHPooP3aUz+4PvC7UNzv4="; + outputHash = "sha256-+hUANv0w3qnK5d2+4JW3XMazLRDhWCbOxUXQyTGta/0="; }; in { From f367353752f04cf3bb9a7af3b3fa91787d14ffb0 Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Thu, 19 Feb 2026 21:24:47 -0800 Subject: [PATCH 2/2] fix handy-keys not firing when in the ui (#856) --- src-tauri/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 58faaf2..114657f 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -357,6 +357,7 @@ pub fn run(cli_args: CliArgs) { .expect("Failed to export typescript bindings"); let mut builder = tauri::Builder::default() + .device_event_filter(tauri::DeviceEventFilter::Always) .plugin(tauri_plugin_dialog::init()) .plugin( LogBuilder::new()