@node-red/editor-client 5.0.0-beta.0 → 5.0.0-beta.1
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 +6 -0
- package/public/red/red.js +386 -98
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +2 -2
- package/public/red/tours/welcome.js +13 -14
|
@@ -4,42 +4,41 @@ export default {
|
|
|
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 1!",
|
|
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 1!"
|
|
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": "Split Sidebars",
|
|
22
22
|
},
|
|
23
23
|
description: {
|
|
24
24
|
"en-US": `
|
|
25
|
-
<p>The sidebars
|
|
26
|
-
<p>
|
|
27
|
-
|
|
28
|
-
<p>
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
<p>The sidebars can now be split vertically, allowing you to have multiple panels showing at once.</p>
|
|
26
|
+
<p>The Info sidebar has been split into two panels; the Explorer panel gives you an overview of your flows and nodes, whilst the Info panel
|
|
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>
|
|
31
31
|
`,
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
title: {
|
|
36
|
-
"en-US": "
|
|
36
|
+
"en-US": "What's next?",
|
|
37
37
|
},
|
|
38
38
|
description: {
|
|
39
39
|
"en-US": `
|
|
40
|
-
<p>
|
|
41
|
-
<p>
|
|
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>
|
|
40
|
+
<p>The next beta will include a number of improvements to the individual sidebars; particularly the new Explorer panel to make navigation easier.</p>
|
|
41
|
+
<p>We're also going to take a hard look at the header of the editor with a number of layout improvements coming.</p>
|
|
43
42
|
`,
|
|
44
43
|
}
|
|
45
44
|
}
|