Thumbnail

rani/matterbridge.git

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

commit 5da90fc66b4fee69a2986cda5e2117086dbb4fa5 Author: Wim <wim@42.be> Date: Fri Jul 07 23:49:34 2017 +0000 Release v0.16.0-rc2 diff --git a/README.md b/README.md index ef4c5df..f1776e2 100644 --- a/README.md +++ b/README.md @@ -457 +457 @@ Accounts to one of the supported bridges  # Installing  ## Binaries  Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/) -* Latest rc release (with steam support) [v0.16.0-rc1](https://github.com/42wim/matterbridge/releases/latest) +* Latest rc release (with steam support) [v0.16.0-rc2](https://github.com/42wim/matterbridge/releases/latest)  * Latest stable release [v0.15.0](https://github.com/42wim/matterbridge/releases/tag/v0.15.0)    ## Building diff --git a/changelog.md b/changelog.md index 78bc71d..32413b4 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +124 @@ +# v0.16.0-rc2 +## Breaking Changes +* URL,UseAPI,BindAddress is deprecated. Your config has to be updated. + * URL => WebhookURL + * BindAddress => WebhookBindAddress + * UseAPI => removed + This change allows you to specify a WebhookURL and a token (slack,discord), so that + messages will be sent with the webhook, but received via the token (API) + If you have not specified WebhookURL and WebhookBindAddress the API (login or token) + will be used automatically. (no need for UseAPI) + +## Bugfix since rc1 +* steam: Fix channel id bug in steam (channels are off by 0x18000000000000) +* telegram: Add UseInsecureURL option for telegram (default false) + WARNING! If enabled this will relay GIF/stickers/documents and other attachments as URLs + Those URLs will contain your bot-token. This may not be what you want. + For now there is no secure way to relay GIF/stickers/documents without seeing your token. +* irc: detect charset and try to convert it to utf-8 before sending it to other bridges. #209 #210 +* general: various improvements + +  # v0.16.0-rc1  ## Breaking Changes  * URL,UseAPI,BindAddress is deprecated. Your config has to be updated. diff --git a/matterbridge.go b/matterbridge.go index 39aaf60..5fa690e 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -127 +127 @@ import (  )    var ( - version = "0.16.0-rc1" + version = "0.16.0-rc2"   githash string  )