[[project @ 2002-11-04 23:42:01 by unknown_lamer] unknown_lamer**20021104234201 Removed scripts/bobot-utils.scm (since it is generated from bobot-utils.scm.in), added bot: prefix to match-to-me and match-not-channel ] { rmfile ./scripts/bobot-utils.scm hunk ./ChangeLog 1 +2002-11-04 Clinton Ebadi + + * scripts/bobot-utils.scm: Added bot: to regex functions (yes, + this breaks existing scripts, this is the unstable tree after all) + hunk ./NEWS 13 +Version 2.1.2: Llama + +- match-to-me and match-not-channel are now bot:match-to-me and + bot:match-not-channel. Just use perl -pi -e + "s/match-to-me/bot:match-to-me" SCRIPTS (change to match-not-channel + for match-not-channel). + hunk ./NEWS 21 + +- Host masks are now case insensitive when matched. At least one other + person thought this was a good idea since IRC is case preserving but + not case sensitive. hunk ./configure.ac 4 -AC_INIT([Bobot++], [2.1.1], [clinton@unknownlamer.org], [bobotpp]) +AC_INIT([Bobot++], [2.1.2CVS], [clinton@unknownlamer.org], [bobotpp]) hunk ./source/Bot.C 122 - userFunctions[alias] = - new - userFunction(u->function, - u->minLevel, - u->needsChannelName); + userFunctions[alias] = + new + userFunction(u->function, + u->minLevel, + u->needsChannelName); hunk ./source/Bot.C 374 - if (currentTime < std::time(NULL)) { // Actions that we do each second - currentTime = std::time(NULL); + if (currentTime < std::time(0)) { // Actions that we do each second + currentTime = std::time(0); hunk ./source/Bot.C 394 - sprintf(s, "%2d:%2d", thisTime->tm_hour, thisTime->tm_min); + std::sprintf(s, "%2d:%2d", thisTime->tm_hour, thisTime->tm_min); hunk ./source/Bot.C 396 - gh_list(Utils::string2SCM(String(s)), SCM_UNDEFINED)); + gh_list(Utils::string2SCM(String(s)), + SCM_UNDEFINED)); }