X-Git-Url: http://git.hcoop.net/clinton/bobotpp.git/blobdiff_plain/e45daca1ae1e4c034209c8c7f73a1f06dd01e355..f2a5f21b995b057945acb8bfebf211c5f2d1e0e3:/ChangeLog diff --git a/ChangeLog b/ChangeLog index bce144a..689ef72 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,208 @@ +2008-11-11 Clinton Ebadi + + * source/Parser.C: GCC 4.x compilation fixes + + * source/ShitList.C: GCC 4.x compilation fixes + + * source/String.C: GCC 4.x compilation fixes + + * source/UserCommands.C: GCC 4.x compilation fixes + + * source/Channel.C: GCC 4.x compilation fixes + +2007-11-08 Clinton Ebadi + + * configure.ac (LDFLAGS): Append GUILE_LDFLAGS to fix non-standard + location builds + (CXXFLAGS): Append GUILE_CFLAGS to fix non-standard location + builds + + * guile.m4: Import guile.m4 (included in source tree since it + doesn't change often and this will allow building on machines + lacking a guile installation) + + * acinclude.m4: Fix underquoted AC_CPP macros + Include guile.m4 rather than copying here + +2007-10-05 Clinton Ebadi + + * source/Main.C (real_main): scm_eval_string debug initialization + instead of setting the flags directly as they are no longer public + in Guile 1.9.x + +2006-06-28 Clinton Ebadi + + * Release: 2.2.2 + + * scripts/bobot-utils.scm (bot:load): Fixed loop logic so that + directories other than the first entry in the load path are + actually searched + + * scripts/uname: redelim -> rdelim + + * AUTHORS: Added Stelz to the Help by section + + * source/Bot.C (readConfig): If a logfile starting in / is found + the logdir should be set to all but the last part of the filename, + and the logfile set to the last part to avoid breaking script + logging + + * scripts/bobot-utils.scm (bot:match-not-channel): Removed space + in regex so it works on freenode again + + * scripts/bobot-utils.scm (bot:sent-to-me?): Rewritten to call + bot:match-to-me when called and not when defined + + * source/Bot.C (Bot): Added argument to Interp::Startup2 + + * source/Interp.C (Startup2): Made to take a Bot as argument to avoid + a segfault + + * source/Bot.C (Bot): Create BotInterp before running + Interp::Startup2 () + + * Release: 2.2.1 + + * source/Bot.C (set_log_dir): Create directory if it doesn't exist + (readConfig): Catch case of a line consisting of whitespace and + don't print an error message + +2006-02-03 Clinton Ebadi + + * source/Interp.C (Startup): Removed loading of bobot-utils.scm + (Startup2): Load bobot-utils.scm here + + * source/Interp.H: Added Startup2 method + + * source/Bot.C (Bot): Call Interp::Startup2 + + * source/Main.C (main): Moved Interp::Startup call to after the + Bot is created + (main): Moved Interp::Startup back + +2005-09-12 Clinton Ebadi + + * bobot++.texinfo (High Level Message Functions): Removed + duplicate bot:say entry + (Channel Control): Converted section to new format, and documented + more commands + +2005-08-07 Clinton Ebadi + + * bobot++.texinfo (Bot Control Commands): Convert to @deffn and + documented commands + (Built-In Commands): Clarified when the channel argument must be + provided + +2005-07-21 Clinton Ebadi + + * bobot++.texinfo: Removed all multitables and replaced them with + lists + +2005-07-07 Clinton Ebadi + + * bobot++.texinfo (Shit Levels): Added section + (Scheme User Levels): Removed Section + (Adding New Commands): Updated ref to Scheme User Levels to refer + to the User Levels section, and changed a @code{} into a @{var} + (Sending Messages): Rewrote section + (High Level Message Functions): Merged bot:say and bot:msg + sections + (bot.users): Expanded section + (bot.shit): Added section + (bot.conf): Document initfile option + (bot.shit): More detail + (bot.users): More detail + (bot.init): Added section + (bot.conf): Documented autoexecfile option + (bot.autoexec): Added section + (Using the Bot): Added some intro text + (Concepts): New section, all of the level sections are now + subsections of this + Merged small doc patch from dsmith + (Channel Control): Added Section + (User List Commands): Added Section + (Spylist): Added Section + (Message Commands): Added Section + (Miscellaneous Commands): Added Section + (Shit List Commands): Added Section + (Channel Info): Added Section + (Built-In Commands): Completely Reorganized section + + * source/Interp.C (interp_init_helper): Added bot:shit/none + /no-ban, /no-kick, and /no-deop constants to Scheme + + * scripts/bobot-utils.scm (bot:sent-to-me?): Redefined as a + closure (this should create the regexp once instead of each time + the function is called) + + * examples/bot.autoexec: Updated sample bot.autoexec + + * examples/bot.users: Updated sample bot.users + + * examples/bot.conf: Updated sample config + +2005-07-06 Clinton Ebadi + + * bobot++.texinfo (Sent Message Hooks): Documented hooks/send/who + and hooks/send/whois + + * source/ServerQueue.C (sendWho): Call hooks/send/who + (sendWhois): Call hooks/send/whois + + * source/Interp.C (interp_init_helper): Added hooks/send/who and + hooks/send/whois constants to Scheme + + * source/BotInterp.H: Added SEND_WHO and SEND_WHOIS hook constants + + * bobot++.texinfo (Misc Scripting Stuff): Documented bot:who and + bot:whois + (bot.conf): Document MAXNICKLENGTH + + * source/Interp.C (interp_init_helper): Add bot:who and bot:whois + bindings to Scheme + + * source/ScriptCommands.C (Who): Implemented Who method + Removed IQUEUE macro (no longer needed) + (Whois): Implemented Whois method + + * source/ScriptCommands.H: Added Who and Whois methods + + * source/Commands.C (Who): Implemented Who + (Whois): Implemented Whois + + * source/Commands.H: Add Who and Whois tethods + + * source/Interp.C: Updated copyright notice + (interp_init_helper): Remove send from CTCP/CTCPReply method names + + * source/Interp.H: Updated copyright notice + + * source/ScriptCommands.C (CTCP): Renamed from sendCTCP + (CTCPReply): Renamed from sendCTCPReply + +2005-07-05 Clinton Ebadi + + * bobot++.texinfo (Low Level Message Functions): Updated docs to + reflect new names for ctcp functions + + * source/Interp.C (interp_init_helper): Register + ScriptCommands::Notice instead of sendNotice + (interp_init_helper): Renamed bot:send-ctcp to bot:ctcp + (interp_init_helper): Renamed bot:send-ctcp-reply to bot:ctcp-reply + + * source/ScriptCommands.C (Notice): Renamed from sentNotice + + * source/ScriptCommands.H: Renamed sendNotice to Notice + + * bobot++.texinfo (Hook Types): Spelling fix + 2005-07-04 Clinton Ebadi + * scripts/bobot-utils.scm (_deprecated-fun): Set + current-error-port to bot:logport while calling + issue-deprecation-warning + * bobot++.texinfo: Grammar fixes on the title page (Configuration): Added more info on config files. (bot.conf): Added xrefs for server syntax and channel syntax @@ -327,7 +530,8 @@ (toUpper): Use Utils::to_upper (trim): Use Utils::trim_str - * source/String.H: removed srep, replaced it with a std::string (my_string) + * source/String.H: removed srep, replaced it with a std::string + (my_string) * source/Utils.C (to_upper): Applied patch from Jos Hulzink @@ -1000,6 +1204,6 @@ * source/Queue.C: Didn't notice iostream.h here! Fixed -Copyright 2002,2003,2004,2005 Clinton Ebadi +Copyright 2002,2003,2004,2005,2006,2007 Clinton Ebadi Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved.