mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 03:10:26 +00:00
Release v0.9.0
This commit is contained in:
parent
70c93d970c
commit
d81e6bf6ce
@ -35,13 +35,13 @@ docker run -ti -v /tmp/matterbridge.toml:/matterbridge.toml 42wim/matterbridge
|
|||||||
|
|
||||||
## binaries
|
## binaries
|
||||||
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
|
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.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)
|
* 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
|
## Compatibility
|
||||||
### Mattermost
|
### 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.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)
|
* 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)
|
||||||
|
|
||||||
|
13
changelog.md
13
changelog.md
@ -1,16 +1,21 @@
|
|||||||
# v0.9.0-dev
|
# v0.9.0
|
||||||
## New features
|
## New features
|
||||||
* Telegram: New protocol support added (https://telegram.org)
|
* Telegram: New protocol support added (https://telegram.org)
|
||||||
* Hipchat: Add sample config to connect to hipchat via xmpp
|
* 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
|
* 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
|
## Bugfix
|
||||||
* general: when using samechannelgateway NickFormat get doubled by the NICK #77
|
* general: when using samechannelgateway NickFormat get doubled by the NICK #77
|
||||||
* general: fix ShowJoinPart for messages from irc bridge #72
|
* general: fix ShowJoinPart for messages from irc bridge #72
|
||||||
|
* gitter: fix high cpu usage #89
|
||||||
* irc: fix !users command #78
|
* 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
|
# v0.8.1
|
||||||
## Bugfix
|
## Bugfix
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
log "github.com/Sirupsen/logrus"
|
log "github.com/Sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
var version = "0.9.0-dev"
|
var version = "0.9.0"
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
|
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
|
||||||
|
@ -23,6 +23,10 @@ enable=true
|
|||||||
account="irc.freenode"
|
account="irc.freenode"
|
||||||
channel="#testing"
|
channel="#testing"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.in]]
|
||||||
|
account="mattermost.work"
|
||||||
|
channel="off-topic"
|
||||||
|
|
||||||
|
[[gateway.out]]
|
||||||
account="mattermost.work"
|
account="mattermost.work"
|
||||||
channel="off-topic"
|
channel="off-topic"
|
||||||
|
Loading…
Reference in New Issue
Block a user