This commit is contained in:
benji7425 2017-08-27 19:11:47 +01:00
parent 790804a73f
commit 0cbd38d10f
3 changed files with 11 additions and 1 deletions

View File

@ -10,9 +10,16 @@
- Remove an existing feed
### Updated
- Make save file configurable to allow use as a module with other bots
- Update config file structure
- Now uses discord.js instead of discord.io
- YouTube links automatically handled; no more separate "YouTube mode" config item
### Fixed
- Crash if trying to view feeds list before any feeds have been set up
## v1.4.0
### Added

View File

@ -125,6 +125,9 @@ function removeFeed(client, guildsData, message) {
}
function viewFeeds(client, guildData, message) {
if (!guildData)
return;
message.reply(guildData.feeds.map(f => f.toString()).join("\n"));
}

View File

@ -1,6 +1,6 @@
{
"name": "discord-bot-feed-linker",
"version": "2.0.0",
"version": "2.1.0-b1",
"description": "",
"main": "app/index.js",
"scripts": {