@node-red/editor-client 4.0.0-beta.4 → 4.0.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/en-US/editor.json +2 -1
- package/locales/ja/editor.json +6 -3
- package/package.json +1 -1
- package/public/red/about +40 -0
- package/public/red/red.js +194 -139
- package/public/red/red.min.js +3 -3
- package/public/red/tours/welcome.js +32 -32
package/locales/ja/editor.json
CHANGED
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"lock": "固定",
|
|
28
28
|
"unlock": "固定を解除",
|
|
29
29
|
"locked": "固定済み",
|
|
30
|
-
"unlocked": "固定なし"
|
|
30
|
+
"unlocked": "固定なし",
|
|
31
|
+
"format": "形式"
|
|
31
32
|
},
|
|
32
33
|
"type": {
|
|
33
34
|
"string": "文字列",
|
|
@@ -281,8 +282,8 @@
|
|
|
281
282
|
"selected": "選択したフロー",
|
|
282
283
|
"current": "現在のタブ",
|
|
283
284
|
"all": "全てのタブ",
|
|
284
|
-
"compact": "
|
|
285
|
-
"formatted": "
|
|
285
|
+
"compact": "インデントなし",
|
|
286
|
+
"formatted": "インデント付き",
|
|
286
287
|
"copy": "書き出し",
|
|
287
288
|
"export": "ライブラリに書き出し",
|
|
288
289
|
"exportAs": "書き出し先",
|
|
@@ -923,6 +924,8 @@
|
|
|
923
924
|
}
|
|
924
925
|
},
|
|
925
926
|
"typedInput": {
|
|
927
|
+
"selected": "__count__個を選択",
|
|
928
|
+
"selected_plural": "__count__個を選択",
|
|
926
929
|
"type": {
|
|
927
930
|
"str": "文字列",
|
|
928
931
|
"num": "数値",
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,43 @@
|
|
|
1
|
+
#### 4.0.1: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Ensure subflow instance credential property values are extracted (#4802) @knolleary
|
|
6
|
+
- Use `_ADD_` value for both `add new...` and `none` options (#4800) @GogoVega
|
|
7
|
+
- Fix the config node select value assignment (#4788) @GogoVega
|
|
8
|
+
- Add tooltip for number of subflow instance on info tab (#4786) @kazuhitoyokoi
|
|
9
|
+
- Add Japanese translations for v4.0.0 (#4785) @kazuhitoyokoi
|
|
10
|
+
|
|
11
|
+
Runtime
|
|
12
|
+
|
|
13
|
+
- Ensure group nodes are properly exported in /flow api (#4803) @knolleary
|
|
14
|
+
|
|
15
|
+
Nodes
|
|
16
|
+
|
|
17
|
+
- Joins: make using msg.parts optional in join node (#4796) @dceejay
|
|
18
|
+
- HTTP Request: UI proxy should setup agents for both http_proxy and https_proxy (#4794) @Steve-Mcl
|
|
19
|
+
- HTTP Request: Remove default user agent (#4791) @Steve-Mcl
|
|
20
|
+
|
|
21
|
+
#### 4.0.0: Milestone Release
|
|
22
|
+
|
|
23
|
+
This marks the next major release of Node-RED. The following changes represent
|
|
24
|
+
those added since the last beta. Check the beta release details below for the complete
|
|
25
|
+
list.
|
|
26
|
+
|
|
27
|
+
Breaking Changes
|
|
28
|
+
|
|
29
|
+
- Node-RED now requires Node 18.x or later. At the time of release, we recommend
|
|
30
|
+
using Node 20.
|
|
31
|
+
|
|
32
|
+
Editor
|
|
33
|
+
|
|
34
|
+
- Add `httpStaticCors` (#4761) @knolleary
|
|
35
|
+
- Update dependencies (#4763) @knolleary
|
|
36
|
+
- Sync master to dev (#4756) @knolleary
|
|
37
|
+
- Add tooltip and message validation to `typedInput` (#4747) @GogoVega
|
|
38
|
+
- Replace bcrypt with @node-rs/bcrypt (#4744) @knolleary
|
|
39
|
+
- Export Nodes dialog refinement (#4746) @Steve-Mcl
|
|
40
|
+
|
|
1
41
|
#### 4.0.0-beta.4: Beta Release
|
|
2
42
|
|
|
3
43
|
Editor
|