Thumbnail

rani/matterbridge.git

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

commit dbe632795750859a21310841d473e922144e1158 Author: Wim <wim@42.be> Date: Fri Apr 20 00:32:11 2018 +0000 Release v1.9.1 diff --git a/README.md b/README.md index aff7a8d..da38111 100644 --- a/README.md +++ b/README.md @@ -657 +657 @@ See https://github.com/42wim/matterbridge/wiki    # Installing  ## Binaries -* Latest stable release [v1.9.0](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.9.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 ffc2de6..f45efa9 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +115 @@ +# v1.9.1 +## New features +* telegram: Add QuoteDisable option (telegram). Closes #399. See QuoteDisable in matterbridge.toml.sample +## Enhancements +* discord: Send mediaserver link to Discord in Webhook mode (discord) (#405) +* mattermost: Print list of valid team names when team not found (#390) +* slack: Strip markdown URLs with blank text (slack) (#392) +## Bugfix +* slack/mattermost: Make our callbackid more unique. Fixes issue with running multiple matterbridge on the same channel (slack,mattermost) +* telegram: fix newlines in multiline messages #399 +* telegram: Revert #378 +  # v1.9.0 (the refactor release)  ## New features  * general: better debug messages diff --git a/matterbridge.go b/matterbridge.go index d260d34..e0fd382 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -137 +137 @@ import (  )    var ( - version = "1.9.0" + version = "1.9.1"   githash string  )