Skip to content

Commit

Permalink
🚀 Release Version 2.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinhartman committed May 15, 2018
1 parent 67d0017 commit 334958e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 14 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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
Expand All @@ -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!
```

Expand All @@ -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!
```

Expand All @@ -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!
```

Expand Down
2 changes: 1 addition & 1 deletion src/scripts/minify_iis
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/minify_nginx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/scripts/minify_other
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -23,6 +23,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#

#######################################
# Clears out the distribution folder
# and re-creates the CSS folder.
Expand Down

0 comments on commit 334958e

Please sign in to comment.