From 67ea9c999278850d175d38f8598e8043c9564f95 Mon Sep 17 00:00:00 2001 From: Ryan Grove Date: Sat, 5 May 2007 19:48:49 +0000 Subject: [PATCH] prepare for 1.0.1 release --- HISTORY | 9 +++++++++ minify.php | 10 +++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 HISTORY diff --git a/HISTORY b/HISTORY new file mode 100644 index 0000000..c69fc8d --- /dev/null +++ b/HISTORY @@ -0,0 +1,9 @@ +Minify Release History + +Version 1.0.1 (2007-05-05) + * Fixed various problems resolving pathnames when hosted on an NFS mount. + * Fixed 'undefined constant' notice. + * Replaced old JSMin library with a much faster custom implementation. + +Version 1.0.0 (2007-05-02) + * First release. \ No newline at end of file diff --git a/minify.php b/minify.php index 73950a3..9c4266f 100644 --- a/minify.php +++ b/minify.php @@ -16,10 +16,14 @@ * @author Ryan Grove * @copyright 2007 Ryan Grove. All rights reserved. * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version 1.0.1 (?) + * @version 1.0.1 (2007-05-05) * @link http://code.google.com/p/minify/ */ +// Uncomment when debugging. +// error_reporting(E_ALL | E_STRICT); +// ini_set('display_errors', 'on'); + if (!defined('MINIFY_BASE_DIR')) { /** * Base path from which all relative file paths should be resolved. By default @@ -72,7 +76,7 @@ if (!defined('MINIFY_USE_CACHE')) { * @author Ryan Grove * @copyright 2007 Ryan Grove. All rights reserved. * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version 1.0.1 (?) + * @version 1.0.1 (2007-05-05) * @link http://code.google.com/p/minify/ */ class Minify { @@ -278,7 +282,7 @@ class Minify { return false; } - + /** * Combines and returns the contents of all files that have been added with * addFile() or via this class's constructor.