Skip to content

Commit

Permalink
Version 3.0.2
Browse files Browse the repository at this point in the history
- Fixed an issue with SET IGNORE's reloading.
- Better handling on determining when to use extended output.
- Replaced usage of OnPostCommand for adding to NickServ/ChanServ info, used OnNickInfo and OnChanInfo instead.
- Better checks for numbers in Infix to Postfix conversion.
- Prevent factorials of 13 of higher due to limit on 32-bit integers as well as execution time.
- Prevent potential crashes if a fantasy command other than the D&D 3e Character one is used with no arguments.
- Minor C++11 fixes.
- Other minor code cleanups.
  • Loading branch information
CyberBotX committed Jun 10, 2016
1 parent c97f2a8 commit e9f4558
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 13 additions & 2 deletions diceserv.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* ----------------------------------------------------------------------------
* Name : diceserv.cpp
* Author : Naram Qashat (CyberBotX)
* Version : 3.0.1
* Date : (Last modified) February 4, 2016
* Version : 3.0.2
* Date : (Last modified) June 9, 2016
* ----------------------------------------------------------------------------
* The following applies to the non-Anope-derived portions of the code
* (excluding the RNG):
Expand Down Expand Up @@ -49,6 +49,17 @@ SOFTWARE.
* ----------------------------------------------------------------------------
* Changelog:
*
* 3.0.2 - Fixed an issue with SET IGNORE's reloading.
* - Better handling on determining when to use extended output.
* - Replaced usage of OnPostCommand for adding to NickServ/ChanServ
* info, used OnNickInfo and OnChanInfo instead.
* - Better checks for numbers in Infix to Postfix conversion.
* - Prevent factorials of 13 of higher due to limit on 32-bit integers
* as well as execution time.
* - Prevent potential crashes if a fantasy command other than the D&D
* 3e Character one is used with no arguments.
* - Minor C++11 fixes.
* - Other minor code cleanups.
* 3.0.1 - Fixed issues with loading an old DiceServ database so it actually
* works (there was a typo in the configuration file plus a timer
* has to be used).
Expand Down
2 changes: 1 addition & 1 deletion diceserv.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class DiceServService : public Service

static const Anope::string &Version()
{
static Anope::string version = "3.0.1";
static Anope::string version = "3.0.2";
return version;
}

Expand Down

0 comments on commit e9f4558

Please sign in to comment.