diff --git a/CHANGELOG.md b/CHANGELOG.md index 58c585e..a544bdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ Below is a detailed change-log, along with specific tasks completed, for each version released to date for Apache Error Pages. +## Version 2.0.1 (15/05/2018) + +- [#new](#new) + - Moved `/assets/` and `/webfonts/` to new `/src/static/` folder for better organisation. +- [#enhancement](#enhancement) + - Created proper functions for all the minfy scripts: + - `src/scripts/minify` + - `src/scripts/minify_iis` + - `src/scripts/minify_nginx` + - `src/scripts/minify_other` + - Changed `src/scripts/minify` script to now copy everything in the `/src/static/` folder so that it acts like the other scripts when installing the assets and fonts. + ## Version 2.0.0 (15/05/2018) - [#new](#new) diff --git a/README.md b/README.md index 6d72dc2..517f030 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Apache Error Pages Replacement +# Apache, Nginx and IIS HTTP Error Pages Replacement -These Apache Error Pages project is a drop-in replacement of beautifully designed, user-friendly Apache 2 error pages. If you're tired of having _boring_ Apache error pages displayed to users then these might just be the solution for you. +The Apache, Nginx and IIS Error Pages project is a drop-in replacement of beautifully designed, user-friendly Apache 2, Nginx and IIS error pages. If you're tired of having _boring_ error pages displayed to users then these might just be the solution for you. As of Version 2.0.0 there is now additional support for Nginx, Microsoft IIS and other webservers. Installation instructions are similar to Apache 2 and more details are contained below. @@ -427,16 +427,17 @@ The ../dist/apache folder has been reset. 510.html minified 511.html minified All the CSS files have now been minified. +Copying the assets and fonts... Minification Complete! ``` There are no options for running this script. Executing this command will: -* Delete the `/dist/apache/css/` folder. -* Delete all the error pages with `rm -f ../dist/apache/*.html`. +* Delete the contents in the `/dist/apache/` folder. * Recreate the `/dist/apache/css/` folder. -* Minify the HTML for all files in the `/src/` directory. +* Minify the HTML for all files in the `/src/apache/` directory. * Minify the CSS for all the files in `/src/css/` directory. +* Copy unminified assets and fonts in `/src/static/` directory. * Output the HTML and CSS to the `/dist/apache/` folder. #### Additional scripts @@ -458,8 +459,7 @@ The ../dist/nginx folder has been reset. 497.html minified 499.html minified All the CSS files have now been minified. -Copying the /assets/ folder across... -Copying the /webfonts/ folder across... +Copying the assets and fonts... Minification Complete! ``` @@ -477,8 +477,7 @@ The ../dist/ms-iis folder has been reset. 449.html minified 451.html minified All the CSS files have now been minified. -Copying the /assets/ folder across... -Copying the /webfonts/ folder across... +Copying the assets and fonts... Minification Complete! ``` @@ -500,8 +499,7 @@ The ../dist/other folder has been reset. 901.html minified 902.html minified All the CSS files have now been minified. -Copying the /assets/ folder across... -Copying the /webfonts/ folder across... +Copying the assets and fonts... Minification Complete! ``` diff --git a/src/scripts/minify_iis b/src/scripts/minify_iis index 7876391..9576ce7 100755 --- a/src/scripts/minify_iis +++ b/src/scripts/minify_iis @@ -8,7 +8,7 @@ # Version : 2.0.1 # Link : https://github.com/justinhartman/Apache-Error-Pages # Link : https://justin.hartman.me -# Since : 1.0.0 +# Since : 2.0.0 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/src/scripts/minify_nginx b/src/scripts/minify_nginx index c7f2b3e..331a05f 100755 --- a/src/scripts/minify_nginx +++ b/src/scripts/minify_nginx @@ -8,7 +8,7 @@ # Version : 2.0.1 # Link : https://github.com/justinhartman/Apache-Error-Pages # Link : https://justin.hartman.me -# Since : 1.0.0 +# Since : 2.0.0 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/src/scripts/minify_other b/src/scripts/minify_other index 6a28bbc..74f4ccf 100755 --- a/src/scripts/minify_other +++ b/src/scripts/minify_other @@ -8,7 +8,7 @@ # Version : 2.0.1 # Link : https://github.com/justinhartman/Apache-Error-Pages # Link : https://justin.hartman.me -# Since : 1.0.0 +# Since : 2.0.0 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -23,6 +23,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # + ####################################### # Clears out the distribution folder # and re-creates the CSS folder.