@node-red/editor-client 3.1.0-beta.3 → 3.1.0-beta.4
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 -0
- package/locales/fr/editor.json +1 -0
- package/locales/ja/editor.json +2 -0
- package/package.json +1 -1
- package/public/red/about +30 -0
- package/public/red/red.js +368 -153
- package/public/red/red.min.js +2 -2
- package/public/red/style.min.css +1 -1
- package/public/red/tours/3.0/welcome.js +58 -16
- package/public/red/tours/first-flow.js +14 -7
- package/public/red/tours/welcome.js +83 -31
|
@@ -416,6 +416,7 @@
|
|
|
416
416
|
},
|
|
417
417
|
"errors": {
|
|
418
418
|
"noNodesSelected": "<strong>Cannot create subflow</strong>: no nodes selected",
|
|
419
|
+
"acrossMultipleGroups": "Cannot create subflow across multiple groups",
|
|
419
420
|
"multipleInputsToSelection": "<strong>Cannot create subflow</strong>: multiple inputs to selection"
|
|
420
421
|
}
|
|
421
422
|
},
|
|
@@ -586,6 +587,7 @@
|
|
|
586
587
|
"editor": {
|
|
587
588
|
"title": "Manage palette",
|
|
588
589
|
"palette": "Palette",
|
|
590
|
+
"allCatalogs": "All Catalogs",
|
|
589
591
|
"times": {
|
|
590
592
|
"seconds": "seconds ago",
|
|
591
593
|
"minutes": "minutes ago",
|
package/locales/fr/editor.json
CHANGED
|
@@ -504,6 +504,7 @@
|
|
|
504
504
|
"unassigned": "Non attribué",
|
|
505
505
|
"global": "global",
|
|
506
506
|
"workspace": "espace de travail",
|
|
507
|
+
"editor": "boîte de dialogue d'édition",
|
|
507
508
|
"selectAll": "Tout sélectionner",
|
|
508
509
|
"selectNone": "Ne rien sélectionner",
|
|
509
510
|
"selectAllConnected": "Sélectionner tous les éléments connectés",
|
package/locales/ja/editor.json
CHANGED
|
@@ -416,6 +416,7 @@
|
|
|
416
416
|
},
|
|
417
417
|
"errors": {
|
|
418
418
|
"noNodesSelected": "<strong>サブフローを作成できません</strong>: ノードが選択されていません",
|
|
419
|
+
"acrossMultipleGroups": "複数のグループをまたがるサブフローは作成できません",
|
|
419
420
|
"multipleInputsToSelection": "<strong>サブフローを作成できません</strong>: 複数の入力が選択されています"
|
|
420
421
|
}
|
|
421
422
|
},
|
|
@@ -586,6 +587,7 @@
|
|
|
586
587
|
"editor": {
|
|
587
588
|
"title": "パレットの管理",
|
|
588
589
|
"palette": "パレット",
|
|
590
|
+
"allCatalogs": "全カタログ",
|
|
589
591
|
"times": {
|
|
590
592
|
"seconds": "数秒前",
|
|
591
593
|
"minutes": "数分前",
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
#### 3.1.0-beta.4: Beta Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Add Japanese translation for 3.1.0 (#4252) @kazuhitoyokoi
|
|
6
|
+
- Improve Catalogue visibility (#4248) @Steve-Mcl
|
|
7
|
+
- Add support for wiring and moving junctions on touch device (#4244) @Steve-Mcl
|
|
8
|
+
- Show errors and statuses of config nodes in the sidebar when no catch node is available (#4231) @bvmensvoort
|
|
9
|
+
- Improve wiring for horizontally aligned nodes (#4232) @knolleary
|
|
10
|
+
- French translation of Welcome Tours (#4200) @GogoVega
|
|
11
|
+
- French translation of v3.1.0-beta.3 changes (#4199) @GogoVega
|
|
12
|
+
- add Japanese message for 3.1.0 beta 3 (#4209) @HiroyasuNishiyama
|
|
13
|
+
- Dont clone the group nodes `node` array when saving edits (#4208) @Steve-Mcl
|
|
14
|
+
|
|
15
|
+
Runtime
|
|
16
|
+
|
|
17
|
+
- Add NR_SUBFLOW_NAME/ID/PATH env vars (#4250) @knolleary
|
|
18
|
+
- Evaluate all env vars as part of async flow start (#4230) @knolleary
|
|
19
|
+
- Add support for httpStatic middleware (#4229) @knolleary
|
|
20
|
+
|
|
21
|
+
Nodes
|
|
22
|
+
|
|
23
|
+
- Fix JSONata in file nodes (#4246) @kazuhitoyokoi
|
|
24
|
+
- Fix timeout icon in function and link call nodes (#4253) @kazuhitoyokoi
|
|
25
|
+
- Fix connection keep-alive in http request node (#4228) @knolleary
|
|
26
|
+
- adding timeout attribute to function node (#4177) @k1ln
|
|
27
|
+
- Fix manual mode join when multiple sequences being handled (#4143) @BitCaesar
|
|
28
|
+
- Fix delay node flush issue (#4203) @dceejay
|
|
29
|
+
- Update status and catch node labels in group mode (#4207) @Steve-Mcl
|
|
30
|
+
|
|
1
31
|
#### 3.1.0-beta.3: Beta Release
|
|
2
32
|
|
|
3
33
|
Editor
|