node-red/packages/node_modules/@node-red/editor-client/src/tours/welcome.js

109 lines
4.2 KiB
JavaScript
Raw Normal View History

2021-09-08 23:57:35 +02:00
export default {
2023-02-02 14:34:01 +01:00
version: "3.1.0-beta.1",
2021-09-08 23:57:35 +02:00
steps: [
{
titleIcon: "fa fa-map-o",
title: {
2023-02-02 14:34:01 +01:00
"en-US": "Welcome to Node-RED 3.1 Beta 1!",
// "ja": "Node-RED 3.1へようこそ!"
2022-01-13 16:16:16 +01:00
},
description: {
2023-02-02 14:34:01 +01:00
"en-US": "<p>This is the first beta release for 3.1.0 and we have a few new features to tell you about.</p>",
// "ja": ""
2022-06-16 16:37:07 +02:00
}
},
{
title: {
2023-02-02 14:34:01 +01:00
"en-US": "Improved Context Menu",
// "ja": ""
2022-06-16 16:37:07 +02:00
},
image: 'images/context-menu.png',
description: {
2023-02-02 14:34:01 +01:00
"en-US": `<p>The editor's context menu has been expanded to make lots more of
the built-in actions available.</p>
<p>Adding nodes, working with groups and plenty
of other useful tools are now just a click away.</p>
<p>The flow tab bar also has its own context menu to make working
with your flows much easier.</p>`,
// "ja": ``
}
2021-09-08 23:57:35 +02:00
},
{
title: {
2023-02-02 14:34:01 +01:00
"en-US": "Hiding Flows",
// "ja": ""
},
2023-02-02 14:34:01 +01:00
image: 'images/hiding-flows.png',
description: {
2023-02-02 14:34:01 +01:00
"en-US": `<p>Hiding flows is now done through the flow context menu.</p>
<p>The 'hide' button in previous releases has been removed from the tabs
as they were being clicked accidentally too often.</p>`,
// "ja": ``
2021-09-08 23:57:35 +02:00
},
},
2022-01-26 13:00:30 +01:00
{
title: {
2023-02-02 14:34:01 +01:00
"en-US": "Locking Flows",
// "ja": ""
2022-01-26 13:00:30 +01:00
},
2023-02-02 14:34:01 +01:00
image: 'images/locking-flows.png',
2022-01-26 13:00:30 +01:00
description: {
2023-02-02 14:34:01 +01:00
"en-US": `<p>Flows can now be locked to prevent accidental changes being made.</p>
<p>When locked you cannot modify the nodes in any way.</p>
<p>The flow context menu provides the options to lock and unlock flows,
as well as in the Info sidebar explorer.</p>`,
// "ja": ``
2022-01-26 13:00:30 +01:00
},
},
2021-09-08 23:57:35 +02:00
{
title: {
2023-02-02 14:34:01 +01:00
"en-US": "Adding Images to node/flow descriptions",
// "ja": ""
},
2023-02-02 14:34:01 +01:00
// image: 'images/debug-path-tooltip.png',
description: {
2023-02-02 14:34:01 +01:00
"en-US": `<p>You can now add images to a node's or flows's description.</p>
<p>Simply drag the image into the text editor and it will get added inline.</p>
<p>When the description is shown in the Info sidebar, the image will be displayed.`,
// "ja": ``
},
2021-10-06 13:05:49 +02:00
},
{
title: {
2023-02-02 14:34:01 +01:00
"en-US": "Adding Mermaid Diagrams",
// "ja": ""
},
2023-02-02 14:34:01 +01:00
image: 'images/mermaid.png',
description: {
2023-02-02 14:34:01 +01:00
"en-US": `<p>You can also add <a href="https://github.com/mermaid-js/mermaid">Mermaid</a> diagrams directly into your node or flow descriptions.</p>
<p>This gives you much richer options for documenting your flows.</p>`,
// "ja": ``
2021-09-08 23:57:35 +02:00
},
2021-10-06 13:05:49 +02:00
},
{
title: {
2023-02-02 14:34:01 +01:00
"en-US": "Managing Global Environment Variables",
// "ja": ""
2021-10-06 13:05:49 +02:00
},
2023-02-02 14:34:01 +01:00
image: 'images/global-env-vars.png',
description: {
2023-02-02 14:34:01 +01:00
"en-US": `<p>You can set environment variables that apply to all nodes and flows in the new
'Global Environment Variables' section of User Settings.</p>`,
// "ja": ``
2022-05-03 14:40:27 +02:00
},
2021-09-08 23:57:35 +02:00
},
2021-10-06 13:05:49 +02:00
{
title: {
2022-01-13 16:16:16 +01:00
"en-US": "Node Updates",
"ja": "ノードの更新"
},
2022-01-13 16:16:16 +01:00
// image: "images/",
description: {
2023-02-02 14:34:01 +01:00
"en-US": `<p>The core nodes have received lots of minor fixes, documentation updates and
small enhancements. Check the full changelog in the Help sidebar for a full list.</p>`,
// "ja": ``
}
2021-10-06 13:05:49 +02:00
}
2021-09-08 23:57:35 +02:00
]
}