Skip to content

Releases: TychoTheTaco/Twitch-Drops-Bot

v1.3.3

26 Oct 19:56
Compare
Choose a tag to compare
  • Added options to disable auto claiming of drops and community points
  • Added notifications for drop progress
  • Bug fixes

v1.3.2

22 Oct 06:05
Compare
Choose a tag to compare
  • Fixed config parsing error (#240)
  • Bug fix for telegram notifications
  • Handle rate limit for notifications

v1.3.1

19 Oct 05:12
Compare
Choose a tag to compare

⚠️This release requires a different format of the config when using notifications! See the docs for the new format ⚠️

  • Removed escape symbols when logging to file (#201)
  • Added support for Telegram notifications (#190)
  • Added notifications for community points (#228)
  • Added notifications when a drop is ready to claim

v1.3.0

18 Sep 20:08
Compare
Choose a tag to compare
  • Fixed issue claiming drops due to new Twitch integrity check
  • Allow using game names in the config instead of IDs
  • headless option is now automatically enabled when using docker
  • Updated dependencies
  • Bug fixes

v1.2.5

11 Aug 17:15
Compare
Choose a tag to compare
  • Fixed a bug that caused the app to crash when certain campaigns were sorted (#174)

v1.2.4

11 Aug 07:53
Compare
Choose a tag to compare
  • The bot will now consider the broadcasters list when choosing a campaign to work on. This only applies when there are multiple campaigns for a game AND they end at the same time, If those conditions are met, then the bot will go through the broadcasters and pick the first one that is streaming that campaign. (#172)

v1.2.3

05 Aug 05:08
Compare
Choose a tag to compare
  • Fixed TUI not updating drop campaigns table (#138)
  • Updated packages

v1.2.2

08 Jul 06:36
Compare
Choose a tag to compare
  • Fixed a bug that caused the TUI to show the incorrect version when there was an update available (#122)
  • Added the option to log in with an auth token instead of username and password (#130). Simply use the --auth-token command line option or auth_token config option.

v1.2.1

09 Jun 03:30
Compare
Choose a tag to compare
  • Fixed errors watching streams when no drop campaigns active (#121)
  • Fixed issue with progress bar not updating sometimes

v1.2.0

07 Jun 04:16
Compare
Choose a tag to compare
  • Added Discord web hook notifications. You can be notified on discord when the bot finds a new Drops campaign or claims a Drop. They can be enabled by adding this to the config:
"notifications": {
        "discord": [
            {
                "webhook_url": "my_webhook_url",
                "events": [
                    "new_drops_campaign", "drop_claimed"
                ],
                "games": "all"
            }
        ]
    }
  • Bug fixes