5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00

Release v1.10.1

This commit is contained in:
Wim 2018-05-27 22:45:37 +02:00
parent 07885f5810
commit dba259e9f1
3 changed files with 14 additions and 2 deletions

View File

@ -69,7 +69,7 @@ See https://github.com/42wim/matterbridge/wiki
# Installing # Installing
## Binaries ## 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/) * Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/)
## Building ## Building

View File

@ -1,3 +1,15 @@
# 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 # v1.10.0
## New features ## New features
* general: Add support for reloading all settings automatically after changing config except connection and gateway configuration. Closes #373 * general: Add support for reloading all settings automatically after changing config except connection and gateway configuration. Closes #373

View File

@ -13,7 +13,7 @@ import (
) )
var ( var (
version = "1.10.1-dev" version = "1.10.1"
githash string githash string
) )