Zotero is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources.
Go to file
Dan Stillman c0eb1746db Turn on auto-vacuuming, which keeps file size down after deletes and prevents DB fragmentation
This can't be enabled on databases with existing tables, so for existing users we can either a) add a FAQ with instructions to recreate and let the advanced users do it and let everyone else have larger tables or b) add a migration step to dump to a new file and then replace the old with the new, which may be a risky and not all that easy proposition (given the lack of .dump) but might work...

The steps, by the way, with Firefox closed:

$ sqlite3 zotero.sqlite
sqlite> .out dump.sql
sqlite> .quit
$ sqlite3 db.sqlite
sqlite> PRAGMA auto_vacuum = 1;
sqlite> .read dump.sql
sqlite> .quit
$ mv db.sqlite zotero.sqlite
2006-10-11 09:44:20 +00:00
chrome Turn on auto-vacuuming, which keeps file size down after deletes and prevents DB fragmentation 2006-10-11 09:44:20 +00:00
components And use the correct new component name ourselves... 2006-10-10 23:14:30 +00:00
defaults/preferences Don't set (currently unused) downloadAssociatedFiles pref 2006-10-05 17:22:47 +00:00
chrome.manifest OK, this might be it, assuming I got the build script right 2006-10-03 00:29:42 +00:00
install.rdf install.rdf/update.rdf preparations 2006-10-06 00:31:32 +00:00
license.txt Closes #63, Add ECL license info to source code 2006-10-04 17:16:56 +00:00
scrapers.sql Eek--bump the scraper version after clearing the tables for upgraders 2006-10-06 15:26:04 +00:00
system.sql New item types, fields, creator types, and the glue to make them work 2006-10-05 22:27:29 +00:00
update.rdf Don't create a broken update.rdf 2006-10-06 03:59:10 +00:00
userdata.sql Ack! Drop translators and CSL for people upgrading! 2006-10-06 03:49:46 +00:00