mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 18:48:06 +01:00
Revert "Add titles to RSS feeds again"
It seems that most RSS/Atom feed readers simply suck and should be able to parse the entries' body instead.
This reverts commit daaf3832
This commit is contained in:
parent
1661561640
commit
12e729366e
3 changed files with 0 additions and 6 deletions
|
@ -23,11 +23,7 @@ I highly suggest only ever running the `main` branch in production!
|
||||||
- Allow higher resolution images. (4096x4096 instead of the previous limit of 1920x1080)
|
- Allow higher resolution images. (4096x4096 instead of the previous limit of 1920x1080)
|
||||||
- Allow posting polls with only one poll option (if `MIN_POLL_OPTIONS` is set to 1 on your instance).
|
- Allow posting polls with only one poll option (if `MIN_POLL_OPTIONS` is set to 1 on your instance).
|
||||||
- Added oatstodon flavour (taken from [types.pl fork](https://github.com/ralsei/types.pl), by [@oat@hellsite.site](https://hellsite.site/@oat))
|
- Added oatstodon flavour (taken from [types.pl fork](https://github.com/ralsei/types.pl), by [@oat@hellsite.site](https://hellsite.site/@oat))
|
||||||
- RSS feeds have titles again.
|
|
||||||
- Account RSS feeds show the CW (if applicable).
|
|
||||||
- Tag RSS feeds show the handle (username if local, username@domain if remote) and the CW (if applicable).
|
|
||||||
- Emoji reactions on posts, a feature originally developed for [Nyastodon](https://git.bsd.gay/fef/nyastodon). Currently pending [merge into glitch-soc](https://github.com/glitch-soc/mastodon/pull/1980).
|
- Emoji reactions on posts, a feature originally developed for [Nyastodon](https://git.bsd.gay/fef/nyastodon). Currently pending [merge into glitch-soc](https://github.com/glitch-soc/mastodon/pull/1980).
|
||||||
|
|
||||||
## Previous differences now merged into glitch-soc
|
## Previous differences now merged into glitch-soc
|
||||||
- Fixed incorrect upload size limit display when adding new a new custom emoji. ([Pull request](https://github.com/glitch-soc/mastodon/pull/1763))
|
- Fixed incorrect upload size limit display when adding new a new custom emoji. ([Pull request](https://github.com/glitch-soc/mastodon/pull/1763))
|
||||||
- Everything merged into vanilla Mastodon
|
- Everything merged into vanilla Mastodon
|
||||||
|
|
|
@ -9,7 +9,6 @@ RSS::Builder.build do |doc|
|
||||||
|
|
||||||
@statuses.each do |status|
|
@statuses.each do |status|
|
||||||
doc.item do |item|
|
doc.item do |item|
|
||||||
item.title("New post#{" (CW: #{status.spoiler_text})" unless status.spoiler_text.empty?}")
|
|
||||||
item.link(ActivityPub::TagManager.instance.url_for(status))
|
item.link(ActivityPub::TagManager.instance.url_for(status))
|
||||||
item.pub_date(status.created_at)
|
item.pub_date(status.created_at)
|
||||||
item.description(rss_status_content_format(status))
|
item.description(rss_status_content_format(status))
|
||||||
|
|
|
@ -7,7 +7,6 @@ RSS::Builder.build do |doc|
|
||||||
|
|
||||||
@statuses.each do |status|
|
@statuses.each do |status|
|
||||||
doc.item do |item|
|
doc.item do |item|
|
||||||
item.title("New post by #{status.account.pretty_acct}#{" (CW: #{status.spoiler_text})" unless status.spoiler_text.empty?}")
|
|
||||||
item.link(ActivityPub::TagManager.instance.url_for(status))
|
item.link(ActivityPub::TagManager.instance.url_for(status))
|
||||||
item.pub_date(status.created_at)
|
item.pub_date(status.created_at)
|
||||||
item.description(rss_status_content_format(status))
|
item.description(rss_status_content_format(status))
|
||||||
|
|
Loading…
Reference in a new issue