Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cardinal/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cardinal/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion cardinal/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading