notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit eeab1666e7e8e868438a69024e9cb99f15f8713a
parent f569f948af871c28a6483eafd035efd7d13f1486
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 30 Dec 2024 11:39:55 -0800

query: fix since filter on kind queries

Before kind queries with since filters wasn't working. Now it does.

Changelog-Fixed: Fixed since kind filters

Diffstat:
MCargo.lock | 5+++--
MCargo.toml | 3++-
2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -2508,8 +2508,9 @@ dependencies = [ [[package]] name = "nostrdb" -version = "0.5.0" -source = "git+https://github.com/damus-io/nostrdb-rs?rev=b1bc794e9e5f2fb27dad0f95b6974ed2b81872d0#b1bc794e9e5f2fb27dad0f95b6974ed2b81872d0" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "775484658a10d646c5e835fb9132a7528d1bf546a791d1176b052f1be69c04b2" dependencies = [ "bindgen", "cc", diff --git a/Cargo.toml b/Cargo.toml @@ -28,7 +28,8 @@ image = { version = "0.25", features = ["jpeg", "png", "webp"] } indexmap = "2.6.0" log = "0.4.17" nostr = { version = "0.37.0", default-features = false, features = ["std", "nip49"] } -nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "b1bc794e9e5f2fb27dad0f95b6974ed2b81872d0" } +#nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "b1bc794e9e5f2fb27dad0f95b6974ed2b81872d0" } +nostrdb = "0.5.2" notedeck = { path = "crates/notedeck" } notedeck_chrome = { path = "crates/notedeck_chrome" } notedeck_columns = { path = "crates/notedeck_columns" }