Thumbnail

rani/matterbridge.git

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

commit 00fef021e663ef57b43cf94b5017fa6c28e463ef Author: Wim <wim@42.be> Date: Wed Nov 08 23:22:31 2017 +0000 Release v1.4.0 diff --git a/README.md b/README.md index 646db3e..49363a7 100644 --- a/README.md +++ b/README.md @@ -5411 +5411 @@ See https://github.com/42wim/matterbridge/wiki    # Installing  ## Binaries -* Latest stable release [v1.3.1](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.4.0](https://github.com/42wim/matterbridge/releases/latest)  * Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/)    ## Building -Go 1.7+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH) +Go 1.8+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH)    ```  cd $GOPATH diff --git a/changelog.md b/changelog.md index 02699d0..ef48e04 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +125 @@ +# v1.4.0 +## Breaking changes +* general: `[general]` settings don't override the specific bridge settings + +## New features +* irc: Replace sorcix/irc and go-ircevent with girc, this should be give better reconnects +* steam: Add support for bridging to individual steam chats. (steam) (#294) +* telegram: Download files from telegram and reupload to supported bridges (telegram). #278 +* slack: Add support to upload files to slack, from bridges with private urls like slack/mattermost/telegram. (slack) +* discord: Add support to upload files to discord, from bridges with private urls like slack/mattermost/telegram. (discord) +* general: Add systemd service file (#291) +* general: Add support for DEBUG=1 envvar to enable debug. Closes #283 +* general: Add StripNick option, only allow alphanumerical nicks. Closes #285 + +## Bugfix +* gitter: Use room.URI instead of room.Name. (gitter) (#293) +* slack: Allow slack messages with variables (eg. @here) to be formatted correctly. (slack) (#288) +* slack: Resolve slack channel to human-readable name. (slack) (#282) +* slack: Use DisplayName instead of deprecated username (slack). Closes #276 +* slack: Allowed Slack bridge to extract simpler link format. (#287) +* irc: Strip irc colors correct, strip also ctrl chars (irc) +  # v1.3.1  ## New features  * Support mattermost 4.3.0 and every other 4.x as api4 should be stable (mattermost) diff --git a/matterbridge.go b/matterbridge.go index e62b6be..4a6e1bd 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -127 +127 @@ import (  )    var ( - version = "1.4.0-dev" + version = "1.4.0"   githash string  )