diff --git a/docs/NEWS b/docs/NEWS index b4fac263..027e8871 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -18,10 +18,6 @@ Version 1.6 () http://board.s9y.org/viewtopic.php?f=11&t=16921 Thanks to mt2! - * Fix PHP 5.3.2 parse error in a file, thanks to fyremoon - - * Include license output in plugin listing (onli) - * Fix karma rating plugin missing the text translation for a specific point area @@ -32,10 +28,6 @@ Version 1.6 () * Added new 'fulltext' search option to sidebar plugin http://board.s9y.org/viewtopic.php?f=4&t=16051 - * Fix SQL query statement for deleting a category, which on some - DB types (SQlite) might not return "true" and thus not really - delete the category. (garvinhicking) - * Truncate suppressed referrer's query string to 255 characters (ads) @@ -55,16 +47,9 @@ Version 1.6 () auto-split after 75 characters. (Ref: http://board.s9y.org/viewtopic.php?f=3&t=16314) - * Add new template variable to feed*.tpl files to support new - plugins like pubsubhubbub, so that plugins can embed data to the - main XML element (onli) - * To support custom PHP sessions, s9y will only issue session_start, if no session exists yet (garvinhicking) - * Fix escaping when using ImageMagick to create PDF-thumbnail images - (stm9x9) - * Use "Longtext" instead of "text" for new installations on blog entry body and extended body inside database tables. (garvinhicking) @@ -83,7 +68,25 @@ Version 1.6 () * Added event hook backend_sendcomment for sending comments and being able to chang via plugin API (onli) -Version 1.5.3 (May 10th, 2010); +Version 1.5.4 (August 26th, 2010) +------------------------------------------------------------------------ + + * Fix PHP 5.3.2 parse error in a file, thanks to fyremoon + + * Fix SQL query statement for deleting a category, which on some + DB types (SQlite) might not return "true" and thus not really + delete the category. (garvinhicking) + + * Include license output in plugin listing (onli) + + * Fix escaping when using ImageMagick to create PDF-thumbnail images + (stm9x9) + + * Add new template variable to feed*.tpl files to support new + plugins like pubsubhubbub, so that plugins can embed data to the + main XML element (onli) + +Version 1.5.3 (May 10th, 2010) ------------------------------------------------------------------------ * Added workaround for dynamic configuration of Xinha plugins diff --git a/serendipity_config.inc.php b/serendipity_config.inc.php index 3c653098..e9825cc8 100644 --- a/serendipity_config.inc.php +++ b/serendipity_config.inc.php @@ -45,7 +45,7 @@ if (defined('USE_MEMSNAP')) { } // The version string -$serendipity['version'] = '1.6-alpha2'; +$serendipity['version'] = '1.6-alpha3'; // 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'. $serendipity['production'] = (preg_match('@\-(alpha|beta|cvs)@', $serendipity['version']) ? false : true);