Compare commits

..

No commits in common. "522745e0241ccdb17a03ad491eb16438e26c2381" and "b62886da0131f51c40fb1099dfd697bdd87bb43f" have entirely different histories.

7 changed files with 37 additions and 43 deletions

@ -1 +1 @@
Subproject commit bbf5945287455d0a399cea016e9063a0bd0e9473 Subproject commit e9636bd8ff6e3d627240cf9a04d8076014d3609e

@ -1 +1 @@
Subproject commit 3ee3528a8c17c696c918336874a0a620c89e014a Subproject commit c81ad0b9cf5d58ff561bbd3c9e79bd803275ba50

View File

@ -55,10 +55,10 @@ Generic notes:
This is not the Element/Synapse default as that would be pointless to list. This is not the Element/Synapse default as that would be pointless to list.
```jsonnet ```json5
{ {
"ban": 50, ban: 50,
"events": { events: {
"im.vector.modular.widgets": 50, "im.vector.modular.widgets": 50,
"m.room.avatar": 50, "m.room.avatar": 50,
"m.room.canonical_alias": 13, "m.room.canonical_alias": 13,
@ -74,16 +74,16 @@ This is not the Element/Synapse default as that would be pointless to list.
"m.room.topic": 25, "m.room.topic": 25,
"m.space.child": 50, "m.space.child": 50,
}, },
"events_default": 0, events_default: 0,
"historical": 100, historical: 100,
"invite": 0, invite: 0,
"kick": 25, kick: 25,
"redact": 25, redact: 25,
"state_default": 50, state_default: 50,
"users": { users: {
// READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT! // READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT!
}, },
"users_default": 0, users_default: 0,
} }
``` ```
@ -111,10 +111,10 @@ This is not the Element/Synapse default as that would be pointless to list.
### Medium version ### Medium version
```jsonnet ```json5
{ {
"ban": 50, ban: 50,
"events": { events: {
"im.vector.modular.widgets": 50, "im.vector.modular.widgets": 50,
"m.room.avatar": 50, "m.room.avatar": 50,
"m.room.canonical_alias": 13, "m.room.canonical_alias": 13,
@ -130,16 +130,16 @@ This is not the Element/Synapse default as that would be pointless to list.
"m.room.topic": 25, "m.room.topic": 25,
"m.space.child": 50, "m.space.child": 50,
}, },
"events_default": 0, events_default: 0,
"historical": 100, historical: 100,
"invite": 50, invite: 50,
"kick": 25, kick: 25,
"redact": 25, redact: 25,
"state_default": 50, state_default: 50,
"users": { users: {
// READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT! // READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT!
}, },
"users_default": 0, users_default: 0,
} }
``` ```
@ -148,10 +148,10 @@ This is not the Element/Synapse default as that would be pointless to list.
### Paranoid version ### Paranoid version
```jsonnet ```json5
{ {
"ban": 50, ban: 50,
"events": { events: {
"im.vector.modular.widgets": 100, "im.vector.modular.widgets": 100,
"m.room.avatar": 100, "m.room.avatar": 100,
"m.room.canonical_alias": 100, "m.room.canonical_alias": 100,
@ -167,15 +167,15 @@ This is not the Element/Synapse default as that would be pointless to list.
"m.room.topic": 100, "m.room.topic": 100,
"m.space.child": 100, "m.space.child": 100,
}, },
"events_default": 0, events_default: 0,
"historical": 100, historical: 100,
"invite": 100, invite: 100,
"kick": 50, kick: 50,
"redact": 50, redact: 50,
"state_default": 100, state_default: 100,
"users": { users: {
// READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT! // READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT!
}, },
"users_default": 0, users_default: 0,
} }
``` ```

View File

@ -17,9 +17,6 @@ Replace X with the feed ID seen in `!rss subscriptions`:
- default: `!rss template X New post in $feed_title: [$title]($link)` - default: `!rss template X New post in $feed_title: [$title]($link)`
- Matrix: `!rss template X [$feed_title]($feed_link): [$title]($link) ($date) $summary` - Matrix: `!rss template X [$feed_title]($feed_link): [$title]($link) ($date) $summary`
- IRC: `!rss template X $link $feed_title: $title ($date) $summary` - IRC: `!rss template X $link $feed_title: $title ($date) $summary`
- Line length is limited so if the URL is long, it's the most important thing.
- IRCish: `!rss template X $title $link $summary $date $feed_title`
- Still compatibleish with IRC, but in case the client has preview, it may be more useful now.
Note: at the time of writing `$author` is not supported? Note: at the time of writing `$author` is not supported?

View File

@ -46,9 +46,6 @@ This contains the whole JSON line to easen copy-pasting as my events are missing
- default: `"template": "New post in $FEEDNAME: $LINK",` - default: `"template": "New post in $FEEDNAME: $LINK",`
- Matrix: `"template": "$FEEDTITLE: $AUTHOR $LINK ($DATE) $SUMMARY",` - Matrix: `"template": "$FEEDTITLE: $AUTHOR $LINK ($DATE) $SUMMARY",`
- IRC: `"template": "$URL $FEEDTITLE: $TITLE $AUTHOR ($DATE) $SUMMARY",` - IRC: `"template": "$URL $FEEDTITLE: $TITLE $AUTHOR ($DATE) $SUMMARY",`
- Line length is limited so if the URL is long, it's the most important thing.
- IRCish: `"template": "$TITLE $URL $SUMMARY $AUTHOR $DATE $FEEDTITLE",`
- Still compatibleish with IRC, but in case the client has preview, it may be more useful now.
## installation ## installation

@ -1 +1 @@
Subproject commit 41835421a9f5e7a1861750e824869c3e30d5fd97 Subproject commit f5f88ef4d0ca0aa8b3bc29cc42031786a1db3181

@ -1 +1 @@
Subproject commit 7ac9b9a7ccd9c52cbcc35d04a4633daa54396f65 Subproject commit 5d00ccaf6bccea0c5f657304d396ac159316408c