Releases: c650/irc-bot-framework
Robust and Safe (Probably)
Alone, and Actually Static
Fixing Makefile
oversight that actually compiled a shared object file for dynamic linking instead of an archive file for static linking, as was intended...
Finally Alone
This release marks a major change to the repository: it now lacks a main.cpp
. Instead, the IRCBot code compiles to libbot.a
, and this file is to be compiled with some main.cpp
like this one.
Just the Core!
This repository now only tracks core changes to the bot.
0.5.0
0.4.0
0.3.1
0.3.0
0.2.0
This version significantly changes how commands are handled, designed, and implemented. In place of the lambda functions used in earlier version, a CommandInterface
abstract class has been defined to outline what a valid command must have. To add a command, one must simply implement a class that inherits from CommandInterface
. More can be found in the README.
The source code of the bot framework has been separated from plugin source code that is not a part of the framework but more a display of the uses of the framework.