I am currently writing an IRC Bot plugin for the JIRA issues tracking system. I was using version 1.9 but the version 2.0 seems to have a better design. I know it is still in "dev" status but was wondering if I should give it a go for a production release of the plugin? I dont mind helping out and finding/reporting issues as I go but would like to have an idea of the stability. Is 2.0 close to an official release?
Also we used to be able to easily send messages to a specific channel with sendMessage() and even though you show the new way to send message in response to an event:
event.getChannel().send().message(event.getUser(), "That is incorrect");
Can we still send a message to a channel by passing the channel name as a string without having the Channel object from event ?
Used to be like this:
bot.sendMessage("#channelXYZ", "This is a message");
Can we still send a message to a channel by passing the channel name as a string without having the Channel object from event ?
Thanks in advance