diff --git a/CHANGELOG.md b/CHANGELOG.md index cbaa1e34..39cdac36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.1.24 — 2026-04-26 +- Eliminate flicker while switching search results +- Improve the window resizing experience to better match Finder +- Correct copy behavior when the search input is focused +- Fix incorrect file drag-and-drop handling +- Add large-corpus `search-cache` benchmarks and CI benchmark coverage + ## 0.1.23 — 2026-03-25 - Reduce power consumption by expanding the default ignored paths to cover more macOS cache, log, metadata, and runtime directories. - Further reduce background work by making the filesystem event watcher honor ignored paths. diff --git a/cardinal/src-tauri/Cargo.lock b/cardinal/src-tauri/Cargo.lock index 24578003..3651299f 100644 --- a/cardinal/src-tauri/Cargo.lock +++ b/cardinal/src-tauri/Cargo.lock @@ -382,7 +382,7 @@ dependencies = [ [[package]] name = "cardinal" -version = "0.1.23" +version = "0.1.24" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/cardinal/src-tauri/Cargo.toml b/cardinal/src-tauri/Cargo.toml index 386b1944..bdca812b 100644 --- a/cardinal/src-tauri/Cargo.toml +++ b/cardinal/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cardinal" -version = "0.1.23" +version = "0.1.24" description = "Cardinal is a cross platform file searching tool" authors = ["ldm2993593805@163.com"] edition = "2024" diff --git a/cardinal/src-tauri/tauri.conf.json b/cardinal/src-tauri/tauri.conf.json index 6b674bef..ea64b954 100644 --- a/cardinal/src-tauri/tauri.conf.json +++ b/cardinal/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Cardinal", - "version": "0.1.23", + "version": "0.1.24", "identifier": "com.cardinal.one", "build": { "beforeDevCommand": "npm run dev",