Thumbnail

rani/matterbridge.git

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

commit f9454803d93474e3bf97af459ca7fcbac2bf3559 Author: Wim <wim@42.be> Date: Mon Jun 19 20:47:41 2017 +0000 Release v0.15.0 diff --git a/README.md b/README.md index c03cd2f..f3b977a 100644 --- a/README.md +++ b/README.md @@ -427 +427 @@ Accounts to one of the supported bridges  # Installing  ## Binaries  Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) -* Latest stable release [v0.14.0](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v0.15.0](https://github.com/42wim/matterbridge/releases/latest)    ## Building  Go 1.6+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH) diff --git a/changelog.md b/changelog.md index 484efad..e9e1fb2 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +120 @@ +# v0.15.0 +## New features +* general: add option IgnoreMessages for all protocols (see mattebridge.toml.sample) + Messages matching these regexp will be ignored and not sent to other bridges + e.g. IgnoreMessages="^~~ badword" +* telegram: add support for sticker/video/photo/document #184 + +## Changes +* api: add userid to each message #200 + +## Bugfix +* discord: fix crash in memberupdate #198 +* mattermost: Fix incorrect behaviour of EditDisable (mattermost). Fixes #197 +* irc: Do not relay join/part of ourselves (irc). Closes #190 +* irc: make reconnections more robust. #153 +* gitter: update library, fixes possible crash +  # v0.14.0  ## New features  * api: add token authentication diff --git a/matterbridge.go b/matterbridge.go index 3a762e2..0e32646 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -127 +127 @@ import (  )    var ( - version = "0.14.1-dev" + version = "0.15.0"   githash string  )