Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit b2414b650adb4f67534553f50f92c14004fb9aa8 Author: Wim <wim@42.be> Date: Sun May 27 22:45:37 2018 +0000 Release v1.10.1 diff --git a/README.md b/README.md index 1bb0d75..9be55c7 100644 --- a/README.md +++ b/README.md @@ -697 +697 @@ See https://github.com/42wim/matterbridge/wiki    # Installing  ## Binaries -* Latest stable release [v1.10.0](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.10.1](https://github.com/42wim/matterbridge/releases/latest)  * Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/)    ## Building diff --git a/changelog.md b/changelog.md index 1075525..51b6041 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +115 @@ +# v1.10.1 +## Bugfix +* general: updated irc/xmpp/telegram libraries +* mattermost/slack/rocketchat: Fix iconurl regression. Closes #430 +* mattermost/slack: Use uuid instead of userid. Fixes #429 +* slack: Avatar spoofing from Slack to Discord with uppercase in nick doesn't work (#433) +* irc: Fix format string bug (irc) (#428) +* irc: Colorize username sent to IRC using its crc32 IEEE checksum (#423). See `ColorNicks` in matterbridge.toml.sample +* irc: Add support for CJK to/from utf-8 (irc). #400 +* telegram: Add QuoteFormat option (telegram). Closes #41. See `QuoteFormat` in matterbridge.toml.sample +* xmpp: Send attached files to XMPP in different message with OOB data and without body (#421) +  # v1.10.0  ## New features  * general: Add support for reloading all settings automatically after changing config except connection and gateway configuration. Closes #373 diff --git a/matterbridge.go b/matterbridge.go index 31dd7c9..803d49d 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -137 +137 @@ import (  )    var ( - version = "1.10.1-dev" + version = "1.10.1"   githash string  )