ep_rss 11.0.11 → 11.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/automerge.yml +1 -1
- package/README.md +23 -6
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
automerge:
|
|
14
14
|
if: >
|
|
15
15
|
github.event.workflow_run.conclusion == 'success' &&
|
|
16
|
-
github.event.workflow_run.event == '
|
|
16
|
+
github.event.workflow_run.event == 'push' &&
|
|
17
17
|
github.event.workflow_run.actor.login == 'dependabot[bot]'
|
|
18
18
|
runs-on: ubuntu-latest
|
|
19
19
|
steps:
|
package/README.md
CHANGED
|
@@ -1,10 +1,27 @@
|
|
|
1
|
+
# ep_rss
|
|
2
|
+
|
|
1
3
|
 [](https://github.com/ether/ep_rss/actions/workflows/test-and-release.yml)
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
Exposes an RSS feed for each pad at `/p/{padId}/feed`.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
pnpm run plugins i ep_rss
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Settings
|
|
14
|
+
|
|
15
|
+
Optional stale time (milliseconds before a new RSS item is generated) can be set in `settings.json`:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
"rss": {
|
|
19
|
+
"staleTime": 300000
|
|
20
|
+
}
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Defaults to 5 minutes if not configured.
|
|
5
24
|
|
|
6
|
-
|
|
7
|
-
Just install then click the Share and Embed button to get the RSS feed URL
|
|
25
|
+
## License
|
|
8
26
|
|
|
9
|
-
|
|
10
|
-
Smarter creation of new items upon modification
|
|
27
|
+
Apache-2.0
|