summaryrefslogtreecommitdiff
path: root/modules/database/db_flatfile.cpp
AgeCommit message (Collapse)Author
2013-04-10Move some of the modules in extras/ that arent really extra out of extras. ↵Adam
Mark our modules as VENDOR and allow modules to have multple types.
2013-03-16Have db_flatfile store object ids if they are set, even though it doesn't ↵Adam
use them, so that if other database modules that use them are loaded they can keep track of objects properly
2013-03-01Fix Windows buildAdam
2013-02-15Store hashes of the last commit instead of the last commitAdam
2013-01-27Fix db_flatfile not clearing databases on save if there are no objects left ↵Adam
of that type (it will leave the old database with old objects currently)
2013-01-21Merge usefulness of Flags and Extensible classes into Extensible, made most ↵Adam
flags we have juse strings instead of defines/enums
2013-01-12check if the database exists before we try to backup itDukePyrolator
2013-01-09Update copyright to 2013. This was done with:Adam
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-2012 Anope Team/-2013 Anope Team/i' {} \;
2012-12-25Allow modules loaded after startup to magically reobtain their database ↵Adam
objects. Fix os_dns for sql(live)
2012-12-13Optimize much of the database code and serialize code.Adam
2012-11-22Pretty large coding style cleanup, in source docAdam
cleanup, and allow protocol mods to depend on each other
2012-10-27Add a module log typeAdam
2012-10-01Allow modules to store data in their own databases.Adam
2012-09-02Fix WindowsAdam
2012-05-09Fixed saving backupslethality
2012-05-06Split up db/conf/lib/locale install directories, and allow alternate ones to ↵Adam
be specified at runtime
2012-04-23Reworked live SQL support yet againAdam
2012-03-05Fixed backup databases having their names collide due to not separating ↵Adam
month and day, #1383
2012-02-18Use C++11's explicit override feature if availableAdam
2012-01-02Updated Copyright to 2012Adam
2011-11-17Fixed storing mode locksAdam
2011-11-08WindowsAdam
2011-10-22A few minor fixupsAdam
2011-10-10Put serialized_items on the heap to prevent weird crashes on shutdown from ↵Adam
the list being destructed before members in it
2011-09-25Added a new database format and sqlite support. Also moved db-convert to a ↵Adam
module.