1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-11 16:44:44 +02:00

prepare for 1.0.1 release

This commit is contained in:
Ryan Grove
2007-05-05 19:48:49 +00:00
parent 2e8553a91f
commit 67ea9c9992
2 changed files with 16 additions and 3 deletions

9
HISTORY Normal file
View File

@@ -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.

View File

@@ -16,10 +16,14 @@
* @author Ryan Grove <ryan@wonko.com>
* @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 <ryan@wonko.com>
* @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.