@node-red/editor-client 3.0.0-beta.2 → 3.0.0-beta.3
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/locales/en-US/editor.json +59 -59
- package/locales/en-US/infotips.json +19 -19
- package/locales/en-US/jsonata.json +40 -40
- package/locales/ja/editor.json +2 -1
- package/locales/ja/infotips.json +1 -1
- package/package.json +1 -1
- package/public/red/about +39 -0
- package/public/red/red.js +787 -276
- package/public/red/red.min.js +2 -2
- package/public/red/style.min.css +2 -2
- package/public/red/tours/images/context-menu.png +0 -0
- package/public/red/tours/welcome.js +24 -11
- package/public/vendor/vendor.js +3 -3
|
Binary file
|
|
@@ -1,15 +1,27 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
version: "3.0.0-beta.
|
|
2
|
+
version: "3.0.0-beta.3",
|
|
3
3
|
steps: [
|
|
4
4
|
{
|
|
5
5
|
titleIcon: "fa fa-map-o",
|
|
6
6
|
title: {
|
|
7
|
-
"en-US": "Welcome to Node-RED 3.0 Beta
|
|
8
|
-
"ja": "Node-RED 3.0 ベータ
|
|
7
|
+
"en-US": "Welcome to Node-RED 3.0 Beta 3!",
|
|
8
|
+
"ja": "Node-RED 3.0 ベータ3へようこそ!"
|
|
9
9
|
},
|
|
10
10
|
description: {
|
|
11
|
-
"en-US": "<p>This is the
|
|
12
|
-
"ja": "<p>これはNode-RED 3.0の最初のベータリリースです。これには、最終リリースで計画しているほぼ全ての機能が含まれています。</p><p>本リリースの新機能を見つけてみましょう。</p>"
|
|
11
|
+
"en-US": "<p>This is the final beta release of Node-RED 3.0.</p><p>Let's take a moment to discover the new features in this release.</p>",
|
|
12
|
+
// "ja": "<p>これはNode-RED 3.0の最初のベータリリースです。これには、最終リリースで計画しているほぼ全ての機能が含まれています。</p><p>本リリースの新機能を見つけてみましょう。</p>"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
title: {
|
|
17
|
+
"en-US": "Context Menu"
|
|
18
|
+
},
|
|
19
|
+
image: 'images/context-menu.png',
|
|
20
|
+
description: {
|
|
21
|
+
"en-US": `<p>The editor now has its own context menu when you
|
|
22
|
+
right-click in the workspace.</p>
|
|
23
|
+
<p>This makes many of the built-in actions much easier
|
|
24
|
+
to access.</p>`
|
|
13
25
|
}
|
|
14
26
|
},
|
|
15
27
|
{
|
|
@@ -19,12 +31,13 @@ export default {
|
|
|
19
31
|
},
|
|
20
32
|
image: 'images/junction-slice.gif',
|
|
21
33
|
description: {
|
|
22
|
-
"en-US": `<p>To make it easier to route wires around your flows,
|
|
23
|
-
add junction nodes that give
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
34
|
+
"en-US": `<p>To make it easier to route wires around your flows,
|
|
35
|
+
it is now possible to add junction nodes that give
|
|
36
|
+
you more control.</p>
|
|
37
|
+
<p>Junctions can be added to wires by holding the Alt key
|
|
38
|
+
then click and drag the mouse across the wires.</p>`,
|
|
39
|
+
// "ja": `<p>フローのワイヤーの経路をより制御しやすくするために、分岐点ノードを追加できるようになりました。</p>
|
|
40
|
+
// <p>シフトキーを押しながら、マウスの右ボタンをクリックし、ワイヤーを横切るようにドラッグすることで、分岐点を追加できます。</p>`
|
|
28
41
|
},
|
|
29
42
|
},
|
|
30
43
|
{
|