mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 03:10:26 +00:00
Add support for sending edited messages
This commit is contained in:
parent
a4db63a773
commit
02612c0061
@ -39,6 +39,8 @@ type ChannelInfo struct {
|
|||||||
type Protocol struct {
|
type Protocol struct {
|
||||||
BindAddress string // mattermost, slack
|
BindAddress string // mattermost, slack
|
||||||
Buffer int // api
|
Buffer int // api
|
||||||
|
EditSuffix string // mattermost, slack, discord, telegram, gitter
|
||||||
|
EditDisable bool // mattermost, slack, discord, telegram, gitter
|
||||||
IconURL string // mattermost, slack
|
IconURL string // mattermost, slack
|
||||||
IgnoreNicks string // all protocols
|
IgnoreNicks string // all protocols
|
||||||
Jid string // xmpp
|
Jid string // xmpp
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
# v0.12.0
|
||||||
|
## New features
|
||||||
|
* general: add support for edited messages.
|
||||||
|
Add new keyword EditDisable (false/true), default false. Which means by default edited messages will be sent to other bridges.
|
||||||
|
Add new keyword EditSuffix , default "". You can change this eg to "(edited)", this will be appended to every edit message.
|
||||||
|
|
||||||
|
## Enhancements
|
||||||
|
* discord: Strip custom emoji metadata (discord). Closes #148
|
||||||
|
|
||||||
# v0.11.0
|
# v0.11.0
|
||||||
## New features
|
## New features
|
||||||
* general: reusing the same account on multiple gateways now also reuses the connection.
|
* general: reusing the same account on multiple gateways now also reuses the connection.
|
||||||
|
Loading…
Reference in New Issue
Block a user