Releases: Itiviti/simple-slack-api
0.3.1 version
new features/improvements :
Send messages as user... or not :
This new version revisit the way messages are sent, and provides some more options to send messages as the connected bot user or using a custom name and icon :
session.sendMessage(myChan,"my message",null,
SlackChatConfiguration.getConfiguration().withName("my name")
.withEmoji(":myemo:"))
methods signature were changed, I'm aware of the pain that might cause and I'm sorry with that but since this is still an alpha stage I made this decision.
bug fixes :
Exception during connection (issue #5 )
Exceptions eventually thrown during connection are now propagated to the caller
newly created channels handling
Newly created channels are now correctly added to the channel list the Session is holding, thus no more NullPointerException on channel search involving these channels.
Where do I get all of this ?
The jar file is attached to this release but if you want to go further, all the source files and binaries of this release are also available on BinTray
First alpha release
This release provides the most basic feature of Slack :
- Listening to channels activities
- Posting a message on a channel
- Updating a message previously sent
- Deleting a message previously sent