Add upgrader task, Issue #521

This commit is contained in:
Garvin Hicking 2017-07-10 13:53:33 +02:00
parent 07d75a6d65
commit 59f8837ab2
2 changed files with 5 additions and 1 deletions

View File

@ -266,6 +266,10 @@ $tasks = array(array('version' => '0.5.1',
'arguments' => array(substr($serendipity['serendipityPath'], 0, -1), $dead_files_202, array('internals'), true),
'desc' => 'The following old dead files will be removed from your system.<br><pre>' . implode(', ', $dead_files_202) . '</pre>'),
array('version' => '2.2.0-beta2',
'function' => 'serendipity_upgrader_rewriteFeedIcon',
'title' => 'Update .htaccess file',
'desc' => 'Adds a new "documentation.*.html" rewrite rule exception to allow calling plugin documentation URLs.',
);
/* Fetch SQL files which needs to be run */

View File

@ -47,7 +47,7 @@ if (defined('USE_MEMSNAP')) {
}
// The version string
$serendipity['version'] = '2.2.0-beta1';
$serendipity['version'] = '2.2.0-beta2';
// Setting this to 'false' will enable debugging output. All alpha/beta/cvs snapshot versions will emit debug information by default. To increase the debug level (to enable Smarty debugging), set this flag to 'debug'.