Thumbnail

rani/matterbridge.git

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

commit 71c94a11db74ccfff7d9a598f55d268663c971e3 Author: Wim <wim@42.be> Date: Mon Aug 06 17:49:14 2018 +0000 Release v1.11.1 diff --git a/README.md b/README.md index 38b9861..aed743a 100644 --- a/README.md +++ b/README.md @@ -697 +697 @@ See https://github.com/42wim/matterbridge/wiki    # Installing  ## Binaries -* Latest stable release [v1.11.0](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.11.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 f6180ef..735afef 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +119 @@ +# v1.11.1 + +## New features +* slack: Add support for slack channels by ID. Closes #436 +* discord: Clip too long messages sent to discord (discord). Closes #440 + +## Bugfix +* general: fix possible panic on downloads that are too big #448 +* general: Fix avatar uploads to work with MediaDownloadPath. Closes #454 +* discord: allow receiving of topic changes/channel leave/joins from other bridges through the webhook +* discord: Add a space before url in file uploads (discord). Closes #461 +* discord: Skip empty messages being sent with the webhook (discord). #469 +* mattermost: Use nickname instead of username if defined (mattermost). Closes #452 +* irc: Stop numbers being stripped after non-color control codes (irc) (#465) +* slack: Use UserID to look for avatar instead of username (slack). Closes #472 +  # v1.11.0    ## New features diff --git a/matterbridge.go b/matterbridge.go index f2179ff..d8e2aa0 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -147 +147 @@ import (  )    var ( - version = "1.11.1-dev" + version = "1.11.1"   githash string  )