Skip to content

Commit e9f4558

Browse files
committed
Version 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.
1 parent c97f2a8 commit e9f4558

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

diceserv.cpp

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* ----------------------------------------------------------------------------
22
* Name : diceserv.cpp
33
* Author : Naram Qashat (CyberBotX)
4-
* Version : 3.0.1
5-
* Date : (Last modified) February 4, 2016
4+
* Version : 3.0.2
5+
* Date : (Last modified) June 9, 2016
66
* ----------------------------------------------------------------------------
77
* The following applies to the non-Anope-derived portions of the code
88
* (excluding the RNG):
@@ -49,6 +49,17 @@ SOFTWARE.
4949
* ----------------------------------------------------------------------------
5050
* Changelog:
5151
*
52+
* 3.0.2 - Fixed an issue with SET IGNORE's reloading.
53+
* - Better handling on determining when to use extended output.
54+
* - Replaced usage of OnPostCommand for adding to NickServ/ChanServ
55+
* info, used OnNickInfo and OnChanInfo instead.
56+
* - Better checks for numbers in Infix to Postfix conversion.
57+
* - Prevent factorials of 13 of higher due to limit on 32-bit integers
58+
* as well as execution time.
59+
* - Prevent potential crashes if a fantasy command other than the D&D
60+
* 3e Character one is used with no arguments.
61+
* - Minor C++11 fixes.
62+
* - Other minor code cleanups.
5263
* 3.0.1 - Fixed issues with loading an old DiceServ database so it actually
5364
* works (there was a typo in the configuration file plus a timer
5465
* has to be used).

diceserv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class DiceServService : public Service
172172

173173
static const Anope::string &Version()
174174
{
175-
static Anope::string version = "3.0.1";
175+
static Anope::string version = "3.0.2";
176176
return version;
177177
}
178178

0 commit comments

Comments
 (0)