@node-red/editor-client 5.0.0-beta.1 → 5.0.0-beta.2
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/package.json +1 -1
- package/public/red/about +46 -1
- package/public/red/images/deploy-flows.svg +56 -1
- package/public/red/images/deploy-full.svg +53 -1
- package/public/red/images/deploy-nodes.svg +54 -1
- package/public/red/images/deploy-reload.svg +47 -1
- package/public/red/images/node-red.svg +73 -16
- package/public/red/red.js +181 -119
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +2 -2
- package/public/red/tours/images/debug-pause.png +0 -0
- package/public/red/tours/welcome.js +33 -14
- package/public/red/tours/images/missing-modules.png +0 -0
- package/public/red/tours/images/node-docs.png +0 -0
- package/public/red/tours/images/update-notification.png +0 -0
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
version: "5.0.0-beta.
|
|
2
|
+
version: "5.0.0-beta.2",
|
|
3
3
|
steps: [
|
|
4
4
|
{
|
|
5
5
|
titleIcon: "fa fa-map-o",
|
|
6
6
|
title: {
|
|
7
|
-
"en-US": "Welcome to Node-RED 5.0 Beta
|
|
7
|
+
"en-US": "Welcome to Node-RED 5.0 Beta 2!",
|
|
8
8
|
"ja": "Node-RED 5.0 へようこそ!",
|
|
9
|
-
"fr": "Bienvenue dans Node-RED 5.0 Beta
|
|
9
|
+
"fr": "Bienvenue dans Node-RED 5.0 Beta 2!"
|
|
10
10
|
},
|
|
11
11
|
description: {
|
|
12
12
|
"en-US": `
|
|
@@ -18,29 +18,48 @@ export default {
|
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
title: {
|
|
21
|
-
"en-US": "
|
|
21
|
+
"en-US": "Editor Theme changes",
|
|
22
22
|
},
|
|
23
23
|
description: {
|
|
24
24
|
"en-US": `
|
|
25
|
-
<p>
|
|
26
|
-
<p>
|
|
27
|
-
shows information about the currently selected node or flow.</p>
|
|
28
|
-
<p>The default layout has been updated to have the Explorer and Palette sidebars on the left, and for the Debug sidebar to be shown in the lower half
|
|
29
|
-
of the right-hand sidebar. Not showing the palette by default is an open question at this point - your feedback is welcome.</p>
|
|
30
|
-
<p>
|
|
25
|
+
<p>We're continuing to work towards the new theme for Node-RED - with the redesigned header being the most visible change in this release.</p>
|
|
26
|
+
<p>We've had useful feedback on the new sidebar designs; this is an area we'll continue to work on in the following betas.</p>
|
|
31
27
|
`,
|
|
32
28
|
}
|
|
33
29
|
},
|
|
34
|
-
|
|
30
|
+
{
|
|
35
31
|
title: {
|
|
36
|
-
"en-US": "
|
|
32
|
+
"en-US": "Pausing Debug",
|
|
33
|
+
},
|
|
34
|
+
image: 'images/debug-pause.png',
|
|
35
|
+
description: {
|
|
36
|
+
"en-US": `
|
|
37
|
+
<p>One new feature in this release is the ability to pause the debug sidebar. Whilst paused, incoming messages are discarded until the sidebar is unpaused.</p>
|
|
38
|
+
`,
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
title: {
|
|
43
|
+
"en-US": "Rate Limiting - burst mode",
|
|
37
44
|
},
|
|
38
45
|
description: {
|
|
39
46
|
"en-US": `
|
|
40
|
-
<p>The
|
|
41
|
-
|
|
47
|
+
<p>The Delay node has a new rate-limiting mode where, rather than spread out messages, it will let messages through as they arrive until the limit is reached, and then block
|
|
48
|
+
until the next interval starts.</p>
|
|
42
49
|
`,
|
|
43
50
|
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
title: {
|
|
54
|
+
"en-US": "What's next?",
|
|
55
|
+
},
|
|
56
|
+
description: {
|
|
57
|
+
"en-US": `
|
|
58
|
+
<p>We're continuing to work on the new editor design. The sidebar functionality continues to be a focus area, with some more improvements to come.</p>
|
|
59
|
+
<p>We'll be adding a built-in dark theme as well to compliment the existing light theme.</p>
|
|
60
|
+
<p>As always, we welcome your feedback on the new design and features - please join us on the forum or GitHub to let us know your thoughts!</p>
|
|
61
|
+
`
|
|
62
|
+
}
|
|
44
63
|
}
|
|
45
64
|
]
|
|
46
65
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|