wuffle 0.67.0 → 0.69.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/apps/board-routes.js +14 -4
- package/package.json +2 -2
- package/public/bundle.css +248 -104
- package/public/bundle.js +1 -1
- package/public/bundle.js.map +1 -1
- package/public/global.css +1 -1
- package/public/global.css.map +1 -1
- package/wuffle.config.example.js +7 -0
package/lib/apps/board-routes.js
CHANGED
|
@@ -23,6 +23,7 @@ export default async function BoardRoutes(config, router) {
|
|
|
23
23
|
|
|
24
24
|
const {
|
|
25
25
|
name,
|
|
26
|
+
description,
|
|
26
27
|
columns
|
|
27
28
|
} = config;
|
|
28
29
|
|
|
@@ -47,10 +48,19 @@ export default async function BoardRoutes(config, router) {
|
|
|
47
48
|
|
|
48
49
|
indexPage = fs.readFileSync(relativePath('index.html', staticDirectory), 'utf8');
|
|
49
50
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
if (name) {
|
|
52
|
+
indexPage = indexPage.replace(
|
|
53
|
+
'<title>Wuffle Board</title>',
|
|
54
|
+
'<title>' + boardConfig.name + ' · Wuffle Board</title>'
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (description) {
|
|
59
|
+
indexPage = indexPage.replace(
|
|
60
|
+
'<meta name="description" content="Multi repository taskboard for GitHub issues, powered by Wuffle (https://wuffle.dev)." />',
|
|
61
|
+
'<meta name="description" content="' + description + '" />'
|
|
62
|
+
);
|
|
63
|
+
}
|
|
54
64
|
|
|
55
65
|
indexPage = indexPage.replace(
|
|
56
66
|
'<script type="application/json+config"></script>',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wuffle",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.69.0",
|
|
4
4
|
"description": "A multi-repository task board for GitHub issues",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Nico Rehwaldt",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"index.js",
|
|
84
84
|
"wuffle.config.example.js"
|
|
85
85
|
],
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "3059393d0351b6a6109886bc4d4988e0900f32e7"
|
|
87
87
|
}
|