ep_rss 11.0.10 → 11.0.12

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.
@@ -0,0 +1,30 @@
1
+ name: Dependabot Automerge
2
+ permissions:
3
+ contents: write
4
+ pull-requests: write
5
+ on:
6
+ workflow_run:
7
+ workflows:
8
+ - Node.js Package
9
+ types:
10
+ - completed
11
+
12
+ jobs:
13
+ automerge:
14
+ if: >
15
+ github.event.workflow_run.conclusion == 'success' &&
16
+ github.event.workflow_run.event == 'pull_request' &&
17
+ github.event.workflow_run.actor.login == 'dependabot[bot]'
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v6
22
+
23
+ - name: Automerge
24
+ uses: "pascalgn/automerge-action@v0.16.4"
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
+ MERGE_METHOD: squash
28
+ MERGE_LABELS: ""
29
+ MERGE_RETRY_SLEEP: "100000"
30
+
package/README.md CHANGED
@@ -1,10 +1,27 @@
1
+ # ep_rss
2
+
1
3
  ![Publish Status](https://github.com/ether/ep_rss/workflows/Node.js%20Package/badge.svg) [![Backend Tests Status](https://github.com/ether/ep_rss/actions/workflows/test-and-release.yml/badge.svg)](https://github.com/ether/ep_rss/actions/workflows/test-and-release.yml)
2
4
 
3
- # Description
4
- Creates an RSS feed and prefixes it to the end of a pad IE as atom.xml IE http://bacon.com/p/yummi/feed
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
- # Installation
7
- Just install then click the Share and Embed button to get the RSS feed URL
25
+ ## License
8
26
 
9
- # TODO
10
- Smarter creation of new items upon modification
27
+ Apache-2.0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ep_rss",
3
3
  "description": "Get an RSS feed of pad updates",
4
- "version": "11.0.10",
4
+ "version": "11.0.12",
5
5
  "author": {
6
6
  "name": "John McLear",
7
7
  "email": "john@mclear.co.uk",