mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-15 08:29:25 +01:00
Release v0.16.0-rc2
This commit is contained in:
parent
bfc7130ed8
commit
480945cb09
@ -45,7 +45,7 @@ Accounts to one of the supported bridges
|
|||||||
# Installing
|
# Installing
|
||||||
## Binaries
|
## Binaries
|
||||||
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
|
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)
|
* Latest stable release [v0.15.0](https://github.com/42wim/matterbridge/releases/tag/v0.15.0)
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
21
changelog.md
21
changelog.md
@ -1,3 +1,24 @@
|
|||||||
|
# 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
|
# v0.16.0-rc1
|
||||||
## Breaking Changes
|
## Breaking Changes
|
||||||
* URL,UseAPI,BindAddress is deprecated. Your config has to be updated.
|
* URL,UseAPI,BindAddress is deprecated. Your config has to be updated.
|
||||||
|
@ -12,7 +12,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
version = "0.16.0-rc1"
|
version = "0.16.0-rc2"
|
||||||
githash string
|
githash string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user