Skip to content

Releases: Jozeevis/MTG-Spoilers-Discord-bot

MTG Spoiler Discord Bot TS 2.2.4

09 Aug 23:21
Compare
Choose a tag to compare

Fixed breaking change with Scryfall API now requiring additional headers to be send with any requests.

Thanks to @Melriken for pointing it out and the fix!

NOTE: All previous releases on this page will no longer work as is, and will have to have these headers added to the Scryfall API request as well to be fixed

MTG Spoiler Discord Bot TS 2.2.3

26 Apr 16:02
Compare
Choose a tag to compare

All logging will now also be logged to a text file in the data directory.
Added basic Docker support (thanks to @samstiyer).

MTG Spoiler Discord Bot TS 2.2.1

20 Mar 10:06
Compare
Choose a tag to compare

First version using Discord.js v14.8.0

MTG Spoiler Discord bot TS 2.1.2

19 Mar 09:42
Compare
Choose a tag to compare

This is the last version of the bot that is based on major version 12 of Discord.js
Following versions will be using a newer version of Discord.js.

NOTE: this version uses an old import for the auth token, if you're following the installation guide, change the following line in bot.ts:

import auth from './auth';
to
import auth from './auth.json';

MTG Spoiler Discord bot JS 1.2.0

06 Sep 17:52
Compare
Choose a tag to compare

This is the last version written in vanilla javascript.
Following versions will be written in typescript, and thus will have to be compiled to be run.

NOTE: this version uses an old import for the auth token, if you're following the installation guide, change the following line in bot.js:

import auth from './auth.js';
to
import auth from './auth.json';

Also ignore any steps after running 'npm i' in the guide, you can immediately start running the bot by using the command 'node bot.js' in the project root.