Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Release v1.2.0v1.2.0 | Wim | 2017-09-11 | 3 | -2/+16 |
| | |||||
* | Update vendor (nlopes/slack) | Wim | 2017-09-11 | 2 | -1/+3 |
| | |||||
* | Update vendor (bwmarrin/discordgo) apiv6 | Wim | 2017-09-11 | 12 | -111/+467 |
| | |||||
* | Bump version | Wim | 2017-09-11 | 1 | -1/+1 |
| | |||||
* | Add partial support for deleted messages (telegram) | Wim | 2017-09-11 | 1 | -0/+12 |
| | |||||
* | Update vendor (go-telegram-bot-api/telegram-bot-api) | Wim | 2017-09-11 | 5 | -62/+629 |
| | |||||
* | Add support for deleting messages across bridges. | Wim | 2017-09-11 | 13 | -5/+98 |
| | | | | | | | | | | | | Currently fully support mattermost,slack and discord. Message deleted on the bridge or received from other bridges will be deleted. Partially support for Gitter. Gitter bridge will delete messages received from other bridges. But if you delete a message on gitter, this deletion will not be sent to other bridges (this is a gitter API limitation, it doesn't propogate edits or deletes via the API) | ||||
* | Do not break messages on newline (slack). Closes #258 | Wim | 2017-09-10 | 1 | -18/+16 |
| | |||||
* | Add UpdateUserNick | Wim | 2017-09-10 | 1 | -0/+10 |
| | |||||
* | Release v1.1.2v1.1.2 | Wim | 2017-09-09 | 2 | -3/+3 |
| | |||||
* | Update changelog | Wim | 2017-09-09 | 1 | -0/+6 |
| | |||||
* | Add 4.2 support (mattermost) | Wim | 2017-09-09 | 1 | -1/+2 |
| | |||||
* | Add darwin-amd64 to nightly builds | Wim | 2017-09-09 | 1 | -2/+3 |
| | |||||
* | Send images when text is empty regression. (mattermost). Closes #254 | Wim | 2017-09-08 | 2 | -0/+8 |
| | |||||
* | Send first message after connect (slack). Closes #252 | Wim | 2017-09-07 | 1 | -47/+42 |
| | |||||
* | Add message debugging (gitter) | Wim | 2017-09-07 | 1 | -0/+1 |
| | |||||
* | remove comment about useAPI in sample configuration (#251) | Ryan Mulligan | 2017-09-04 | 1 | -1/+0 |
| | |||||
* | remove useAPI from sample configuration (#250) | Ryan Mulligan | 2017-09-04 | 1 | -1/+0 |
| | |||||
* | Fix sending direct messages with APIv4 | Wim | 2017-09-04 | 1 | -3/+3 |
| | |||||
* | Release v1.1.1v1.1.1 | Wim | 2017-09-04 | 3 | -2/+6 |
| | |||||
* | Fix public links (mattermost) | Wim | 2017-09-04 | 1 | -6/+6 |
| | |||||
* | Release v1.1.0v1.1.0 | Wim | 2017-09-01 | 2 | -2/+2 |
| | |||||
* | Convert utf-8 back to charset (irc). #247 | Wim | 2017-08-30 | 1 | -0/+14 |
| | |||||
* | Fix private channel joining bug (mattermost). Closes #248 | Wim | 2017-08-30 | 2 | -4/+15 |
| | |||||
* | Update changelog | Wim | 2017-08-29 | 1 | -2/+16 |
| | |||||
* | Replace mentions from other bridges. (slack). Closes #233 | Wim | 2017-08-29 | 1 | -0/+3 |
| | |||||
* | Use the detected charset (irc) | Wim | 2017-08-29 | 1 | -1/+1 |
| | |||||
* | Add a charset option (irc). Closes #247 | Wim | 2017-08-29 | 3 | -12/+35 |
| | |||||
* | Update travis to go 1.9 | Wim | 2017-08-29 | 2 | -2/+2 |
| | |||||
* | Do not add messages without ID to cache | Wim | 2017-08-29 | 3 | -3/+5 |
| | |||||
* | Remove debug message | Wim | 2017-08-28 | 1 | -3/+0 |
| | |||||
* | Add support for editing messages. Remove ZWSP as loopcheck (gitter) | Wim | 2017-08-28 | 1 | -6/+18 |
| | |||||
* | Use github.com/42wim/go-gitter for now | Wim | 2017-08-28 | 7 | -13/+72 |
| | |||||
* | Add support for editing messages (telegram) | Wim | 2017-08-28 | 1 | -3/+22 |
| | |||||
* | Add support for editing messages (slack) | Wim | 2017-08-28 | 1 | -9/+16 |
| | |||||
* | Add support for editing messages across bridges. Currently mattermost/discord. | Wim | 2017-08-28 | 5 | -25/+62 |
| | | | | | | | | | | | | | | | | | | | | | | Our Message type has an extra ID field which contains the message ID of the specific bridge. The Send() function has been modified to return a msg ID (after the message to that specific bridge has been created). There is a lru cache of 5000 entries (message IDs). All in memory, so editing messages will only work for messages the bot has seen. Currently we go out from the idea that every message ID is unique, so we don't keep the ID separate for each bridge. (we do for each gateway though) If there's a new message from a bridge, we put that message ID in the LRU cache as key and the []*BrMsgID as value (this slice contains the message ID's of each bridge that received the new message) If there's a new message and this message ID already exists in the cache, it must be an updated message. The value from the cache gets checked for each bridge and if there is a message ID for this bridge, the ID will be added to the Message{} sent to that bridge. If the bridge sees that the ID isn't empty, it'll know it has to update the message with that specific ID instead of creating a new message. | ||||
* | Update PostMessage to also return and error. Add EditMessage function | Wim | 2017-08-28 | 1 | -2/+15 |
| | |||||
* | Modify Send() to return also a message id | Wim | 2017-08-27 | 13 | -35/+41 |
| | |||||
* | Relay notices (matrix). Closes #243 | Wim | 2017-08-27 | 1 | -1/+1 |
| | |||||
* | Handle leave/join events (slack). Closes #246 | Wim | 2017-08-27 | 1 | -0/+4 |
| | |||||
* | Add support for personal access tokens (mattermost) | Wim | 2017-08-23 | 3 | -7/+41 |
| | | | | * https://docs.mattermost.com/developer/personal-access-tokens.html | ||||
* | Make megacheck happy | Wim | 2017-08-17 | 1 | -9/+0 |
| | |||||
* | Use mattermost v4 api (drops support for mattermost < 3.8) | Wim | 2017-08-16 | 2 | -153/+127 |
| | |||||
* | Update mattermost vendor (3.7 => 4.1) | Wim | 2017-08-16 | 147 | -1094/+10081 |
| | |||||
* | Bump version | Wim | 2017-08-16 | 1 | -1/+1 |
| | |||||
* | Release v1.0.1v1.0.1 | Wim | 2017-08-16 | 3 | -2/+9 |
| | |||||
* | Add 4.1 support (mattermost) | Wim | 2017-08-16 | 1 | -1/+2 |
| | |||||
* | Add new file_ids parameter for Mattermost outgoing webhook (#240) | Thracky | 2017-08-16 | 1 | -0/+1 |
| | | | | | | * Added file_id parameter for outgoing webhook * Typo in the new fileids field name | ||||
* | Swap token/id. Also check for default webhookURL in isWebhookID (discord) | Wim | 2017-08-12 | 1 | -3/+9 |
| | |||||
* | Bump version | Wim | 2017-08-12 | 1 | -1/+1 |
| |