@node-red/editor-client 5.0.0-beta.0 → 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 +52 -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 +543 -193
- 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 +34 -16
- 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,47 +1,65 @@
|
|
|
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": `
|
|
13
13
|
<p>As a beta release, this is a step towards the final version of Node-RED 5.0.</p>
|
|
14
|
-
<p>
|
|
14
|
+
<p>This release provides more updates to the sidebars and the default layout.</p>
|
|
15
15
|
<p>We will be making incremental changes betwen each beta release, so please try it out and let us know your feedback!</p>
|
|
16
16
|
`
|
|
17
17
|
}
|
|
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
|
-
<p>You can also move the sidebars between the two sides by dragging their buttons around.</p>
|
|
28
|
-
<p>We have moved the Information sidebar to the left-hand side to provide a more natural way to navigate around your flows.</p>
|
|
29
|
-
<p>This is the first iteration of changes. In a future beta we will add the ability to split the sidebar vertically, so you can have multiple
|
|
30
|
-
panels showing at once.</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
|
+
{
|
|
31
|
+
title: {
|
|
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
|
+
{
|
|
35
42
|
title: {
|
|
36
|
-
"en-US": "
|
|
43
|
+
"en-US": "Rate Limiting - burst mode",
|
|
37
44
|
},
|
|
38
45
|
description: {
|
|
39
46
|
"en-US": `
|
|
40
|
-
<p>
|
|
41
|
-
|
|
42
|
-
<p>There is also a new 'zoom to fit' button in the status bar; this will set your zoom level to ensure all of your nodes are currently visible.</p>
|
|
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>
|
|
43
49
|
`,
|
|
44
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
|
+
}
|
|
45
63
|
}
|
|
46
64
|
]
|
|
47
65
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|