Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-22 | Pretty large coding style cleanup, in source doc | Adam | |
cleanup, and allow protocol mods to depend on each other | |||
2012-10-01 | Cleanup of all of the protocol modules, rewrote message handling system to ↵ | Adam | |
be a bit more C++ ish | |||
2012-02-14 | Clean up and reorganize our header files | Adam | |
2012-01-02 | Updated Copyright to 2012 | Adam | |
2011-09-10 | Made service_reference type safe | Adam | |
2011-07-14 | Rewrote how commands are handled within Anope. | Adam | |
This allows naming commands and having spaces within command names. | |||
2011-06-17 | Search all domains for language strings, fixes the mess that we used to use ↵ | Adam | |
to translate strings in 3rd party modules | |||
2011-05-16 | Use module type to determine what type each module is instead of its ↵ | Adam | |
location in the configuration file. | |||
2011-05-16 | Moved some global functions to be member functions and misc cleanup | Adam | |
2011-03-13 | Added some useful Anope::Version functions to prevent some files from ↵ | DukePyrolator | |
unnecessarily rebuilding on every make | |||
2011-02-04 | Moved the language strings which are only used once | Adam | |
out of the core and into the modules that use them. | |||
2011-01-05 | update copyrights for 2011 | lethality | |
2010-12-25 | Forward port part of 821995bf604b5c6e18e6c0c93a31e149565160c8 | Adam | |
2010-12-12 | The rest of the earlier command changes | Adam | |
2010-10-30 | Made gettext work on most OSs. Tested on Debian, FreeBSD, Gentoo, and Windows. | Adam | |
Added a search path option to the Config script for cmake to use when finding libraries for modules or for gettext. Fixed m_mysql and m_ssl to work under Windows, made the Windows Config program remember the last used options, and fixed Windows release builds. | |||
2010-10-28 | Made gettext work on Debian and updated some documentation | Adam | |
2010-10-26 | Fixed Windows build with gettext | Adam | |
2010-10-23 | Made the language system still work even if the locales are not installed on ↵ | Adam | |
the system | |||
2010-10-11 | Fixed Windows build | Adam | |
2010-10-04 | Automatically destruct messages when modules are unloaded | Adam | |
2010-10-04 | Changed the protocol handling system to use a vector of strings instead of C ↵ | Adam | |
style arrays. Burned the old process/split_buf/memory.c code | |||
2010-10-01 | Rewrote some of the socket code to allow m_ssl to be a service. | Adam | |
This allows modules (xmlrpc) to create and accept SSL connections. Also fixed unloading m_mysql at certain times and made the threading engine always work correctly on Windows. | |||
2010-09-26 | Partial fix for finding gettext with CMake, still doesn't fix the lack of ↵ | Naram Qashat | |
finding non-standard paths though. | |||
2010-09-26 | Changed the language system to use gettext | Adam | |
2010-09-17 | Rejig of some of the socket stuff. Fixed marking sockets as nonblocking on ↵ | Adam | |
Windows. Added in a LastError function to keep having to use strerror/GetLastError everywhere. | |||
2010-08-27 | Added a new logging system | Adam | |
2010-08-22 | Added a classbase for the major classes, makes dynamic_reference ↵ | Adam | |
invalidation really work. This also cleans up a bit of the code in the modestacker. | |||
2010-08-17 | Rewrote the config reader to better handle invalid configs. | Adam | |
This prevents Anope from exploding when /os reload has errors. | |||
2010-08-15 | Rewrote the MySQL API to use threads. This acts similar to before, but is ↵ | Adam | |
faster. Removed db_mysql_execute for now. | |||
2010-07-31 | Don't dynamically allocate commands in modules anymore, instead made them ↵ | Adam | |
members of modules. This means the commands are automatically destructed when the module is unloaded. Cleans up some old ugly code. | |||
2010-07-30 | Slight cleanup in modules.cpp. | Naram Qashat | |
2010-07-27 | Some windows fixes from the Anope::string commit | Adam | |
2010-07-26 | Trying to make things a little more const-safe, a work in progress but this ↵ | Naram Qashat | |
is a bit better. | |||
2010-07-25 | Epic commit to replace most of the strings in Anope with a single ↵ | Naram Qashat | |
Anope::string class, plus some other little fixes here and there. If you follow 1.9.x development and are testing things, THIS is one of those things that NEEDS testing. | |||
2010-06-28 | Fix version system so it doesn't cause the entire build tree to get rebuilt ↵ | Naram Qashat | |
just because version.h gets regenerated, thanks to Adam for initial patch. | |||
2010-06-22 | moved FindMessage() into the Anope class | DukePyrolator | |
2010-06-21 | Fixed a few Windows problems with cleaning out the runtime directory | Adam | |
2010-06-20 | Store modules in a list and xlines in a vector, not deques. We need to be ↵ | Adam | |
able to keep iterators valid. | |||
2010-06-20 | The first of a few "CBX OCDing over code style" commits, focusing on ↵ | Naram Qashat | |
include/* and src/* but not src/core/* or src/modules/*. | |||
2010-06-18 | Renamed all of source files from .c to .cpp | Adam | |