diff options
author | Wim <wim@42.be> | 2017-11-08 23:22:31 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2017-11-08 23:22:31 +0100 |
commit | daac3ebca27e8559f79b189bab85b1008e7a3543 (patch) | |
tree | ba46adf8fb28c4d663f533b5569c42bb290a4222 | |
parent | 639f9cf96639db27bc0cf5ea11d44e1ecb46f56d (diff) | |
download | matterbridge-msglm-1.4.0.tar.gz matterbridge-msglm-1.4.0.tar.bz2 matterbridge-msglm-1.4.0.zip |
Release v1.4.0v1.4.0
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | changelog.md | 22 | ||||
-rw-r--r-- | matterbridge.go | 2 |
3 files changed, 25 insertions, 3 deletions
@@ -54,11 +54,11 @@ 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 02699d08..ef48e04b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,25 @@ +# 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 e62b6be8..4a6e1bd3 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -12,7 +12,7 @@ import ( ) var ( - version = "1.4.0-dev" + version = "1.4.0" githash string ) |