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 - Remove an existing feed
### Updated ### 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 - Now uses discord.js instead of discord.io
- YouTube links automatically handled; no more separate "YouTube mode" config item - 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 ## v1.4.0
### Added ### Added

View file

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

View file

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