mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
82 lines
3.4 KiB
JavaScript
82 lines
3.4 KiB
JavaScript
export default {
|
|
version: "4.0.0-beta.1",
|
|
steps: [
|
|
{
|
|
titleIcon: "fa fa-map-o",
|
|
title: {
|
|
"en-US": "Welcome to Node-RED 4.0 Beta 1!",
|
|
"ja": "Node-RED 4.0 Beta 0へようこそ!",
|
|
"fr": "Bienvenue dans Node-RED 4.0 Beta 1!"
|
|
},
|
|
description: {
|
|
"en-US": "<p>Let's take a moment to discover the new features in this release.</p>",
|
|
"ja": "<p>本リリースの新機能を見つけてみましょう。</p>",
|
|
"fr": "<p>Prenons un moment pour découvrir les nouvelles fonctionnalités de cette version.</p>"
|
|
}
|
|
},
|
|
{
|
|
title: {
|
|
"en-US": "Timestamp formatting options",
|
|
// "ja": ""
|
|
},
|
|
image: 'images/nr4-timestamp-formatting.png',
|
|
description: {
|
|
"en-US": `<p>Nodes that let you set a timestamp now have options on what format that timestamp should be in.</p>
|
|
<p>We're keeping it simple to begin with by providing three options:<p>
|
|
<ul>
|
|
<li>Milliseconds since epoch - this is existing behaviour of the timestamp option</li>
|
|
<li>ISO 8601 - a common format used by many systems</li>
|
|
<li>JavaScript Data Object</li>
|
|
</ul>`,
|
|
// "ja": ``
|
|
}
|
|
},
|
|
{
|
|
title: {
|
|
"en-US": "Auto-complete of flow/global and env types",
|
|
// "ja": ""
|
|
},
|
|
image: 'images/nr4-auto-complete.png',
|
|
description: {
|
|
"en-US": `<p>The <code>flow</code>/<code>global</code> context inputs and the <code>env</code> input
|
|
now all include auto-complete suggestions based on the live state of your flows.</p>
|
|
`,
|
|
// "ja": ``
|
|
}
|
|
},
|
|
{
|
|
title: {
|
|
"en-US": "Config node customisation in Subflows",
|
|
// "ja": ""
|
|
},
|
|
image: 'images/nr4-sf-config.png',
|
|
description: {
|
|
"en-US": `<p>Subflows can now be customised to allow each instance to use a different
|
|
config node of a selected type.</p>
|
|
<p>For example, each instance of a subflow that connects to an MQTT Broker and does some post-processing
|
|
of the messages received can be pointed at a different broker.</p>
|
|
`,
|
|
// "ja": ``
|
|
}
|
|
},
|
|
{
|
|
title: {
|
|
"en-US": "Node Updates",
|
|
"ja": "ノードの更新",
|
|
"fr": "Mises à jour des noeuds"
|
|
},
|
|
// image: "images/",
|
|
description: {
|
|
"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>
|
|
<ul>
|
|
<li>A fully RFC4180 compliant CSV mode</li>
|
|
<li>Customisable headers on the WebSocket node</li>
|
|
<li>Split node now can operate on any message property</li>
|
|
<li>and lots more...</li>
|
|
</ul>`
|
|
}
|
|
}
|
|
]
|
|
}
|