@node-red/editor-client 2.1.1 → 2.1.5
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 +6 -1
- package/locales/ja/editor.json +41 -6
- package/locales/zh-CN/editor.json +1 -1
- package/package.json +1 -1
- package/public/red/about +100 -0
- package/public/red/red.js +315 -213
- package/public/red/red.min.js +3 -1
- package/public/red/style.min.css +1 -1
- package/public/red/tours/first-flow.js +28 -7
- package/public/red/tours/welcome.js +116 -38
- package/public/vendor/ace/mode-jsonata.js +1 -1
- package/public/vendor/vendor.js +3 -3
|
@@ -59,6 +59,8 @@
|
|
|
59
59
|
"hideOtherFlows": "Hide other flows",
|
|
60
60
|
"showAllFlows": "Show all flows",
|
|
61
61
|
"hideAllFlows": "Hide all flows",
|
|
62
|
+
"hiddenFlows": "List __count__ hidden flow",
|
|
63
|
+
"hiddenFlows_plural": "List __count__ hidden flows",
|
|
62
64
|
"showLastHiddenFlow": "Show last hidden flow",
|
|
63
65
|
"listFlows": "List flows",
|
|
64
66
|
"listSubflows": "List subflows",
|
|
@@ -90,6 +92,7 @@
|
|
|
90
92
|
"palette": {
|
|
91
93
|
"show": "Show palette"
|
|
92
94
|
},
|
|
95
|
+
"edit": "Edit",
|
|
93
96
|
"settings": "Settings",
|
|
94
97
|
"userSettings": "User Settings",
|
|
95
98
|
"nodes": "Nodes",
|
|
@@ -668,7 +671,8 @@
|
|
|
668
671
|
"unusedConfigNodes": "Unused configuration nodes",
|
|
669
672
|
"invalidNodes": "Invalid nodes",
|
|
670
673
|
"uknownNodes": "Unknown nodes",
|
|
671
|
-
"unusedSubflows": "Unused subflows"
|
|
674
|
+
"unusedSubflows": "Unused subflows",
|
|
675
|
+
"hiddenFlows": "Hidden flows"
|
|
672
676
|
}
|
|
673
677
|
},
|
|
674
678
|
"help": {
|
|
@@ -1135,6 +1139,7 @@
|
|
|
1135
1139
|
"defaultValue": "Default value"
|
|
1136
1140
|
},
|
|
1137
1141
|
"tourGuide": {
|
|
1142
|
+
"takeATour": "Take a tour",
|
|
1138
1143
|
"start": "Start",
|
|
1139
1144
|
"next": "Next"
|
|
1140
1145
|
},
|
package/locales/ja/editor.json
CHANGED
|
@@ -54,7 +54,16 @@
|
|
|
54
54
|
"delete": "本当に '__label__' を削除しますか?",
|
|
55
55
|
"dropFlowHere": "ここにフローをドロップしてください",
|
|
56
56
|
"addFlow": "フローの追加",
|
|
57
|
+
"addFlowToRight": "右側にフローを追加",
|
|
58
|
+
"hideFlow": "フローを非表示",
|
|
59
|
+
"hideOtherFlows": "他のフローを非表示",
|
|
60
|
+
"showAllFlows": "全てのフローを表示",
|
|
61
|
+
"hideAllFlows": "全てのフローを非表示",
|
|
62
|
+
"hiddenFlows": "__count__ 個の非表示のフロー一覧",
|
|
63
|
+
"hiddenFlows_plural": "__count__ 個の非表示のフロー一覧",
|
|
64
|
+
"showLastHiddenFlow": "最後に非表示にしたフローを表示",
|
|
57
65
|
"listFlows": "フロー一覧",
|
|
66
|
+
"listSubflows": "サブフロー一覧",
|
|
58
67
|
"status": "状態",
|
|
59
68
|
"enabled": "有効",
|
|
60
69
|
"disabled": "無効",
|
|
@@ -83,6 +92,7 @@
|
|
|
83
92
|
"palette": {
|
|
84
93
|
"show": "パレットを表示"
|
|
85
94
|
},
|
|
95
|
+
"edit": "編集",
|
|
86
96
|
"settings": "設定",
|
|
87
97
|
"userSettings": "ユーザ設定",
|
|
88
98
|
"nodes": "ノード",
|
|
@@ -105,6 +115,7 @@
|
|
|
105
115
|
"editPalette": "パレットの管理",
|
|
106
116
|
"other": "その他",
|
|
107
117
|
"showTips": "ヒントを表示",
|
|
118
|
+
"showWelcomeTours": "新バージョンのガイドツアーを表示",
|
|
108
119
|
"help": "Node-REDウェブサイト",
|
|
109
120
|
"projects": "プロジェクト",
|
|
110
121
|
"projects-new": "新規",
|
|
@@ -116,7 +127,20 @@
|
|
|
116
127
|
"groupSelection": "選択部分をグループ化",
|
|
117
128
|
"ungroupSelection": "選択部分をグループ解除",
|
|
118
129
|
"groupMergeSelection": "選択部分をマージ",
|
|
119
|
-
"groupRemoveSelection": "グループから削除"
|
|
130
|
+
"groupRemoveSelection": "グループから削除",
|
|
131
|
+
"arrange": "配置",
|
|
132
|
+
"alignLeft": "左揃え",
|
|
133
|
+
"alignCenter": "左右中央揃え",
|
|
134
|
+
"alignRight": "右揃え",
|
|
135
|
+
"alignTop": "上揃え",
|
|
136
|
+
"alignMiddle": "上下中央揃え",
|
|
137
|
+
"alignBottom": "下揃え",
|
|
138
|
+
"distributeHorizontally": "左右に整列",
|
|
139
|
+
"distributeVertically": "上下に整列",
|
|
140
|
+
"moveToBack": "最背面へ移動",
|
|
141
|
+
"moveToFront": "最前面へ移動",
|
|
142
|
+
"moveBackwards": "背面へ移動",
|
|
143
|
+
"moveForwards": "前面へ移動"
|
|
120
144
|
}
|
|
121
145
|
},
|
|
122
146
|
"actions": {
|
|
@@ -451,7 +475,8 @@
|
|
|
451
475
|
"global": "グローバル",
|
|
452
476
|
"workspace": "ワークスペース",
|
|
453
477
|
"selectAll": "全てのノードを選択",
|
|
454
|
-
"
|
|
478
|
+
"selectNone": "選択を外す",
|
|
479
|
+
"selectAllConnected": "接続されたノードを選択",
|
|
455
480
|
"addRemoveNode": "ノードの選択、選択解除",
|
|
456
481
|
"editSelected": "選択したノードを編集",
|
|
457
482
|
"deleteSelected": "選択したノードや接続を削除",
|
|
@@ -461,10 +486,13 @@
|
|
|
461
486
|
"moveNode": "選択したノードを移動(移動量大)",
|
|
462
487
|
"toggleSidebar": "サイドバーの表示/非表示",
|
|
463
488
|
"togglePalette": "パレットの表示/非表示",
|
|
464
|
-
"copyNode": "
|
|
465
|
-
"cutNode": "
|
|
489
|
+
"copyNode": "ノードをコピー",
|
|
490
|
+
"cutNode": "ノードを切り取り",
|
|
466
491
|
"pasteNode": "ノードを貼り付け",
|
|
492
|
+
"copyGroupStyle": "グループ様式をコピー",
|
|
493
|
+
"pasteGroupStyle": "グループ様式を貼り付け",
|
|
467
494
|
"undoChange": "変更操作を戻す",
|
|
495
|
+
"redoChange": "変更操作をやり直し",
|
|
468
496
|
"searchBox": "ノードを検索",
|
|
469
497
|
"managePalette": "パレットの管理",
|
|
470
498
|
"actionList": "動作一覧"
|
|
@@ -519,7 +547,8 @@
|
|
|
519
547
|
"nodeEnabled_plural": "ノードを有効化しました:",
|
|
520
548
|
"nodeDisabled": "ノードを無効化しました:",
|
|
521
549
|
"nodeDisabled_plural": "ノードを無効化しました:",
|
|
522
|
-
"nodeUpgraded": "ノードモジュール __module__ をバージョン __version__ へ更新しました"
|
|
550
|
+
"nodeUpgraded": "ノードモジュール __module__ をバージョン __version__ へ更新しました",
|
|
551
|
+
"unknownNodeRegistered": "ノードの読み込みエラー: <ul><li>__type__<br>__error__</li></ul>"
|
|
523
552
|
},
|
|
524
553
|
"editor": {
|
|
525
554
|
"title": "パレットの管理",
|
|
@@ -642,7 +671,8 @@
|
|
|
642
671
|
"unusedConfigNodes": "未使用の設定ノード",
|
|
643
672
|
"invalidNodes": "不正なノード",
|
|
644
673
|
"uknownNodes": "未知のノード",
|
|
645
|
-
"unusedSubflows": "未使用のサブフロー"
|
|
674
|
+
"unusedSubflows": "未使用のサブフロー",
|
|
675
|
+
"hiddenFlows": "非表示のフロー"
|
|
646
676
|
}
|
|
647
677
|
},
|
|
648
678
|
"help": {
|
|
@@ -1108,6 +1138,11 @@
|
|
|
1108
1138
|
"preview": "UIプレビュー",
|
|
1109
1139
|
"defaultValue": "デフォルト値"
|
|
1110
1140
|
},
|
|
1141
|
+
"tourGuide": {
|
|
1142
|
+
"takeATour": "ツアーを開始",
|
|
1143
|
+
"start": "開始",
|
|
1144
|
+
"next": "次へ"
|
|
1145
|
+
},
|
|
1111
1146
|
"languages": {
|
|
1112
1147
|
"de": "ドイツ語",
|
|
1113
1148
|
"en-US": "英語",
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,103 @@
|
|
|
1
|
+
#### 2.1.5: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Runtime
|
|
4
|
+
|
|
5
|
+
- Handle reporting error location when stack is truncated (#3346) @knolleary
|
|
6
|
+
- Initialize passport when only adminAuth.tokens is set (#3343) @knolleary
|
|
7
|
+
- Add log logging (#3342) @knolleary
|
|
8
|
+
|
|
9
|
+
Editor
|
|
10
|
+
|
|
11
|
+
- Fix copy buttons on the debug window (another method) (#3331) @kazuhitoyokoi
|
|
12
|
+
- Add Japanese translations for hidden flow (#3302) @kazuhitoyokoi
|
|
13
|
+
- Improve jsonata legacy mode detection regex (#3345) @knolleary
|
|
14
|
+
- Fix generating flow name with incrementing number (#3347) @knolleary
|
|
15
|
+
- resume focus after import/export dialog close (#3337) @HiroyasuNishiyama
|
|
16
|
+
- Fix findPreviousVisibleTab action (#3321) @knolleary
|
|
17
|
+
- Fix storing hidden tab state when not hidden via action (#3312) @knolleary
|
|
18
|
+
- Avoid adding empty env properties to tabs/groups (#3311) @knolleary
|
|
19
|
+
- Fix hide icon in tour guide (#3301) @kazuhitoyokoi
|
|
20
|
+
|
|
21
|
+
Nodes
|
|
22
|
+
|
|
23
|
+
- File: Update file node examples according to node name change (#3335) @HiroyasuNishiyama
|
|
24
|
+
- Filter (RBE): Fix for filter node narrrowbandEq mode start condition failure (#3339) @dceejay
|
|
25
|
+
- Function: Prevent function scrollbar from obscuring expand button (#3348) @knolleary
|
|
26
|
+
- Function: load extralibs when expanding monaco. fixes #3319 (#3334) @Steve-Mcl
|
|
27
|
+
- Function: Update Function to use correct api to access env vars (#3310) @knolleary
|
|
28
|
+
- HTTP Request: Fix basic auth with empty username or password (#3325) @hardillb
|
|
29
|
+
- Inject: Fix incorrect clearing of blank payload property in Inject node (#3322) @knolleary
|
|
30
|
+
- Link Call: add link call example (#3336) @HiroyasuNishiyama
|
|
31
|
+
- WebSocket: Only setup ws client heartbeat once it is connected (#3344) @knolleary
|
|
32
|
+
- Update Japanese translations in node help (#3332) @kazuhitoyokoi
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
#### 2.1.4: Maintenance Release
|
|
36
|
+
|
|
37
|
+
Runtime
|
|
38
|
+
|
|
39
|
+
- fix env var access using $parent for groups (#3278) @HiroyasuNishiyama
|
|
40
|
+
- Add proper error handling for 404 errors when serving debug files (#3277) @knolleary
|
|
41
|
+
- Add Japanese translations for Node-RED v2.1.0-beta.1 (#3179) @kazuhitoyokoi
|
|
42
|
+
- Include full user object on login audit events (#3269) @knolleary
|
|
43
|
+
- Remove styling from de locale files (#3237) @knolleary
|
|
44
|
+
|
|
45
|
+
Editor
|
|
46
|
+
|
|
47
|
+
- Change tab hide button icon to an eye and add search option (#3282) @knolleary
|
|
48
|
+
- Fix i18n handling of namespaces with spaces in (#3281) @knolleary
|
|
49
|
+
- Trigger change event when autoComplete fills in input (#3280) @knolleary
|
|
50
|
+
- Apply CN i18n fix (#3279) @knolleary
|
|
51
|
+
- fix select menu label of config node to use paletteLabel (#3273) @HiroyasuNishiyama
|
|
52
|
+
- fix removed tab not to cause node conflict (#3275) @HiroyasuNishiyama
|
|
53
|
+
- Group diff fix (#3239) @knolleary
|
|
54
|
+
- Only toggle disabled workspace flag if on activeWorkspace (#3252) @knolleary
|
|
55
|
+
- Do not show status for disabled nodes (#3253) @knolleary
|
|
56
|
+
- Set dimension value for tour guide (#3265) @kazuhitoyokoi
|
|
57
|
+
- Avoid redundant initialisation of TypedInput type (#3263) @knolleary
|
|
58
|
+
- Don't let themes change flow port label color (#3270) @bonanitech
|
|
59
|
+
- Fix treeList gutter calculation to handle floating gutters (#3238) @knolleary
|
|
60
|
+
|
|
61
|
+
Nodes
|
|
62
|
+
|
|
63
|
+
- Debug: Handle RegExp types in Debug sidebar (#3251) @knolleary
|
|
64
|
+
- Delay: fix 2nd output when in rate limit per topic modes (#3261) @dceejay
|
|
65
|
+
- Link: fix to show link target when selected (#3267) @HiroyasuNishiyama
|
|
66
|
+
- Inject: Do not modify inject node props in oneditprepare (#3242) @knolleary
|
|
67
|
+
- HTTP Request: HTTP Basic Auth should always add : between username and password even if empty (#3236) @hardillb
|
|
68
|
+
|
|
69
|
+
#### 2.1.3: Maintenance Release
|
|
70
|
+
|
|
71
|
+
Runtime
|
|
72
|
+
|
|
73
|
+
- Update gen-publish script to update 'next' tag for main releases
|
|
74
|
+
- Add environment variable to enable/disable tours (#3221) @hardillb
|
|
75
|
+
- Fix loading non-default language files leaving runtime in wrong locale (#3225) @knolleary
|
|
76
|
+
|
|
77
|
+
Editor
|
|
78
|
+
|
|
79
|
+
- Refresh editor settings whenever a node is added or enabled (#3227) @knolleary
|
|
80
|
+
- Revert spinner css change that made it shrink in some cases (#3229) @knolleary
|
|
81
|
+
- Fix import notification message when importing config nodes (#3224) @knolleary
|
|
82
|
+
- Handle changing types of TypedInput repeatedly (#3223) @knolleary
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
#### 2.1.2: Maintenance Release
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
Runtime
|
|
89
|
+
|
|
90
|
+
- node-red-pi: Remove bash dependency (#3216) @a16bitsysop
|
|
91
|
+
|
|
92
|
+
Editor
|
|
93
|
+
|
|
94
|
+
- Improved regex for markdown renderer (#3213) @GerwinvBeek
|
|
95
|
+
- Fix TypedInput initialisation (#3220) @knolleary
|
|
96
|
+
|
|
97
|
+
Nodes
|
|
98
|
+
|
|
99
|
+
- MQTT: fix datatype in node config not used. fixes #3215 (#3219) @Steve-Mcl
|
|
100
|
+
|
|
1
101
|
#### 2.1.1: Maintenance Release
|
|
2
102
|
|
|
3
103
|
Editor
|