summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASE_NOTES.md8
-rw-r--r--doc/style.css2
-rw-r--r--utils.c2
3 files changed, 10 insertions, 2 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 23a2a17..b9f953d 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,5 +1,13 @@
1# Release Notes 1# Release Notes
2 2
3## UNRELEASED
4
5Notifications are now shown in a more compact way (i.e. all reactions are shown just above your post, instead of repeating the post *ad nauseam* for every reaction).
6
7New command-line option `unmute` to, well, no-longer-mute an actor.
8
9The private timeline now includes a mark between new posts and "already seen" ones.
10
3## 2.69 "Yin/Yang of Love" 11## 2.69 "Yin/Yang of Love"
4 12
5Added support for subscribing to LitePub (Pleroma-style) Fediverse Relays like e.g. https://fedi-relay.gyptazy.com to improve federation. See `snac(8)` (the Administrator Manual) for more information on how to use this feature. 13Added support for subscribing to LitePub (Pleroma-style) Fediverse Relays like e.g. https://fedi-relay.gyptazy.com to improve federation. See `snac(8)` (the Administrator Manual) for more information on how to use this feature.
diff --git a/doc/style.css b/doc/style.css
index 546cfb3..87c5598 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -29,7 +29,7 @@ pre { overflow-x: scroll; }
29.snac-list-of-lists { padding-left: 0; } 29.snac-list-of-lists { padding-left: 0; }
30.snac-list-of-lists li { display: inline; border: 1px solid #a0a0a0; border-radius: 25px; 30.snac-list-of-lists li { display: inline; border: 1px solid #a0a0a0; border-radius: 25px;
31 margin-right: 0.5em; padding-left: 0.5em; padding-right: 0.5em; } 31 margin-right: 0.5em; padding-left: 0.5em; padding-right: 0.5em; }
32.snac-no-more-unseen-posts { border-top: 1px solid #000; border-bottom: 1px solid #000; padding: 0.5em 0; margin: 1em 0; } 32.snac-no-more-unseen-posts { border-top: 1px solid #a0a0a0; border-bottom: 1px solid #a0a0a0; padding: 0.5em 0; margin: 1em 0; }
33@media (prefers-color-scheme: dark) { 33@media (prefers-color-scheme: dark) {
34 body, input, textarea { background-color: #000; color: #fff; } 34 body, input, textarea { background-color: #000; color: #fff; }
35 a { color: #7799dd } 35 a { color: #7799dd }
diff --git a/utils.c b/utils.c
index eb83884..946897f 100644
--- a/utils.c
+++ b/utils.c
@@ -72,7 +72,7 @@ static const char *default_css =
72 ".snac-list-of-lists { padding-left: 0; }\n" 72 ".snac-list-of-lists { padding-left: 0; }\n"
73 ".snac-list-of-lists li { display: inline; border: 1px solid #a0a0a0; border-radius: 25px;\n" 73 ".snac-list-of-lists li { display: inline; border: 1px solid #a0a0a0; border-radius: 25px;\n"
74 " margin-right: 0.5em; padding-left: 0.5em; padding-right: 0.5em; }\n" 74 " margin-right: 0.5em; padding-left: 0.5em; padding-right: 0.5em; }\n"
75 ".snac-no-more-unseen-posts { border-top: 1px solid #000; border-bottom: 1px solid #000; padding: 0.5em 0; margin: 1em 0; }\n" 75 ".snac-no-more-unseen-posts { border-top: 1px solid #a0a0a0; border-bottom: 1px solid #a0a0a0; padding: 0.5em 0; margin: 1em 0; }\n"
76 "@media (prefers-color-scheme: dark) { \n" 76 "@media (prefers-color-scheme: dark) { \n"
77 " body, input, textarea { background-color: #000; color: #fff; }\n" 77 " body, input, textarea { background-color: #000; color: #fff; }\n"
78 " a { color: #7799dd }\n" 78 " a { color: #7799dd }\n"