Search entry's placeholder read "breadbox" -- the app's own name -- easily mistaken for an already-typed query. Now reads "Search apps...". Bare-subsequence matching (e.g. "zen" matching "Avahi Zeroconf Browser" via z...e...n) surfaced alongside real name-based hits like "Zen Browser". The filter now hides subsequence-only rows whenever a stronger, name-based match exists elsewhere in the results -- that kind of noise now only shows up when it's the best any entry can do. Note: bumping to 0.2.6, not 0.2.5 -- Cargo.toml had drifted one release behind the actual latest tag (v0.2.5 already existed).
14 lines
231 B
TOML
14 lines
231 B
TOML
[package]
|
|
name = "breadbox-sync"
|
|
version = "0.2.6"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "breadbox-sync"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
breadbox-shared = { path = "../breadbox-shared" }
|
|
serde_json = "1"
|
|
ureq = "2"
|