Compare commits

...

3 Commits

Author SHA1 Message Date
bd2803f81c Bumping version to 0.0.126 2025-01-29 17:10:42 -08:00
215addc2c0 cargo sqlx prepare 2025-01-29 17:10:41 -08:00
69f8e24689 server: index newest news posts first 2025-01-29 17:10:26 -08:00
8 changed files with 15 additions and 13 deletions

10
Cargo.lock generated
View File

@ -2910,7 +2910,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "letterbox"
version = "0.0.125"
version = "0.0.126"
dependencies = [
"build-info",
"build-info-build",
@ -2936,7 +2936,7 @@ dependencies = [
[[package]]
name = "letterbox-server"
version = "0.0.125"
version = "0.0.126"
dependencies = [
"ammonia",
"anyhow",
@ -3457,7 +3457,7 @@ dependencies = [
[[package]]
name = "notmuch"
version = "0.0.125"
version = "0.0.126"
dependencies = [
"itertools 0.10.5",
"log",
@ -4252,7 +4252,7 @@ dependencies = [
[[package]]
name = "procmail2notmuch"
version = "0.0.125"
version = "0.0.126"
dependencies = [
"anyhow",
]
@ -5331,7 +5331,7 @@ dependencies = [
[[package]]
name = "shared"
version = "0.0.125"
version = "0.0.126"
dependencies = [
"build-info",
"notmuch",

View File

@ -1,6 +1,6 @@
[package]
name = "notmuch"
version = "0.0.125"
version = "0.0.126"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
[package]
name = "procmail2notmuch"
version = "0.0.125"
version = "0.0.126"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
{
"db_name": "PostgreSQL",
"query": "SELECT\n p.id,\n link,\n clean_summary\nFROM\n post AS p\nINNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts\nWHERE search_summary IS NULL LIMIT 100;\n",
"query": "SELECT\n p.id,\n link,\n clean_summary\nFROM\n post AS p\nINNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts\nWHERE search_summary IS NULL\nORDER BY date DESC\nLIMIT 100;\n",
"describe": {
"columns": [
{
@ -28,5 +28,5 @@
true
]
},
"hash": "40796cad420dcde83b5cc3c2401fbcf6a81b140dc8914d7a6cbb0800354ae08a"
"hash": "e90019c1e96c20318b23ef5671cf04e48b42477178d068ced4dba7bb6d5896d5"
}

View File

@ -1,6 +1,6 @@
[package]
name = "letterbox-server"
version = "0.0.125"
version = "0.0.126"
edition = "2021"
default-run = "letterbox-server"

View File

@ -5,4 +5,6 @@ SELECT
FROM
post AS p
INNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts
WHERE search_summary IS NULL LIMIT 100;
WHERE search_summary IS NULL
ORDER BY date DESC
LIMIT 100;

View File

@ -1,6 +1,6 @@
[package]
name = "shared"
version = "0.0.125"
version = "0.0.126"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,5 +1,5 @@
[package]
version = "0.0.125"
version = "0.0.126"
name = "letterbox"
repository = "https://github.com/seed-rs/seed-quickstart"
authors = ["Bill Thiede <git@xinu.tv>"]