@node-red/editor-client 3.1.0-beta.4 → 3.1.1
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/de/jsonata.json +1 -1
- package/locales/en-US/editor.json +2 -3
- package/locales/en-US/jsonata.json +15 -11
- package/locales/fr/editor.json +83 -83
- package/locales/fr/infotips.json +0 -0
- package/locales/fr/jsonata.json +9 -5
- package/locales/ja/editor.json +1 -3
- package/locales/ja/jsonata.json +11 -7
- package/locales/ko/editor.json +1105 -1105
- package/locales/ko/infotips.json +23 -23
- package/locales/ko/jsonata.json +222 -222
- package/locales/pt-BR/editor.json +0 -3
- package/locales/pt-BR/infotips.json +0 -0
- package/locales/pt-BR/jsonata.json +66 -66
- package/locales/ru/jsonata.json +43 -43
- package/locales/zh-CN/editor.json +0 -3
- package/locales/zh-CN/jsonata.json +8 -8
- package/locales/zh-TW/jsonata.json +4 -4
- package/package.json +1 -1
- package/public/red/about +92 -4
- package/public/red/red.js +237 -154
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +1 -1
- package/public/red/tours/welcome.js +7 -19
- package/public/vendor/mermaid/mermaid.min.js +793 -731
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"$sort": {
|
|
139
139
|
"args": "array [, function]",
|
|
140
|
-
"desc": "輸出排序後的陣列`array`。\n\n如果使用了比較函數`function`,則下述兩個參數需要被指定。\n\n`function(left, right)`\n\n
|
|
140
|
+
"desc": "輸出排序後的陣列`array`。\n\n如果使用了比較函數`function`,則下述兩個參數需要被指定。\n\n`function(left, right)`\n\n該比較函數是為了比較`left`和`right`兩個值而被排序演算法調用的。如果使用者希望left的值被置於`right`的值之後,那麼該函數必須輸出布林值`true`來表示位置交換。而在不需要位置交換時函數必須輸出`false`。"
|
|
141
141
|
},
|
|
142
142
|
"$reverse": {
|
|
143
143
|
"args": "array",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
},
|
|
238
238
|
"$assert": {
|
|
239
239
|
"args": "arg, str",
|
|
240
|
-
"desc": "如果`arg`為真,則該函數返回。
|
|
240
|
+
"desc": "如果`arg`為真,則該函數返回。 如果`arg`為假,則拋出帶有`str`的異常作為異常消息。"
|
|
241
241
|
},
|
|
242
242
|
"$single": {
|
|
243
243
|
"args": "array, function",
|
|
@@ -253,11 +253,11 @@
|
|
|
253
253
|
},
|
|
254
254
|
"$decodeUrlComponent": {
|
|
255
255
|
"args": "str",
|
|
256
|
-
"desc": "解碼以前由encodeUrlComponent創建的統一資源定位器(URL
|
|
256
|
+
"desc": "解碼以前由encodeUrlComponent創建的統一資源定位器(URL)組件。\n\n示例: `$decodeUrlComponent(\"%3Fx%3Dtest\")` => `\"?x=test\"`"
|
|
257
257
|
},
|
|
258
258
|
"$decodeUrl": {
|
|
259
259
|
"args": "str",
|
|
260
|
-
"desc": "解碼先前由encodeUrl創建的統一資源定位符(URL
|
|
260
|
+
"desc": "解碼先前由encodeUrl創建的統一資源定位符(URL)。\n\n示例: `$decodeUrl(\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\")` => `\"https://mozilla.org/?x=шеллы\"`"
|
|
261
261
|
},
|
|
262
262
|
"$distinct": {
|
|
263
263
|
"args": "array",
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,4 +1,92 @@
|
|
|
1
|
-
#### 3.1.
|
|
1
|
+
#### 3.1.1: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Fix debug filter (#4461) @knolleary
|
|
6
|
+
- Fix various issues with debug pop-out window (#4459) @knolleary
|
|
7
|
+
- Ensure subflow instances keep track of their groups (#4457) @knolleary
|
|
8
|
+
- Fix `validateNodeProperty` without validator provided (#4455) @GogoVega
|
|
9
|
+
- Debounce node-removed notifications (#4453) @knolleary
|
|
10
|
+
- Don't try to load the parents of the first commit (#4448) @bonanitech
|
|
11
|
+
- Allow a theme to specifiy which theme mermaid should use (#4441) @knolleary
|
|
12
|
+
- Update browser title with flow name if set (#4427) @knolleary
|
|
13
|
+
- Ensure typeSearch handles undefined node definitions (#4423) @knolleary
|
|
14
|
+
- Ensure group w/h are imported if present (#4426) @knolleary
|
|
15
|
+
- Hide node status background when there is no status to show (#4425) @knolleary
|
|
16
|
+
- Add a close button to the restart-required notification (#4407) @knolleary
|
|
17
|
+
- Extend typedInput "num" type validity check to NaN, binary, octal & hex (#4371) @ralphwetzel
|
|
18
|
+
- Fix unintended new line in node name (#4399) @kazuhitoyokoi
|
|
19
|
+
- Ctrl-Enter does not close tray (Monaco) #4377 (#4382) @hazymat
|
|
20
|
+
- fix buffer viewer to handle 0b style binary (#4393) @dceejay
|
|
21
|
+
- Rework mermaid integration to support off-DOM rendering (#4364) @knolleary
|
|
22
|
+
- Add missing nls labels to context menu (#4365) @knolleary
|
|
23
|
+
|
|
24
|
+
Runtime
|
|
25
|
+
|
|
26
|
+
- Bump the github-actions group with 2 updates (#4404) @app/dependabot
|
|
27
|
+
- Handle unknown node reference inside subflow module (#4460) @knolleary
|
|
28
|
+
- Add modules.install audit event when external module installed (#4452) @knolleary
|
|
29
|
+
- Allow import of modules with subpath in specifier (#4451) @knolleary
|
|
30
|
+
- Update node-red-admin version (#4438) @knolleary
|
|
31
|
+
- Handle false-like env vars properly (#4411) @knolleary
|
|
32
|
+
- Only save settings once during node load process (#4409) @knolleary
|
|
33
|
+
- Ensure global-config nodes lookup cred values properly (#4405) @knolleary
|
|
34
|
+
- Handle credential env var evaluation when no value set (#4362) @knolleary
|
|
35
|
+
- Don't commit package-lock.json (#4354) @bonanitech
|
|
36
|
+
- Fix env evaluation when one env references another in the same object (#4361) @knolleary
|
|
37
|
+
- Add dependabot for Github Actions (#4312) @Rotzbua
|
|
38
|
+
- Update outdated Github Actions (#4311) @Rotzbua
|
|
39
|
+
- github: Request `npm run test` in PR template (#4348) @ZJvandeWeg
|
|
40
|
+
- Add French translation of v3.1.0-beta.4 changes + slight improvements (#4329) @GogoVega
|
|
41
|
+
- Handle nodes with multiple input handlers properly (#4332) @knolleary
|
|
42
|
+
- Soften the language around unrequited PRs (#4351) @knolleary
|
|
43
|
+
|
|
44
|
+
Nodes
|
|
45
|
+
|
|
46
|
+
- CSV: make CSV export way faster by not re-allocating and handling huge string (#4349) @Fadoli
|
|
47
|
+
- Delay: Fix regression in delay node to not pass on msg.reset (#4350) @dceejay
|
|
48
|
+
- Link Call: Handle undefined linkType value for existing link-call nodes (#4331) @knolleary
|
|
49
|
+
- MQTT: Guard against node.broker being undefined (#4454) @knolleary
|
|
50
|
+
- MQTT: check topic length > 0 before publish (#4416) @dceejay
|
|
51
|
+
- Switch/Change: Improve validation of switch/change node rules (#4368) @knolleary
|
|
52
|
+
- Template: Fix height of description editor in template node (#4346) @kazuhitoyokoi
|
|
53
|
+
- Various: Add validators to any fields using msg-typed Input (#4440) @knolleary
|
|
54
|
+
|
|
55
|
+
#### 3.1.0: Milestone Release
|
|
56
|
+
|
|
57
|
+
Editor
|
|
58
|
+
|
|
59
|
+
- Default filter to All Catalogues and show nodes for small lists (#4318) @knolleary
|
|
60
|
+
- Better distinguish between ctrl and meta keys on mac (#4310) @knolleary
|
|
61
|
+
- Ensure junction appears when filtering quick-add list (#4297) @knolleary
|
|
62
|
+
- Update message catalogs for JSONata Expression editor (#4287) @kazuhitoyokoi
|
|
63
|
+
- Add tooltip to relevance sort button in user settings UI (#4288) @kazuhitoyokoi
|
|
64
|
+
- Capture workspace dirty state when quick-adding junction (#4283) @knolleary
|
|
65
|
+
- Add docs for $clone function (#4284) @knolleary
|
|
66
|
+
|
|
67
|
+
Runtime
|
|
68
|
+
|
|
69
|
+
- Dependency updates (#4317) @knolleary
|
|
70
|
+
- Ensure storage/util.writeFile handles concurrent write attempts (#4316) @knolleary
|
|
71
|
+
- Migrate http -> https for nodered.org (#4313) @Rotzbua
|
|
72
|
+
- Add Node 20 to GH Action test matrix (#4305) @Rotzbua
|
|
73
|
+
- Handle group-scoped nodes inside subflow (#4301) @knolleary
|
|
74
|
+
- Handle non-url-safe chars in context api (#4298) @knolleary
|
|
75
|
+
- Fix git pull operation in project feature (#4290) @kazuhitoyokoi
|
|
76
|
+
- Change linefeed codes in Korean message catalogs (#4286) @kazuhitoyokoi
|
|
77
|
+
- Fix file permissions of message catalogs (#4285) @kazuhitoyokoi
|
|
78
|
+
- Update tour (#4278) @knolleary
|
|
79
|
+
|
|
80
|
+
Nodes
|
|
81
|
+
|
|
82
|
+
- File: Fix handling in file nodes when number is specified as file name (#4267) @kazuhitoyokoi
|
|
83
|
+
- Function: Adding function timeout to settings file (#4265) (#4309) @knolleary
|
|
84
|
+
- Function: Fix function setup tab layout (#4299) @knolleary
|
|
85
|
+
- HTTP Request: Handle 204 in httprequest JSON (#4262) @sammachin
|
|
86
|
+
- JSON: Fix test cases of JSON node (#4275) @kazuhitoyokoi
|
|
87
|
+
- MQTT: Remove unnecessary check for clientid if autoUnsub set (#4302) @knolleary
|
|
88
|
+
|
|
89
|
+
##### 3.1.0-beta.4: Beta Release
|
|
2
90
|
|
|
3
91
|
Editor
|
|
4
92
|
|
|
@@ -28,7 +116,7 @@
|
|
|
28
116
|
- Fix delay node flush issue (#4203) @dceejay
|
|
29
117
|
- Update status and catch node labels in group mode (#4207) @Steve-Mcl
|
|
30
118
|
|
|
31
|
-
|
|
119
|
+
##### 3.1.0-beta.3: Beta Release
|
|
32
120
|
|
|
33
121
|
Editor
|
|
34
122
|
|
|
@@ -63,7 +151,7 @@ Nodes
|
|
|
63
151
|
- MQTT: Option to disable MQTT topic unsubscribe on disconnect (#4078) @flying7eleven
|
|
64
152
|
|
|
65
153
|
|
|
66
|
-
|
|
154
|
+
##### 3.1.0-beta.2: Beta Release
|
|
67
155
|
|
|
68
156
|
Editor
|
|
69
157
|
|
|
@@ -113,7 +201,7 @@ Nodes
|
|
|
113
201
|
- File Out: Fix extra newline append for multipart file write (#3915) @dceejay
|
|
114
202
|
- Add validators for complete and link call nodes (#4056) @kazuhitoyokoi
|
|
115
203
|
|
|
116
|
-
|
|
204
|
+
##### 3.1.0-beta.1: Beta Release
|
|
117
205
|
|
|
118
206
|
Editor
|
|
119
207
|
|