mirror of
https://github.com/mrclay/minify.git
synced 2025-08-12 00:54:35 +02:00
prepare for 1.0.1 release
This commit is contained in:
9
HISTORY
Normal file
9
HISTORY
Normal 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.
|
@@ -16,10 +16,14 @@
|
|||||||
* @author Ryan Grove <ryan@wonko.com>
|
* @author Ryan Grove <ryan@wonko.com>
|
||||||
* @copyright 2007 Ryan Grove. All rights reserved.
|
* @copyright 2007 Ryan Grove. All rights reserved.
|
||||||
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
* @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/
|
* @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')) {
|
if (!defined('MINIFY_BASE_DIR')) {
|
||||||
/**
|
/**
|
||||||
* Base path from which all relative file paths should be resolved. By default
|
* 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>
|
* @author Ryan Grove <ryan@wonko.com>
|
||||||
* @copyright 2007 Ryan Grove. All rights reserved.
|
* @copyright 2007 Ryan Grove. All rights reserved.
|
||||||
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
* @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/
|
* @link http://code.google.com/p/minify/
|
||||||
*/
|
*/
|
||||||
class Minify {
|
class Minify {
|
||||||
|
Reference in New Issue
Block a user