Thumbnail

rani/matterbridge.git

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

commit f1931c05fbf9507b04ab27a62c277ef12815b38e Author: Wim <wim@42.be> Date: Sun Jan 28 19:36:02 2018 +0000 Release v1.7.0 diff --git a/README.md b/README.md index 1b0fb30..176aa7d 100644 --- a/README.md +++ b/README.md @@ -557 +557 @@ See https://github.com/42wim/matterbridge/wiki    # Installing  ## Binaries -* Latest stable release [v1.6.3](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.7.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 e82746b..fb5db4c 100644 --- a/changelog.md +++ b/changelog.md @@ -13 +119 @@ +# v1.7.0 +## New features +* matrix: Add support for deleting messages from/to matrix (matrix). Closes #320 +* xmpp: Ignore <subject> messages (xmpp). #272 +* irc: Add twitch support (irc) to README / wiki + +## Bugfix +* general: Change RemoteNickFormat replacement order. Closes #336 +* general: Make edits/delete work for bridges that gets reused. Closes #342 +* general: Lowercase irc channels in config. Closes #348 +* matrix: Fix possible panics (matrix). Closes #333 +* matrix: Add an extension to images without one (matrix). #331 +* api: Obey the Gateway value from the json (api). Closes #344 +* xmpp: Print only debug messages when specified (xmpp). Closes #345 +* xmpp: Allow xmpp to receive the extra messages (file uploads) when text is empty. #295 +  # v1.6.3  ## Bugfix  * slack: Fix connection issues diff --git a/matterbridge.go b/matterbridge.go index e755ea7..4cf5935 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -127 +127 @@ import (  )    var ( - version = "1.7.0-dev" + version = "1.7.0"   githash string  )