Browse Source

Removed completed items

deadtom 2 weeks ago
parent
commit
8aff7078bd
1 changed files with 0 additions and 47 deletions
  1. 0 47
      TODO.md

+ 0 - 47
TODO.md

@@ -3,50 +3,3 @@
 * Add option to set up Kofi subscriber-only awards
 * Add customizable celebration emojis in messages for things like goals and milestones.
 * Add field in Kofi settings for streamer to list other Kofi perks, which will be displayed on the OCB info page.
-
-### v0.2.4 changes
-* https://github.com/owncast/owncast/pull/4362
-Fires a webhook when a user follows.
-Payload:
-```
-{
-  "eventData": {
-    "timestamp": "2025-05-28T11:43:53.103230136+04:00",
-    "id": "o8v_LpBNRz",
-    "name": "john",
-    "username": "john@mastodon.social",
-    "image": ""
-  },
-  "type": "FEDIVERSE_ENGAGEMENT_FOLLOW"
-}
-```
-* https://github.com/owncast/owncast/pull/4410
-Adds server status to all webhook event data. Might be able to shave off some code.
-Old payload:
-```
-{
-  "type": "USER_JOINED",
-  "eventData": {
-    "user": {...},
-    "timestamp": "2023-01-01T00:00:00Z"
-  }
-}
-```
-New payload:
-```
-{
-  "type": "USER_JOINED", 
-  "eventData": {
-    "user": {...},
-    "timestamp": "2023-01-01T00:00:00Z",
-    "status": {
-      "online": true,
-      "viewerCount": 5,
-      "streamTitle": "My Stream",
-      "versionNumber": "1.2.3",
-      ...
-    },
-    "serverURL": "https://myinstance.example.com"
-  }
-}
-```