Skip to content

Releases: Itiviti/simple-slack-api

0.3.1 version

13 Apr 16:30
Compare
Choose a tag to compare
0.3.1 version Pre-release
Pre-release

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

06 Mar 23:11
Compare
Choose a tag to compare
First alpha release Pre-release
Pre-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