1
0
mirror of https://github.com/mrclay/minify.git synced 2025-07-31 19:30:29 +02:00

Text files update

This commit is contained in:
Steve Clay
2008-09-07 02:57:30 +00:00
parent b324a40714
commit c13cf9b1d5
3 changed files with 16 additions and 7 deletions

16
HISTORY
View File

@@ -2,14 +2,20 @@ Minify Release History
Version 2.1.0 Version 2.1.0
* "min" default configuration for quick deployment * "min" default configuration for quick deployment
* builder app for creating minify URIs * Minify URI Builder app & bookmarklet for quickly creating minify URIs
* "debug" mode for revealing original line #s in combined files
* Relative URIs in CSS file are fixed automatically * Relative URIs in CSS file are fixed automatically
* Conditional GETs always supported * Conditional GETs always supported
* Improved CSS/HTML minifiers * "debug" mode for revealing original line #s in combined files
* New "CSS linearizer" which processes @imports server-side * Better IIS support
* Improved minifier classes:
* JS: preserves IE conditional comments
* CSS: smaller output, preserves more hacks and valid CSS syntax,
shorter line lengths, other bug fixes
* HTML: smaller output, shorter line lengths, other bug fixes
* Experimental memcache cache class (default is files) * Experimental memcache cache class (default is files)
* Several bug fixes * Minify_Cache_File has flock()s (by default)
* Workaround for Windows mtime reporting bug
* New "CSS linearizer" which processes @imports server-side
Version 2.0.2 beta (2008-06-24) Version 2.0.2 beta (2008-06-24)
* Fast new cache system. Cached files served almost 3x as fast. * Fast new cache system. Cached files served almost 3x as fast.

View File

@@ -1,4 +1,5 @@
Copyright (c) 2007 Ryan Grove <ryan@wonko.com> Copyright (c) 2008 Ryan Grove <ryan@wonko.com>
Copyright (c) 2008 Steve Clay <steve@mrclay.org>
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

4
README
View File

@@ -1,4 +1,4 @@
WELCOME TO MINIFY 2.0! WELCOME TO MINIFY 2.1!
Minify is an HTTP content server. It compresses sources of content Minify is an HTTP content server. It compresses sources of content
(usually files), combines the result and serves it with appropriate (usually files), combines the result and serves it with appropriate
@@ -36,3 +36,5 @@ directory: i.e. you will have: /home/user/www/public_html/min_extras
Other test_*.php files in that directory can be run to test individual Other test_*.php files in that directory can be run to test individual
components more verbosely. components more verbosely.
After testing you should remove the min_extras directory.