@node-red/editor-client 3.0.0-beta.1 → 3.0.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/de/editor.json +130 -53
- package/locales/en-US/editor.json +75 -62
- package/locales/en-US/infotips.json +19 -19
- package/locales/en-US/jsonata.json +40 -40
- package/locales/ja/editor.json +39 -23
- package/locales/ja/infotips.json +1 -1
- package/locales/zh-CN/editor.json +7 -7
- package/package.json +1 -1
- package/public/red/about +109 -0
- package/public/red/images/start.svg +4 -0
- package/public/red/images/stop.svg +4 -0
- package/public/red/red.js +1218 -469
- package/public/red/red.min.js +2 -2
- package/public/red/style.min.css +2 -2
- package/public/red/tours/2.1/welcome.js +229 -0
- package/public/red/tours/2.2/images/delete-repair.gif +0 -0
- package/public/red/tours/2.2/images/detach-repair.gif +0 -0
- package/public/red/tours/2.2/images/slice.gif +0 -0
- package/public/red/tours/2.2/images/subflow-labels.png +0 -0
- package/public/red/tours/2.2/welcome.js +156 -0
- package/public/red/tours/images/context-menu.png +0 -0
- package/public/red/tours/welcome.js +54 -21
- package/public/vendor/vendor.js +4 -4
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,112 @@
|
|
|
1
|
+
#### 3.0.0-beta.4: Beta Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Fix clicking on node in workspace to hide context menu (#3696) @knolleary
|
|
6
|
+
- Fix credential type input item of subflow template (#3703) @HiroyasuNishiyama
|
|
7
|
+
- Add option flag `reimport` to `importNodes` (#3718) @Steve-Mcl
|
|
8
|
+
- Update german translation (#3691) @Dennis14e
|
|
9
|
+
- List welcome tours in help sidebar (#3717) @knolleary
|
|
10
|
+
- Ensure 'hidden flow' count doesn't include subflows (#3715) @knolleary
|
|
11
|
+
- Fix Chinese translate (#3706) @hotlong
|
|
12
|
+
- Fix use default button for node icon (#3714) @kazuhitoyokoi
|
|
13
|
+
- Fix select boxes vertical alignment (#3698) @bonanitech
|
|
14
|
+
- Ensure workspace clean after undoing dropped node (#3708) @Steve-Mcl
|
|
15
|
+
- Use solid colour as config node icon background to hide text overflow (#3710) @Steve-Mcl
|
|
16
|
+
- Increase quick-add height to reveal 2 most recent entries (#3711) @Steve-Mcl
|
|
17
|
+
- Set default editor to monaco in absence of user preference (#3702) @knolleary
|
|
18
|
+
- Add Japanese translations for v3.0-beta.3 (#3688) @kazuhitoyokoi
|
|
19
|
+
- Fix handling of spacebar inside JSON visual editor (#3687) @knolleary
|
|
20
|
+
- Fix menu padding to handle both icons and submenus (#3686) @knolleary
|
|
21
|
+
- Include scroll offset when positioning quick-add dialog (#3685) @knolleary
|
|
22
|
+
|
|
23
|
+
Runtime
|
|
24
|
+
|
|
25
|
+
- Import default export if node is a transpiled es module (#3669) @dschmidt
|
|
26
|
+
- Leave Monaco theme commented out by default (#3704) @bonanitech
|
|
27
|
+
|
|
28
|
+
Nodes
|
|
29
|
+
|
|
30
|
+
- CSV: Fix CSV node to handle when outputting text fields (#3716) @dceejay
|
|
31
|
+
- Delay: Fix delay rate limit last timing when empty (#3709) @dceejay
|
|
32
|
+
- Link: Ensure link-call cache is updated when link-in is modified (#3695) @Steve-Mcl
|
|
33
|
+
- Join: Join node in reduce mode doesn't keep existing msg properties (#3670) @dceejay
|
|
34
|
+
- Template: Add support for evalulating {{env.<var>}} within a template node (#3690) @cow0w
|
|
35
|
+
|
|
36
|
+
#### 3.0.0-beta.3: Beta Release
|
|
37
|
+
|
|
38
|
+
Editor
|
|
39
|
+
|
|
40
|
+
- Add Right-Click content menu (#3678) @knolleary
|
|
41
|
+
- Fix disable junction (#3671) @HiroyasuNishiyama
|
|
42
|
+
- Add Japanese translations for v2.2.3 (#3672) @kazuhitoyokoi
|
|
43
|
+
- Reset mouse state when switching tabs (#3643) @knolleary
|
|
44
|
+
- Fix uncorrect fix of junction to subflow conversion (#3666) @HiroyasuNishiyama
|
|
45
|
+
- Fix undoing junction to subflow (#3653) @HiroyasuNishiyama
|
|
46
|
+
- Fix conversion of junction to subflow (#3652) @HiroyasuNishiyama
|
|
47
|
+
- Fix to include junction to exported nodes (#3650) @HiroyasuNishiyama
|
|
48
|
+
- Fix z-index value for shade to cover nodes in palette (#3649) @kazuhitoyokoi
|
|
49
|
+
- Fix to extend escaped subflow category characters (#3647) @HiroyasuNishiyama
|
|
50
|
+
- Fix to sanitize tab name (#3646) @HiroyasuNishiyama
|
|
51
|
+
- Fix selector placement (#3644) @bonanitech
|
|
52
|
+
- Add Japanese translations for v3.0-beta.2 (#3622) @kazuhitoyokoi
|
|
53
|
+
- Fix new folder menu of save to library dialog (#3633) @HiroyasuNishiyama
|
|
54
|
+
- Fix layer of palette node (#3638) @HiroyasuNishiyama
|
|
55
|
+
- Fix to place a node dragged from palette within the workspace (#3637) @HiroyasuNishiyama
|
|
56
|
+
- Fix typo in CSS (#3628) @bonanitech
|
|
57
|
+
- Use the correct variable for the gutter text color (#3615) @bonanitech
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
Runtime
|
|
61
|
+
|
|
62
|
+
- Support loading node modules from `nodesdir` (#3676) @Steve-Mcl
|
|
63
|
+
- fix buffer parse error message of evaluateNodeProperty (#3624) @HiroyasuNishiyama
|
|
64
|
+
|
|
65
|
+
Nodes
|
|
66
|
+
|
|
67
|
+
- File: Further simplify file node filename entry UX (v3) (#3677) @Steve-Mcl
|
|
68
|
+
- Function: Fix initial cursor position of init/finalize tab of function node (#3674) @HiroyasuNishiyama
|
|
69
|
+
- Function: Fix ESM module loading in Function node (#3645) @knolleary
|
|
70
|
+
- Inject: Fix JSONata evaluation of inject button (#3632) @HiroyasuNishiyama
|
|
71
|
+
- TCP: Dont delete TCP socket twice (#3630) @Steve-Mcl
|
|
72
|
+
- MQTT Node: define noproxy variable (#3626) @Steve-Mcl
|
|
73
|
+
- Debug: i18n debug sidebar node label (#3623) @HiroyasuNishiyama
|
|
74
|
+
|
|
75
|
+
#### 3.0.0-beta.2: Beta Release
|
|
76
|
+
|
|
77
|
+
**Migration from 2.x**
|
|
78
|
+
|
|
79
|
+
- The 'slice wires' action has changed from Ctrl-RightMouseButton to Alt-LeftMouseButton
|
|
80
|
+
|
|
81
|
+
Editor
|
|
82
|
+
|
|
83
|
+
- Rework Junctions to be more node like in their event handling (#3607) @knolleary
|
|
84
|
+
- Change slicing / slice-junction operations over to mouse button 0 (Left Mouse Button) (#3609) @Steve-Mcl
|
|
85
|
+
- Do not slice-junction link node wires (#3608) @knolleary
|
|
86
|
+
- Handle many-to-one slicing of wires (#3604) @knolleary
|
|
87
|
+
- Ensure ACE worker options are set (#3611) @Steve-Mcl
|
|
88
|
+
- Remove duplicate history add of ungroup event (#3605) @knolleary
|
|
89
|
+
- use text width instead of number of characters for deciding select fi… (#3603) @HiroyasuNishiyama
|
|
90
|
+
- Update Japanese info of link call node reflecting update of English info (#3600) @HiroyasuNishiyama
|
|
91
|
+
- Fix typedInput label not visible on themes (#3580) @bonanitech
|
|
92
|
+
- Fix project switching when junctions are present (#3595) @Steve-Mcl
|
|
93
|
+
- Fix junction: when wiring from a regular nodes INPUT, backwards to a junction (#3591) @Steve-Mcl
|
|
94
|
+
- Fix error initialising flow tab editor (#3585) @Steve-Mcl
|
|
95
|
+
- Add Japanese translations for v3.0-beta.1 (#3576) @kazuhitoyokoi
|
|
96
|
+
- Fix image paths where `red/image/typedInput/XXXX.png` should be `red/image/typedInput/XXXX.svg` (#3592) @kazuhitoyokoi
|
|
97
|
+
- Fix browser console error Uncaught TypeError when searching certain terms (#3584) @Steve-Mcl
|
|
98
|
+
|
|
99
|
+
Runtime
|
|
100
|
+
|
|
101
|
+
- fix error on system-info action (#3589) @HiroyasuNishiyama
|
|
102
|
+
|
|
103
|
+
Nodes
|
|
104
|
+
|
|
105
|
+
- I18n switch rule selector (#3602) @HiroyasuNishiyama
|
|
106
|
+
- Handle removal of event handlers to allow mqtt client.end() to work (#3594) @PhilDay-CT
|
|
107
|
+
- update link-call node info according to current behavior (#3597) @HiroyasuNishiyama
|
|
108
|
+
|
|
109
|
+
|
|
1
110
|
#### 3.0.0-beta.1: Beta Release
|
|
2
111
|
|
|
3
112
|
**Migration from 2.x**
|