Skip to content

Commit 334958e

Browse files
committed
🚀 Release Version 2.0.1.
1 parent 67d0017 commit 334958e

File tree

5 files changed

+25
-14
lines changed

5 files changed

+25
-14
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
Below is a detailed change-log, along with specific tasks completed, for each version released to date for Apache Error Pages.
44

5+
## Version 2.0.1 (15/05/2018)
6+
7+
- [#new](#new)
8+
- Moved `/assets/` and `/webfonts/` to new `/src/static/` folder for better organisation.
9+
- [#enhancement](#enhancement)
10+
- Created proper functions for all the minfy scripts:
11+
- `src/scripts/minify`
12+
- `src/scripts/minify_iis`
13+
- `src/scripts/minify_nginx`
14+
- `src/scripts/minify_other`
15+
- 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.
16+
517
## Version 2.0.0 (15/05/2018)
618

719
- [#new](#new)

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Apache Error Pages Replacement
1+
# Apache, Nginx and IIS HTTP Error Pages Replacement
22

3-
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.
3+
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.
44

55
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.
66

@@ -427,16 +427,17 @@ The ../dist/apache folder has been reset.
427427
510.html minified
428428
511.html minified
429429
All the CSS files have now been minified.
430+
Copying the assets and fonts...
430431
Minification Complete!
431432
```
432433

433434
There are no options for running this script. Executing this command will:
434435

435-
* Delete the `/dist/apache/css/` folder.
436-
* Delete all the error pages with `rm -f ../dist/apache/*.html`.
436+
* Delete the contents in the `/dist/apache/` folder.
437437
* Recreate the `/dist/apache/css/` folder.
438-
* Minify the HTML for all files in the `/src/` directory.
438+
* Minify the HTML for all files in the `/src/apache/` directory.
439439
* Minify the CSS for all the files in `/src/css/` directory.
440+
* Copy unminified assets and fonts in `/src/static/` directory.
440441
* Output the HTML and CSS to the `/dist/apache/` folder.
441442

442443
#### Additional scripts
@@ -458,8 +459,7 @@ The ../dist/nginx folder has been reset.
458459
497.html minified
459460
499.html minified
460461
All the CSS files have now been minified.
461-
Copying the /assets/ folder across...
462-
Copying the /webfonts/ folder across...
462+
Copying the assets and fonts...
463463
Minification Complete!
464464
```
465465

@@ -477,8 +477,7 @@ The ../dist/ms-iis folder has been reset.
477477
449.html minified
478478
451.html minified
479479
All the CSS files have now been minified.
480-
Copying the /assets/ folder across...
481-
Copying the /webfonts/ folder across...
480+
Copying the assets and fonts...
482481
Minification Complete!
483482
```
484483

@@ -500,8 +499,7 @@ The ../dist/other folder has been reset.
500499
901.html minified
501500
902.html minified
502501
All the CSS files have now been minified.
503-
Copying the /assets/ folder across...
504-
Copying the /webfonts/ folder across...
502+
Copying the assets and fonts...
505503
Minification Complete!
506504
```
507505

src/scripts/minify_iis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Version : 2.0.1
99
# Link : https://github.com/justinhartman/Apache-Error-Pages
1010
# Link : https://justin.hartman.me
11-
# Since : 1.0.0
11+
# Since : 2.0.0
1212
#
1313
# This program is free software: you can redistribute it and/or modify
1414
# it under the terms of the GNU Affero General Public License as

src/scripts/minify_nginx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Version : 2.0.1
99
# Link : https://github.com/justinhartman/Apache-Error-Pages
1010
# Link : https://justin.hartman.me
11-
# Since : 1.0.0
11+
# Since : 2.0.0
1212
#
1313
# This program is free software: you can redistribute it and/or modify
1414
# it under the terms of the GNU Affero General Public License as

src/scripts/minify_other

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Version : 2.0.1
99
# Link : https://github.com/justinhartman/Apache-Error-Pages
1010
# Link : https://justin.hartman.me
11-
# Since : 1.0.0
11+
# Since : 2.0.0
1212
#
1313
# This program is free software: you can redistribute it and/or modify
1414
# it under the terms of the GNU Affero General Public License as
@@ -23,6 +23,7 @@
2323
# You should have received a copy of the GNU Affero General Public License
2424
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2525
#
26+
2627
#######################################
2728
# Clears out the distribution folder
2829
# and re-creates the CSS folder.

0 commit comments

Comments
 (0)