Thumbnail

rani/matterbridge.git

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

commit 0e74a090ce8915385da7ee99589873b7ea32cd0b Author: Wim <wim@42.be> Date: Thu Dec 01 22:15:40 2016 +0000 Release v0.9.0 diff --git a/README.md b/README.md index 471ec62..3c80836 100644 --- a/README.md +++ b/README.md @@ -3513 +3513 @@ docker run -ti -v /tmp/matterbridge.toml:/matterbridge.toml 42wim/matterbridge    ## binaries  Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) -* For use with mattermost 3.5.0+ [v0.8.1](https://github.com/42wim/matterircd/releases/tag/v0.8.1) +* For use with mattermost 3.5.0+ [v0.9.0](https://github.com/42wim/matterircd/releases/tag/v0.9.0)  * For use with mattermost 3.3.0 - 3.4.0 [v0.7.1](https://github.com/42wim/matterircd/releases/tag/v0.7.1)  * For use with mattermost 3.0.0 - 3.2.0 [v0.5.0](https://github.com/42wim/matterircd/releases/tag/v0.5.0) (not maintained anymore)    ## Compatibility  ### Mattermost -* Matterbridge v0.8.1 works with mattermost 3.5.0+ [3.5.0 release](https://github.com/mattermost/platform/releases/tag/v3.5.0) +* Matterbridge v0.9.0 works with mattermost 3.5.0+ [3.5.1 release](https://github.com/mattermost/platform/releases/tag/v3.5.1)  * Matterbridge v0.7.1 works with mattermost 3.3.0 - 3.4.0 [3.4.0 release](https://github.com/mattermost/platform/releases/tag/v3.4.0)  * Matterbridge v0.5.0 works with mattermost 3.0.0 - 3.2.0 [3.2.0 release](https://github.com/mattermost/platform/releases/tag/v3.2.0)   diff --git a/changelog.md b/changelog.md index ec1d147..cf484d4 100644 --- a/changelog.md +++ b/changelog.md @@ -116 +121 @@ -# v0.9.0-dev +# v0.9.0  ## New features  * Telegram: New protocol support added (https://telegram.org)  * Hipchat: Add sample config to connect to hipchat via xmpp -* Add support for dynamic Iconurl #43 - -## General  * discord: add "Bot " tag to discord tokens automatically +* slack: Add support for dynamic Iconurl #43 +* general: Add ```gateway.inout``` config option for bidirectional bridges #85 +* general: Add ```[general]``` section so that ```RemoteNickFormat``` can be set globally    ## Bugfix  * general: when using samechannelgateway NickFormat get doubled by the NICK #77  * general: fix ShowJoinPart for messages from irc bridge #72 +* gitter: fix high cpu usage #89  * irc: fix !users command #78 +* xmpp: fix keepalive +* xmpp: do not relay delayed/empty messages +* slack: Replace id-mentions to usernames #86 +* mattermost: fix public links not working (API changes)    # v0.8.1  ## Bugfix diff --git a/matterbridge.go b/matterbridge.go index cb96667..11b9a5d 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -97 +97 @@ import (   log "github.com/Sirupsen/logrus"  )   -var version = "0.9.0-dev" +var version = "0.9.0"    func init() {   log.SetFormatter(&log.TextFormatter{FullTimestamp: true}) diff --git a/matterbridge.toml.simple b/matterbridge.toml.simple index d39a33f..b3fd8f4 100644 --- a/matterbridge.toml.simple +++ b/matterbridge.toml.simple @@ -236 +2310 @@ enable=true account="irc.freenode" channel="#testing"   - [[gateway.inout]] + [[gateway.in]] + account="mattermost.work" + channel="off-topic" + + [[gateway.out]] account="mattermost.work" channel="off-topic"