summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar shtrophic2024-11-23 19:04:30 +0100
committerGravatar shtrophic2024-11-23 19:04:30 +0100
commitcbd89bdf16674b577cee7d7533ea69014cb307e7 (patch)
treef46fd2cefb63b083c9e2c0be46200bb6916978ac
parentMerge branch 'master' into master (diff)
parentVersion 2.64 RELEASED. (diff)
downloadsnac2-cbd89bdf16674b577cee7d7533ea69014cb307e7.tar.gz
snac2-cbd89bdf16674b577cee7d7533ea69014cb307e7.tar.xz
snac2-cbd89bdf16674b577cee7d7533ea69014cb307e7.zip
Merge remote-tracking branch 'upstream/master'
-rw-r--r--RELEASE_NOTES.md12
-rw-r--r--snac.h2
2 files changed, 13 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index f46f958..6ec959c 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,5 +1,17 @@
1# Release Notes 1# Release Notes
2 2
3## 2.64
4
5Some tweaks for better integration with https://bsky.brid.gy (the BlueSky bridge by brid.gy).
6
7A corner case bug in the media proxying code has been fixed.
8
9Hashtags can now include underscores.
10
11The server now creates a pidfile inside the data directory.
12
13Mastodon API: fixed a crash in the notification code, fixed autocapitalization in the OAuth login field (contributed by fkooman).
14
3## 2.63 15## 2.63
4 16
5The server can now act as a proxy for all image, audio or video media coming from other account's posts (both from the Web UI and the Mastodon API). This way, other servers will see media requests coming from the server IP, not the user's, improving privacy. This is controlled by setting the `proxy_media` boolean field to `server.json` to true. 17The server can now act as a proxy for all image, audio or video media coming from other account's posts (both from the Web UI and the Mastodon API). This way, other servers will see media requests coming from the server IP, not the user's, improving privacy. This is controlled by setting the `proxy_media` boolean field to `server.json` to true.
diff --git a/snac.h b/snac.h
index ff02539..ca6d63a 100644
--- a/snac.h
+++ b/snac.h
@@ -1,7 +1,7 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */ 2/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
3 3
4#define VERSION "2.63" 4#define VERSION "2.64"
5 5
6#define USER_AGENT "snac/" VERSION 6#define USER_AGENT "snac/" VERSION
7 7