All notable changes to this project will be documented in this file.
- Added support for Microsoft Bot Framework Web Chat
- Added the
SlackRTMDriver
to make use of the Slack Realtime API. - Added a new
Message
class to compose messages with images. - Image support is available for these drivers:
- Telegram
- Slack
- Microsoft Bot Framework
- Middleware classes now receive a third parameter
$regexMatched
inside theisMessageMatching
method. You can use this method to determine if the regular expression was also matched, in case you do not want to replace the completehears
logic, but only add custom logic to it. Note: This will require you to modify your custom middleware classes.
- Fixed a bug where middleware
isMessageMatching
offalse
would still match the message.
- The
hears
method can now handleClassName@method
syntax.
- Fixed a bug in combination with middleware classes and regular expression matches
- Added
send
method to BotMan, to allow originating messages
- The
hears
regular expression now checks for the start of the string botman#52
- Initial release