Bump version, also add some upgrader notices for people to see

This commit is contained in:
Garvin Hicking 2013-01-19 15:52:41 +01:00
parent de2188ed0b
commit e952791bb1
2 changed files with 11 additions and 1 deletions

View File

@ -149,6 +149,16 @@ $tasks = array(array('version' => '0.5.1',
'title' => 'Introduce author groups',
'desc' => 'This version introduces customizable user groups. Your existing users will be migrated into the new default groups.'),
array('version' => '1.7-rc2',
'type' => 'PLUGIN_NOTICE',
'function' => '',
'title' => '<b>PLUGIN NOTICE:</b> Due to PHP 5.2+\'s raised error reporting, every Serendipity event plugin needs to conform to the core plugin API method signature.',
'desc' => '<p>All internal and spartacus plugins have been updated to reflect this change. The most important signatures are:</p>'
. '<p><strong>function uninstall(&$propbag)</strong><br />'
. '<strong>function event_hook($event, &$bag, &$eventData, $addData = null)</strong></p>'
. '<p>Older plugins specifically did not always include the <strong>$addData</strong> signature. Make sure this exists.
If after installation you get uncircumventable errors, you can make sure to set <strong>$serendipity[\'product\'] = true;</strong> in your <strong>serendipity_config_local.inc.php</strong> file. This should lower error reporting to a way that will not interfere with incompatible problem. But this is no solution in the long run, you need to update your plugins.</p>'),
);
/* Fetch SQL files which needs to be run */

View File

@ -45,7 +45,7 @@ if (defined('USE_MEMSNAP')) {
}
// The version string
$serendipity['version'] = '1.7-rc1';
$serendipity['version'] = '1.7-rc2';
// Setting this to 'false' will enable debugging output. All alpa/beta/cvs snapshot versions will emit debug information by default. To increase the debug level (to enable Smarty debugging), set this flag to 'debug'.
if (!isset($serendipity['production'])) {