Releases: aronson/discord-irc
Auto-managed webhooks
Auto-managed webhooks
The webhook config format has changed. It's now really simple:
{
"webhooks": true
}
If it's set to true, the bot will create and re-use its own webhooks. No need to create them manually anymore. You can find them under the integrations tab in server settings for the bot.
Note: this means the nickname
field in config cannot contain the string discord
.
What's Changed
Full Changelog: 6.0.3...6.1.0
Release 6.0.3
IRC Ping Hotfix
This fixes the case where when sending a message from the IRC side to the Discord side of the format crashme @ crashme
the bot would crash.
What's Changed
Full Changelog: 6.0.1...6.0.2
Bugfix Update
What's Changed
Full Changelog: 6.0.0...6.0.1
PluralKit Support, message edits, bugfixes
What's Changed
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.
Flood protection, long message support, and FreeBSD builds
Better IRC status update events
What's Changed
Full Changelog: 4.9.3...4.9.4
Ignore Config Fix
Better Auto-Send Commands
What's Changed
Full Changelog: 4.9.1...4.9.2
TLS and Custom Port Support
What's Changed
- Speed up load times and improve logging on join events by @aronson in #42
- Support TLS connections and custom ports by @aronson in #41
To enable TLS, provided your IRC server supports it, configure like so (changing the port to the TLS port provided by your IRC server admins):
{
// ...
"tls": true, // false by default
"port": 6697 // common port for IRC over TLS
// ...
}
Full Changelog: 4.9.0...4.9.1