diff --git a/Doxyfile b/Doxyfile index da12ad93..4e548067 100644 --- a/Doxyfile +++ b/Doxyfile @@ -4,7 +4,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = HTML Purifier -PROJECT_NUMBER = 1.6.0 +PROJECT_NUMBER = 1.6.1 OUTPUT_DIRECTORY = "C:/Documents and Settings/Edward/My Documents/My Webs/htmlpurifier/docs/doxygen" CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English diff --git a/NEWS b/NEWS index 6c33ae83..7dfe3531 100644 --- a/NEWS +++ b/NEWS @@ -11,12 +11,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier 1.7.0, unknown release date -1.6.1, unknown release date -! DirectLex now preserves text in which a < bracket is followed by - a non-alphanumeric character. This means that certain emoticons - are now preserved. -! %Core.RemoveInvalidImg is now operational, when set to false invalid - images will hang around with an empty src +1.6.1, released 2007-05-05 ! Support for more deprecated attributes via transformations: + hspace and vspace in img + size and noshade in hr @@ -24,6 +19,11 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier + clear in br + align in caption, table, img and hr + type in ul, ol and li +! DirectLex now preserves text in which a < bracket is followed by + a non-alphanumeric character. This means that certain emoticons + are now preserved. +! %Core.RemoveInvalidImg is now operational, when set to false invalid + images will hang around with an empty src ! target attribute in a tag supported, use %Attr.AllowedFrameTargets to enable ! CSS property white-space now allows nowrap (supported in all modern diff --git a/VERSION b/VERSION index ce6a70b9..2eda823f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.6.0 \ No newline at end of file +1.6.1 \ No newline at end of file diff --git a/WHATSNEW b/WHATSNEW index 4d082b0f..7ce6b516 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -1,5 +1,7 @@ -The 1.6.0 release, code-named Long-Overdue, contains added support -for a number of deprecated attributes HTML Purifier should have -had from the very beginning, including the name, bgcolor, border, -width and height attributes. The CSS property 'height', -rel and rev attributes, ID blacklist regexps are also available. \ No newline at end of file +The 1.6.1 release, code-named 'Ach! We missed something! Run!', completes +HTML Purifier's roster of attribute transformations. It also implements +a number of minor features (such as better font transformations, smarter +HTML parsing, the CSS property 'white-space' and XHTML 1.1), a few bug +fixes (most notably fixed __autoload compatibility issues) and a ton +of refactoring. 1.6 was for things that absolutely could not wait: this +release, developed in a more leisurely pace, fills in the gaps. \ No newline at end of file diff --git a/library/HTMLPurifier.php b/library/HTMLPurifier.php index 5a0ce99d..3d538bca 100644 --- a/library/HTMLPurifier.php +++ b/library/HTMLPurifier.php @@ -22,7 +22,7 @@ */ /* - HTML Purifier 1.6.0 - Standards Compliant HTML Filtering + HTML Purifier 1.6.1 - Standards Compliant HTML Filtering Copyright (C) 2006 Edward Z. Yang This library is free software; you can redistribute it and/or @@ -64,7 +64,7 @@ require_once 'HTMLPurifier/Encoder.php'; class HTMLPurifier { - var $version = '1.6.0'; + var $version = '1.6.1'; var $config; var $filters;