Skip to content

Releases: TychoTheTaco/Twitch-Drops-Bot

v1.1.0

01 May 03:35
Compare
Choose a tag to compare
  • Added options for checking for new updates. "release" will only check for new release versions of the bot, while "dev" will check for both new development versions and release versions. The old do_update_check option has been removed (replaced by enabled). The bot will check for updates once per day if enabled.
updates: {
  type: "release" | "dev",
  enabled: boolean
}
  • Added options for logging. You can now disable the log file or change the file the bot logs to. Note that disabling logging will make it very difficult to diagnose any issues. Also note that if a custom file path is specified, the file will be overwritten every time the bot is restarted.
logging: {
  enabled: boolean,
  file: string,
  level: "debug" | "info" | "warn" | "error"
}
  • Fixed some bugs
  • Removed some unnecessary logging

v1.0.1

20 Apr 19:48
Compare
Choose a tag to compare

Fixed a crashing issue on startup.

v1.0.0

20 Apr 07:03
Compare
Choose a tag to compare

First official release. This release adds a new experimental feature: tui. This will show current stats and drop progress in a nicer text-based UI. You can enable it by adding this to the config file:

"tui": {
  "enabled": true
}