Thumbnail

rani/matterbridge.git

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

commit 146bb1300211e89278b73255bfaf9ec9df4c42cf Author: Wim <wim@42.be> Date: Wed Mar 20 23:30:03 2019 +0000 Release v1.14.0 diff --git a/README.md b/README.md index ea85a91..9259d41 100644 --- a/README.md +++ b/README.md @@ -1237 +1237 @@ See https://github.com/42wim/matterbridge/wiki    ## Installing  ### Binaries -* Latest stable release [v1.13.1](https://github.com/42wim/matterbridge/releases/latest) +* Latest stable release [v1.14.0](https://github.com/42wim/matterbridge/releases/latest)  * Development releases (follows master) can be downloaded [here](https://dl.bintray.com/42wim/nightly/)    ### Packages diff --git a/changelog.md b/changelog.md index 95012a8..5e3e7c5 100644 --- a/changelog.md +++ b/changelog.md @@ -196 +198 @@    ## Enhancements  * general: Fail gracefully on incorrect human input. Fixes #739 (#740) +* matrix: Detect html nicks in RemoteNickFormat (matrix). Fixes #696 (#719) +* matrix: Send notices on join/parts (matrix). Fixes #712 (#716)    ## Bugfix  * general: Handle file upload/download only once for each message (#742) @@ -279 +299 @@  * irc: add support for (older) unrealircd versions. #708  * irc: Support quits from irc correctly. Fixes #722 (#724)  * matrix: Send username when uploading video/images (matrix). Fixes #715 (#717) -* matrix: Send notices on join/parts (matrix). Fixes #712 (#716) -* matrix: Detect html nicks in RemoteNickFormat (matrix). Fixes #696 (#719) +* matrix: Trim <p> and </p> tags (matrix). Closes #686 (#753)  * slack: Hint at thread replies when messages are unthreaded (slack) (#684) +* slack: Fix race-condition in populateUser() (#767)  * xmpp: Do not send topic changes on connect (xmpp). Fixes #732 (#733)  * telegram: Fix regression in HTML handling (telegram). Closes #734  * discord: Do not relay any bot messages (discord) (#743) diff --git a/matterbridge.go b/matterbridge.go index 6dd78cd..eace0e0 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -157 +157 @@ import (  )    var ( - version = "1.14.0-rc2-dev" + version = "1.14.0"   githash string     flagConfig = flag.String("conf", "matterbridge.toml", "config file")