Thumbnail

rani/matterbridge.git

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

commit c62600adea2c7e8ddef6e0287a4b7e394afc0b2c Author: Wim <wim@42.be> Date: Mon May 07 22:07:17 2018 +0000 Release v1.10.0 diff --git a/README.md b/README.md index 42189ed..5d9ff95 100644 --- a/README.md +++ b/README.md @@ -697 +697 @@ See https://github.com/42wim/matterbridge/wiki    # Installing  ## Binaries -* Latest stable release [v1.9.1](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.10.0](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 f45efa9..1075525 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +122 @@ +# v1.10.0 +## New features +* general: Add support for reloading all settings automatically after changing config except connection and gateway configuration. Closes #373 +* zulip: New protocol support added (https://zulipchat.com) + +## Enhancements +* general: Handle file comment better +* steam: Handle file uploads to mediaserver (steam) +* slack: Properly set Slack user who initiated slash command (#394) + +## Bugfix +* general: Use only alphanumeric for file uploads to mediaserver. Closes #416 +* general: Fix crash on invalid filenames +* general: Fix regression in ReplaceMessages and ReplaceNicks. Closes #407 +* telegram: Fix possible nil when using channels (telegram). #410 +* telegram: Fix panic (telegram). Closes #410 +* telegram: Handle channel posts correctly +* mattermost: Update GetFileLinks to API_V4 +  # v1.9.1  ## New features  * telegram: Add QuoteDisable option (telegram). Closes #399. See QuoteDisable in matterbridge.toml.sample diff --git a/matterbridge.go b/matterbridge.go index 692df1f..8881425 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -137 +137 @@ import (  )    var ( - version = "1.9.2-dev" + version = "1.10.0"   githash string  )