summaryrefslogtreecommitdiffstats
path: root/vendor/modules.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Update vendor shazow/ssh-chat (#1029)Wim2020-03-081-1/+1
|
* Remove replace directives and use own fork to make go get work again (#1028)Wim2020-03-081-6/+6
| | | | See https://github.com/golang/go/issues/30354 go get doesn't honor the go.mod replace options.
* Add initial Microsoft Teams supportWim2020-03-011-0/+25
| | | | Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
* Update vendor keybase/go-keybase-chat-bot (#1019)Wim2020-03-011-1/+1
|
* Use upstream slack-go/slack again (#1018)Wim2020-03-011-5/+5
|
* Add support for avatars from matrix. #984 (#1007)Wim2020-02-101-1/+1
|
* Rebase gomatrix vendor with upstream (#1006)Wim2020-02-091-1/+1
|
* Update kekeybase/go-keybase-chat-bot vendorWim2020-02-081-1/+5
|
* Disable smartypants in markdown parser. Fixes #989, #983 (#993)Wim2020-02-021-1/+1
|
* Update to tengo v2 (#976)Wim2020-01-091-13/+6
|
* Update dependencies (#975)Wim2020-01-091-17/+21
|
* Clean up go.mod and vendorWim2020-01-091-5/+5
|
* Update slack vendor to fix regression (#959)Wim2019-12-081-1/+1
|
* Update slack vendor to master (#958)Wim2019-12-071-1/+1
|
* Switch to new emoji library kyokomi/emoji (#948)Wim2019-11-171-2/+2
|
* Update shazow/ssh-chat dependency (#947)Wim2019-11-171-1/+2
|
* Update markdown parsing library to github.com/gomarkdown/markdown (#944)Benjamin2019-11-171-11/+5
|
* Use own slack fork to fix #937 (#943)Wim2019-11-141-1/+1
|
* Update vendor (#932)Wim2019-10-271-3/+3
| | | | | | * Update vendor * Fix godiscord api change
* Update vendor matterbridge/gomatrix fork (#928)Wim2019-10-261-1/+1
|
* Update golang-commonmark/linkify vendor and use upstream again. Fixes #924 ↵Wim2019-10-261-2/+2
| | | | (#926)
* Try to fix blackfriday go modules messWim2019-09-221-1/+1
|
* Update dependencies (#886)Wim2019-09-071-41/+43
|
* Update lrstanley/girc vendor (#884)Wim2019-09-071-1/+1
|
* Replace bwmarrin/discordgo with matterbridge/discordgo (#878)Wim2019-08-261-1/+1
| | | Needed for #872
* Update Rhymen/go-whatsapp vendor (#876)Wim2019-08-261-1/+1
|
* Add initial Keybase Chat support (#877)cori hudson2019-08-261-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * initial work on native keybase bridging * Hopefully make a functional keybase bridge * add keybase to bridgemap * send to right channel, try to figure out received msgs * add account and userid * i am a Dam Fool * Fix formatting for messages, handle /me * update vendors, ran golint and goimports * move handlers to handlers.go, clean up unused config options * add sample config, fix inconsistent remote nick handling * Update readme with keybase links * Resolve fixmie errors * Error -> Errorf * fix linting errors in go.mod and go.sum * explicitly join channels, ignore messages from non-specified channels * check that team names match before bridging message
* Update vendor (#852)Wim2019-06-161-22/+25
|
* Update github.com/Rhymen/go-whatsapp vendor. Fixes #843Wim2019-06-141-1/+1
|
* Fix go mod issue by removing whatsapp-extWim2019-06-021-2/+0
|
* Use upstream whatsapp again (#809)Wim2019-05-301-13/+14
|
* Update tengo vendor and load the stdlib. Fixes #789 (#792)Wim2019-04-061-1/+3
|
* Update vendor d5/tengoWim2019-03-051-2/+2
|
* Use whatsapp forks (#750)Wim2019-03-021-14/+14
|
* Add MediaConvertWebPToPNG option (telegram). (#741)Wim2019-02-271-0/+5
| | | | | | | | * Add MediaConvertWebPToPNG option (telegram). When enabled matterbridge will convert .webp files to .png files before uploading them to the mediaserver of the other bridges. Fixes #398
* Fix regression in HTML handling (telegram). Closes #734Wim2019-02-241-3/+1
| | | | | * Revert back to blackfriday v1 * Add testing
* Make all loggers derive from non-default instance (#728)Wim2019-02-231-0/+2
|
* Add scripting (tengo) support for every incoming message (#731)Wim2019-02-231-0/+11
| | | | | | | | | | | | | | | | | | | | | | TengoModifyMessage allows you to specify the location of a tengo (https://github.com/d5/tengo/) script. This script will receive every incoming message and can be used to modify the Username and the Text of that message. The script will have the following global variables: to modify: msgUsername and msgText to read: msgChannel and msgAccount The script is reloaded on every message, so you can modify the script on the fly. Example script can be found in https://github.com/42wim/matterbridge/tree/master/gateway/bench.tengo and https://github.com/42wim/matterbridge/tree/master/contrib/example.tengo The example below will check if the text contains blah and if so, it'll replace the text and the username of that message. text := import("text") if text.re_match("blah",msgText) { msgText="replaced by this" msgUsername="fakeuser" } More information about tengo on: https://github.com/d5/tengo/blob/master/docs/tutorial.md and https://github.com/d5/tengo/blob/master/docs/stdlib.md
* Add initial WhatsApp support (#711)Krzysiek Madejski2019-02-211-4/+21
|
* Upgrade to latest girc version (irc) (#718)Wim2019-02-161-1/+1
|
* Refactor and update RocketChat bridge (#707)Wim2019-02-151-0/+12
|\ | | | | | | | | | | | | * Add support for editing/deleting messages * Add support for uploading files * Add support for avatars * Use the Rocket.Chat.Go.SDK * Use the rest and streaming api
| * Refactor and update RocketChat bridgeWim2019-02-151-0/+12
| | | | | | | | | | | | | | | | * Add support for editing/deleting messages * Add support for uploading files * Add support for avatars * Use the Rocket.Chat.Go.SDK * Use the rest and streaming api
* | Do not panic on non-json response from server (zulip)Wim2019-02-131-1/+1
| |
* | Fix error handling on bad event queue id (zulip). Closes #694Wim2019-02-111-1/+1
|/
* Update vendor, move to labstack/echo/v4 Fixes #698Wim2019-01-311-19/+20
|
* Add support for markdown to HTML conversion (matrix). Closes #663 (#670)Wim2019-01-061-0/+11
| | | | | This uses our own gomatrix lib with the SendHTML function which adds HTML to formatted_body in matrix. golang-commonmark is used to convert markdown into valid HTML.
* Update vendorWim2019-01-031-3/+3
| | | | | | * go-telegram-bot-api/telegram-bot-api * lrstanley/girc * matterbridge/gomatrix
* Update nlopes/slack to 4.1-dev (#595)Patrick Connolly2018-12-011-1/+1
|
* Update direct dependencies where possibleDuco van Amstel2018-11-251-27/+41
|
* Upgrade logrus / testify to stable versionsDuco van Amstel2018-11-181-7/+7
|