Compare commits

..

2 Commits

Author SHA1 Message Date
baba720749 Bumping version to 0.0.11 2024-09-02 13:36:18 -07:00
1ec22599cc web: make pre blocks look like code blocks in email 2024-09-02 13:35:58 -07:00
7 changed files with 12 additions and 11 deletions

10
Cargo.lock generated
View File

@ -2034,7 +2034,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "letterbox"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"build-info",
"build-info-build",
@ -2393,7 +2393,7 @@ dependencies = [
[[package]]
name = "notmuch"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"itertools",
"log",
@ -2983,7 +2983,7 @@ dependencies = [
[[package]]
name = "procmail2notmuch"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"anyhow",
]
@ -3750,7 +3750,7 @@ dependencies = [
[[package]]
name = "server"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"ammonia",
"anyhow",
@ -3835,7 +3835,7 @@ dependencies = [
[[package]]
name = "shared"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"build-info",
"notmuch",

View File

@ -1,6 +1,6 @@
[package]
name = "notmuch"
version = "0.0.10"
version = "0.0.11"
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.10"
version = "0.0.11"
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 = "server"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
default-run = "server"

View File

@ -1,6 +1,6 @@
[package]
name = "shared"
version = "0.0.10"
version = "0.0.11"
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.10"
version = "0.0.11"
name = "letterbox"
repository = "https://github.com/seed-rs/seed-quickstart"
authors = ["Bill Thiede <git@xinu.tv>"]

View File

@ -27,7 +27,8 @@
color: inherit !important;
}
.body.mail code {
.body.mail code,
.body.mail pre {
color: var(--color-text);
background-color: var(--color-bg-secondary);
}