Some checks failed
release / build (push) Failing after 34s
Track per-app launch counts in ~/.cache/breadbox/history.json. When a query is active, sort visible results by fuzzy match quality (exact > prefix > contains > subsequence) then by launch count descending, so the most relevant and most-used app rises to the top. The base list (no query) also surfaces most-launched apps above unvisited ones. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
391 B
TOML
16 lines
391 B
TOML
[package]
|
|
name = "breadbox"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "breadbox"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
bread-theme = { git = "https://github.com/Breadway/bread-ecosystem", tag = "v0.1.0", features = ["gtk"] }
|
|
breadbox-shared = { path = "../breadbox-shared" }
|
|
gtk4 = { version = "0.11", features = ["v4_12"] }
|
|
gtk4-layer-shell = "0.8"
|
|
serde_json = "1"
|