Skip to content

Commit 182d4c3

Browse files
author
Dave Conway-Jones
committed
Fix built in fa-icons path and bump to 2.5.1
1 parent 6e84d6e commit 182d4c3

File tree

9 files changed

+19
-14
lines changed

9 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 2.15.1: Maintenance Release
2+
3+
**Fixes**
4+
5+
- Fix built in fa-icons font paths
16

27
### 2.15.0: Milestone Release
38

@@ -8,9 +13,9 @@
813

914
**Fixes**
1015

11-
- Ensure msg.enabled applies to all themes. Issue #481
16+
- Ensure `msg.enabled` applies to all themes. Issue #481
1217
- Ensure theme applies to popup dialog alerts also.
13-
- ensure slider only sends on mouse up when in that mode. Issue #490
18+
- Ensure slider only sends on mouse up when in that mode. Issue #490
1419

1520
### 2.14.0: Milestone Release
1621

dist/dashboard.appcache

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ css/app.min.less
1010
js/app.min.js
1111
js/tinycolor-min.js
1212
socket.io/socket.io.js
13-
font-awesome/fonts/fontawesome-webfont.woff
14-
font-awesome/fonts/fontawesome-webfont.woff2
15-
weather-icons-lite/fonts/weather-icons-lite.woff
16-
weather-icons-lite/fonts/weather-icons-lite.woff2
13+
fonts/fontawesome-webfont.woff
14+
fonts/fontawesome-webfont.woff2
15+
fonts/weather-icons-lite.woff
16+
fonts/weather-icons-lite.woff2
1717

1818
NETWORK:
1919
*
2020

21-
# hash: 8da1909d8940162549a78adc2c38feb9b7c445ec7850a149bcbb4a69c0b75eca
21+
# hash: 7bb6182af4ac862115134879c1329a2f12a0c13db352437f54e5d2436c121a97
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

dist/js/app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ gulp.task('default', ['lint','jscs'], function() {
3030
gulp.task('build', ['icon', 'js', 'css', 'less', 'index', 'fonts']);
3131

3232
gulp.task('manifest', ['build'], function() {
33-
gulp.src(['dist/*','dist/css/*','dist/js/*','dist/font-awesome/fonts/*','dist/weather-icons-lite/fonts/*','dist/fonts/*'], { base: 'dist/' })
33+
gulp.src(['dist/*','dist/css/*','dist/js/*','dist/fonts/*'], { base: 'dist/' })
3434
.pipe(manifest({
3535
hash: true,
3636
//preferOnline: true,
@@ -78,10 +78,10 @@ gulp.task('icon', function() {
7878

7979
gulp.task('fonts', function() {
8080
//return gulp.src('node_modules/font-awesome/fonts/*').pipe(gulp.dest('dist/fonts/'));
81-
gulp.src('node_modules/font-awesome/fonts/fontawesome-webfont.woff').pipe(gulp.dest('dist/font-awesome/fonts/'));
82-
gulp.src('node_modules/weather-icons-lite/fonts/weather-icons-lite.woff').pipe(gulp.dest('dist/weather-icons-lite/fonts/'));
83-
gulp.src('node_modules/font-awesome/fonts/fontawesome-webfont.woff2').pipe(gulp.dest('dist/font-awesome/fonts/'));
84-
gulp.src('node_modules/weather-icons-lite/fonts/weather-icons-lite.woff2').pipe(gulp.dest('dist/weather-icons-lite/fonts/'));
81+
gulp.src('node_modules/font-awesome/fonts/fontawesome-webfont.woff').pipe(gulp.dest('dist/fonts/'));
82+
gulp.src('node_modules/weather-icons-lite/fonts/weather-icons-lite.woff').pipe(gulp.dest('dist/fonts/'));
83+
gulp.src('node_modules/font-awesome/fonts/fontawesome-webfont.woff2').pipe(gulp.dest('dist/fonts/'));
84+
gulp.src('node_modules/weather-icons-lite/fonts/weather-icons-lite.woff2').pipe(gulp.dest('dist/fonts/'));
8585
return;
8686
});
8787

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-dashboard",
3-
"version": "2.15.0",
3+
"version": "2.15.1",
44
"description": "A set of dashboard nodes for Node-RED",
55
"keywords": [
66
"node-red"

0 commit comments

Comments
 (0)