Skip to content

Commit

Permalink
Release v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
42wim committed Jul 12, 2017
1 parent dcf5254 commit 394d51e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ docker run -p 6667:6667 42wim/matterircd:latest -bind 0.0.0.0:6667
Now you can connect with your IRC client to port 6667 on your docker host.

# Compatibility
* Matterircd v0.12.0 works with mattermost 3.5.x - 3.10.0 [3.10.0 release](https://github.com/mattermost/platform/releases/tag/v3.10.0)
* Matterircd v0.10.2 works with mattermost 3.3.0 - 3.4.0 [3.4.0 release](https://github.com/mattermost/platform/releases/tag/v3.4.0)
* Matterircd v0.13.0 works with mattermost 3.5.x - 3.10.0, 4.0.x [4.0.0 release](https://github.com/mattermost/platform/releases/tag/v4.0.0)

Master branch of matterircd should always work against latest STABLE mattermost release.
If you want to run matterircd with mattermost DEV builds, use the develop branch of matterircd.

# Features

* support direct messages / private channels
* support direct messages / private channels / edited messages
* auto-join/leave to same channels as on mattermost
* reconnects with backoff on mattermost restarts
* support multiple users
Expand All @@ -43,8 +42,7 @@ If you want to run matterircd with mattermost DEV builds, use the develop branch
# Binaries

You can find the binaries [here](https://github.com/42wim/matterircd/releases/)
* For use with mattermost 3.5.0 and higher [v0.12.0](https://github.com/42wim/matterircd/releases/tag/v0.12.0)
* For use with mattermost 3.3.0-3.4.0 [v0.10.2](https://github.com/42wim/matterircd/releases/tag/v0.10.2)
* For use with mattermost 3.5.0 and higher [v0.13.0](https://github.com/42wim/matterircd/releases/tag/v0.13.0)

# Building

Expand Down
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# v0.13.0
## New features
* Support mattermost 4.0

## Enhancement
* Show slack attachments if they have a fallback/contain text
* Show links even when public links are disabled #105
* Edited messages now have "(edited)" appended
* ```-bind ""``` now disables non-tls port-binding when you have ```-tlsbind``` specified #109

## Bugfix
* Long messages from mattermost will be split in multiple smaller messages #103
* Fix join/leave messages for recent mattermost versions #113, #104
* Ignore messages sent to &users #108
* Ignore posts that have a reaction (emoji) added #111


# v0.12.0
(thanks to @recht matterircd fork)
## New features
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
var (
flagRestrict, flagDefaultTeam, flagDefaultServer, flagTLSBind, flagTLSDir *string
flagInsecure *bool
version = "0.12.0"
version = "0.13.0"
githash string
logger *logrus.Entry
)
Expand Down

0 comments on commit 394d51e

Please sign in to comment.