• 6.0.0 fd7db38489

    github-actions[bot] released this 2023-10-30 23:25:14 +00:00 | 16 commits to main since this release

    What's Changed

    Full Changelog: https://github.com/aronson/discord-irc/compare/5.0.0...6.0.0

    Enabling PluralKit support

    Edit config.json to add the property at the bot level:

    {
      // Other properties...
      "pluralKit": true,
      // Other properties...
    }
    

    Note that autoproxy is not supported. You will need to use the new property ignoreUsers->roles to get the desired behavior:

    {
      // ...
      "ignoreUsers": {
        "roles": ["1144086714797793400", "114408954499793702"]
      },
      // ...
    }
    

    Enabling message edits:

    Edit config.json to add the property at the bot level:

    {
      // Other properties...
      "sendMessageUpdates": true,
      // Other properties...
    }
    

    It is false by default.

    Downloads