@node-red/editor-client 3.0.0-beta.1 → 3.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/locales/en-US/editor.json +2 -1
- package/locales/ja/editor.json +22 -19
- package/package.json +1 -1
- package/public/red/about +35 -0
- package/public/red/red.js +187 -150
- package/public/red/red.min.js +2 -2
- package/public/red/style.min.css +1 -1
- package/public/red/tours/welcome.js +31 -14
- package/public/vendor/vendor.js +3 -3
|
@@ -907,7 +907,8 @@
|
|
|
907
907
|
"uknownNodes": "Unknown nodes",
|
|
908
908
|
"unusedSubflows": "Unused subflows",
|
|
909
909
|
"hiddenFlows": "Hidden flows",
|
|
910
|
-
"modifiedNodes": "Modified nodes and flows"
|
|
910
|
+
"modifiedNodes": "Modified nodes and flows",
|
|
911
|
+
"thisFlow": "Current flow"
|
|
911
912
|
}
|
|
912
913
|
},
|
|
913
914
|
"expressionEditor": {
|
package/locales/ja/editor.json
CHANGED
|
@@ -302,9 +302,9 @@
|
|
|
302
302
|
"successfulRestart": "フローの再起動が成功しました",
|
|
303
303
|
"deployFailed": "デプロイが失敗しました: __message__",
|
|
304
304
|
"unusedConfigNodes": "使われていない設定ノードがあります。",
|
|
305
|
-
"unusedConfigNodesButton":"未使用の構成ノードを検索",
|
|
306
|
-
"unknownNodesButton":"不明なノードを検索する",
|
|
307
|
-
"invalidNodesButton":"無効なノードを検索する",
|
|
305
|
+
"unusedConfigNodesButton": "未使用の構成ノードを検索",
|
|
306
|
+
"unknownNodesButton": "不明なノードを検索する",
|
|
307
|
+
"invalidNodesButton": "無効なノードを検索する",
|
|
308
308
|
"errors": {
|
|
309
309
|
"noResponse": "サーバの応答がありません"
|
|
310
310
|
},
|
|
@@ -1159,6 +1159,9 @@
|
|
|
1159
1159
|
"start": "開始",
|
|
1160
1160
|
"next": "次へ"
|
|
1161
1161
|
},
|
|
1162
|
+
"diagnostics": {
|
|
1163
|
+
"title": "システム情報"
|
|
1164
|
+
},
|
|
1162
1165
|
"languages": {
|
|
1163
1166
|
"de": "ドイツ語",
|
|
1164
1167
|
"en-US": "英語",
|
|
@@ -1168,6 +1171,22 @@
|
|
|
1168
1171
|
"zh-CN": "中国語(簡体)",
|
|
1169
1172
|
"zh-TW": "中国語(繁体)"
|
|
1170
1173
|
},
|
|
1174
|
+
"validator": {
|
|
1175
|
+
"errors": {
|
|
1176
|
+
"invalid-json": "JSONデータが不正: __error__",
|
|
1177
|
+
"invalid-json-prop": "__prop__: JSONデータが不正: __error__",
|
|
1178
|
+
"invalid-prop": "プロパティ式が不正",
|
|
1179
|
+
"invalid-prop-prop": "__prop__: プロパティ式が不正",
|
|
1180
|
+
"invalid-num": "数値が不正",
|
|
1181
|
+
"invalid-num-prop": "__prop__: 数値が不正",
|
|
1182
|
+
"invalid-regexp": "入力パターンが不正",
|
|
1183
|
+
"invalid-regex-prop": "__prop__: 入力パターンが不正",
|
|
1184
|
+
"missing-required-prop": "__prop__: プロパティが未設定",
|
|
1185
|
+
"invalid-config": "__prop__: 設定ノードが不正",
|
|
1186
|
+
"missing-config": "__prop__: 設定ノードが存在しません",
|
|
1187
|
+
"validation-error": "__prop__: チェックエラー: __node__, __id__: __error__"
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1171
1190
|
"action-list": {
|
|
1172
1191
|
"toggle-show-tips": "ヒント表示切替",
|
|
1173
1192
|
"show-about": "Node-REDの説明を表示",
|
|
@@ -1305,21 +1324,5 @@
|
|
|
1305
1324
|
"zoom-reset": "ズームリセット",
|
|
1306
1325
|
"toggle-navigator": "ナビゲータ表示切替",
|
|
1307
1326
|
"show-system-info": "システムインフォメーション"
|
|
1308
|
-
},
|
|
1309
|
-
"validator": {
|
|
1310
|
-
"errors": {
|
|
1311
|
-
"invalid-json": "JSONデータが不正: __error__",
|
|
1312
|
-
"invalid-json-prop": "__prop__: JSONデータが不正: __error__",
|
|
1313
|
-
"invalid-prop": "プロパティ式が不正",
|
|
1314
|
-
"invalid-prop-prop": "__prop__: プロパティ式が不正",
|
|
1315
|
-
"invalid-num": "数値が不正",
|
|
1316
|
-
"invalid-num-prop": "__prop__: 数値が不正",
|
|
1317
|
-
"invalid-regexp": "入力パターンが不正",
|
|
1318
|
-
"invalid-regex-prop": "__prop__: 入力パターンが不正",
|
|
1319
|
-
"missing-required-prop": "__prop__: プロパティが未設定",
|
|
1320
|
-
"invalid-config": "__prop__: 設定ノードが不正",
|
|
1321
|
-
"missing-config": "__prop__: 設定ノードが存在しません",
|
|
1322
|
-
"validation-error": "__prop__: チェックエラー: __node__, __id__: __error__"
|
|
1323
|
-
}
|
|
1324
1327
|
}
|
|
1325
1328
|
}
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
#### 3.0.0-beta.2: Beta Release
|
|
2
|
+
|
|
3
|
+
**Migration from 2.x**
|
|
4
|
+
|
|
5
|
+
- The 'slice wires' action has changed from Ctrl-RightMouseButton to Alt-LeftMouseButton
|
|
6
|
+
|
|
7
|
+
Editor
|
|
8
|
+
|
|
9
|
+
- Rework Junctions to be more node like in their event handling (#3607) @knolleary
|
|
10
|
+
- Change slicing / slice-junction operations over to mouse button 0 (Left Mouse Button) (#3609) @Steve-Mcl
|
|
11
|
+
- Do not slice-junction link node wires (#3608) @knolleary
|
|
12
|
+
- Handle many-to-one slicing of wires (#3604) @knolleary
|
|
13
|
+
- Ensure ACE worker options are set (#3611) @Steve-Mcl
|
|
14
|
+
- Remove duplicate history add of ungroup event (#3605) @knolleary
|
|
15
|
+
- use text width instead of number of characters for deciding select fi… (#3603) @HiroyasuNishiyama
|
|
16
|
+
- Update Japanese info of link call node reflecting update of English info (#3600) @HiroyasuNishiyama
|
|
17
|
+
- Fix typedInput label not visible on themes (#3580) @bonanitech
|
|
18
|
+
- Fix project switching when junctions are present (#3595) @Steve-Mcl
|
|
19
|
+
- Fix junction: when wiring from a regular nodes INPUT, backwards to a junction (#3591) @Steve-Mcl
|
|
20
|
+
- Fix error initialising flow tab editor (#3585) @Steve-Mcl
|
|
21
|
+
- Add Japanese translations for v3.0-beta.1 (#3576) @kazuhitoyokoi
|
|
22
|
+
- Fix image paths where `red/image/typedInput/XXXX.png` should be `red/image/typedInput/XXXX.svg` (#3592) @kazuhitoyokoi
|
|
23
|
+
- Fix browser console error Uncaught TypeError when searching certain terms (#3584) @Steve-Mcl
|
|
24
|
+
|
|
25
|
+
Runtime
|
|
26
|
+
|
|
27
|
+
- fix error on system-info action (#3589) @HiroyasuNishiyama
|
|
28
|
+
|
|
29
|
+
Nodes
|
|
30
|
+
|
|
31
|
+
- I18n switch rule selector (#3602) @HiroyasuNishiyama
|
|
32
|
+
- Handle removal of event handlers to allow mqtt client.end() to work (#3594) @PhilDay-CT
|
|
33
|
+
- update link-call node info according to current behavior (#3597) @HiroyasuNishiyama
|
|
34
|
+
|
|
35
|
+
|
|
1
36
|
#### 3.0.0-beta.1: Beta Release
|
|
2
37
|
|
|
3
38
|
**Migration from 2.x**
|