Skip to content

Releases: danqzq/unity-twitch-chat-interactions

v1.32

06 Jan 19:05
Compare
Choose a tag to compare
  • Fixed commands without arguments not working [Issue #10]
  • Fixed Mac Support issue on Application.OpenURL [Issue #11]
  • Added a warning for suggesting to add ports in case of http://localhost/ being occupied [Issue #12]
  • Added an error message to show up when "/" is not appended at the end the redirect URI

Kudos to EliJArmstrong for finding issues and contributing! 🙌

v1.31

19 Sep 14:15
Compare
Choose a tag to compare
  • Fixed TwitchUser not showing up as a valid argument in the command list window
  • Fixed Twitch Client ID help box not going away when filling up the Client ID field

v1.3

26 Jul 21:46
Compare
Choose a tag to compare
  • Added a way to send messages to the chat from the client:
TwitchManager.SendChatMessage(message)
  • You can now access which user is calling a command by setting the first parameter of type TwitchUser for your command function:
[TwitchCommand("test")]
public void Test(TwitchUser user, string msg)
{
    Debug.Log($"{user.displayname} says {msg}");
}
  • The TwitchUser struct has been updated (fixed some values not changing like the user id and room id)
  • Fixed a bug where changes applied to the Twitch Settings were not getting saved.

v1.2

11 May 13:58
23575e1
Compare
Choose a tag to compare
  • Integrated keep alive (PONG response on PING) [by Hoier]

v1.1

14 Jul 16:47
Compare
Choose a tag to compare
  • Added the ability to optionally change the redirect URI for the authorization page.
  • Fixed a bug with aliases not calling their appropriate commands.

v1.0

13 Jul 11:37
Compare
Choose a tag to compare

Initial release!