Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,9 @@ MYSQL_USER='YOUR_MYSQL_USER'
MYSQL_PASSWORD='YOUR_MYSQL_PASSWORD'
MYSQL_DATABASE='YOUR_DATABASE_NAME'

# Twitch
TWITCH_CLIENT_ID='YOUR_TWITCH_CLIENT_ID'
TWITCH_CLIENT_SECRET='YOUR_TWITCH_CLIENT_SECRET'

# Configuration
CONFIG_UPDATE_INTERVAL='60'
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Feedr
The next best Discord Bot to notify your members about YouTube video uploads!
Feedr checks for new uploads every **15** seconds
Feedr checks for:
* YouTube uploads every **10** seconds
* Twitch streams are live every **2** seconds

Invite the bot [here](https://discord.com/oauth2/authorize?client_id=1243939861996503171&permissions=274877959232&integration_type=0&scope=applications.commands+bot)

Expand Down Expand Up @@ -29,6 +31,10 @@ Feedr strives for constant improvement, so here's what will be implemented
* Add Reactions

# Changelog
## 1.2.0
* Added Twitch feed
* `platform` added to both **/track** and **/untrack**

## 1.1.0
* Replies are no longer deferred
* Messages can now be sent in Announcement channels [1.0.3]
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "videonotifier",
"module": "src/index.ts",
"type": "module",
"version": "1.1.0",
"version": "1.2.0",
"devDependencies": {
"@types/bun": "1.1.6"
},
Expand Down
Loading