Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

PluralKit Support, message edits, bugfixes

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Oct 23:35
· 7 commits to main since this release
fd7db38

What's Changed

  • Support PluralKit, message edits, IRC channel passwords by @aronson in #51

Full Changelog: 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.