v0.4 => v0.5 ============ CONFIG.PHP ---------- // user time zone // "server" = same timezone as server // otherwise put number of seconds from GMT // e.g. Bangkok = 25200 (GMT+7), New York = -1800 (GMT-5) define('TZN_TZDEFAULT','server'); // when task without deadline is marked as done, show for how many days define('FRK_NO_DEADLINE_KEEP',0); // number of days // number of items in RSS file define('FRK_RSS_SIZE',8); // charset (utf-8 for unicode support) define('FRK_CHARSET','UTF-8'); v0.3 => v0.4 ============ CONFIG.PHP ---------- // add description to tasks / todos define('FRK_DESCRIPTION_ENABLE',TRUE); // TRUE OR FALSE V0.2 => V0.3 ============ CONFIG.PHP ----------- define('FRK_STATUS_LEVELS',5); // 1 to 5 // how many levels to get status at 100% define('FRK_LANGUAGE','en'); // en, fr // language of the interface define('FRK_NO_DEADLINE_TOO',TRUE); // TRUE or FALSE // deadline: displays day of the week (or tomorrow) or '1 day V0.1 => V0.2 ============ CONFIG.PHP ----------- define("FRK_PRIORITY_LEVELS",9); // 3, 5 or 9 define("FRK_CONTEXT_ENABLE",1); // 0 or 1 define("FRK_CONTEXT_LONG",1); // 0 or 1 $_GLOBALS['arrContexts'] = array ( 'W' => 'Work', 'H' => 'Home', 'I' => 'Internet', 'P' => 'Phone', 'A' => 'Anywhere', 'O' => 'Other' ); // You can customize contexts, but make sure the key letter is different // The first item will be the context by default when creating a task MySQL ----------- ALTER TABLE `task` ADD `context` CHAR( 1 ) NOT NULL AFTER `priority`; SQLite ----------- try this: ALTER TABLE task ADD context; depending on your version of SQLite, it might not work. In that case... If you feel courageous go there: http://code.jenseng.com/db/#alter (if you successfully implement this, please send me the script and i'll put it on the website) If you're not, either stick to version 0.1 or consider your current tasks gone: run install_sqlite.php and force deletion of your database