From 946da4bb0f3a1e34548a577438a6f58533a918ce Mon Sep 17 00:00:00 2001 From: Matias Galarza Date: Mon, 20 Apr 2026 09:50:02 -0300 Subject: [PATCH 1/2] fix(file-ops): use sort_by_key to satisfy clippy 1.95 unnecessary_sort_by lint clippy 1.95 introduced `unnecessary_sort_by`, flagging the existing `sort_by` call in browse.rs as replaceable with the lighter `sort_by_key`. With `-D warnings` in CI this broke every PR against development once GitHub runners updated to Rust 1.95 stable. The suggested rewrite is semantically identical: both sort case-insensitively by entry name. --- crates/file-ops/src/browse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/file-ops/src/browse.rs b/crates/file-ops/src/browse.rs index 1bb5cab8..d019115e 100644 --- a/crates/file-ops/src/browse.rs +++ b/crates/file-ops/src/browse.rs @@ -56,7 +56,7 @@ pub fn list_directory(path: &Path) -> Result, String> { }) .collect(); - result.sort_by(|a, b| a.name.to_lowercase().cmp(&b.name.to_lowercase())); + result.sort_by_key(|entry| entry.name.to_lowercase()); Ok(result) } From 4ec8789284a629607948ac95b2bbdd24555609aa Mon Sep 17 00:00:00 2001 From: Matias Galarza Date: Mon, 20 Apr 2026 09:37:50 -0300 Subject: [PATCH 2/2] feat(decky): bump plugin to v1.1.0 with persistent progress visibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the decky submodule pointer from v1.0.2 to v1.1.0. The v1.1.0 release of the plugin brings: - feat: persistent progress toast — when the user dismisses the transfer modal, a recovery toast lets them bring it back without restarting the transfer (resolves the UX reported in #230). - fix: build.sh now detects bun and works end-to-end in standalone mode, aligning local builds with the monorepo's build_all.sh tooling. Closes #230 --- apps/agents/decky | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/agents/decky b/apps/agents/decky index 59647bae..78630173 160000 --- a/apps/agents/decky +++ b/apps/agents/decky @@ -1 +1 @@ -Subproject commit 59647bae0365adbf5fd867b975d7ba925cb442ce +Subproject commit 78630173d10ea4817ae402cbaf9b20196e180fc6