node-red 5.0.0-beta.3 → 5.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/CHANGELOG.md +37 -0
- package/package.json +5 -5
- package/settings.js +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
#### 5.0.0-beta.4: Beta Release
|
|
2
|
+
|
|
3
|
+
- Various UX tweaks and tidy ups
|
|
4
|
+
- Renable click to close for edit dialog (#5567) @knolleary
|
|
5
|
+
- Improve the `user-select` CSS code usage (#5565) @bonanitech
|
|
6
|
+
- Tidy up modal shade appearance (#5566) @knolleary
|
|
7
|
+
- Scale highlight based on workspace zoom (#5563) @knolleary
|
|
8
|
+
- Ensure disabled tab has fully dashed border (#5564) @knolleary
|
|
9
|
+
- Add error handling for markdown parser (#5560) @knolleary
|
|
10
|
+
- Update reveal node styling (#5562) @knolleary
|
|
11
|
+
- Minor change to treeList select/expand behaviour (#5556) @knolleary
|
|
12
|
+
- Handle shift-scroll more robustly (#5559) @knolleary
|
|
13
|
+
- Remove obsolete vendor-prefixed CSS properties (#5554) @bonanitech
|
|
14
|
+
- Include sidebar width in position calculation for reveal function (#5555) @knolleary
|
|
15
|
+
- [5377] UX: Ensure menus handle vertical overflow (#5448) @n-lark
|
|
16
|
+
- Account for sidebar width when calculating zoom-to-fit scale (#5551) @knolleary
|
|
17
|
+
- Fix fade effect for tab labels that overflow (#5552) @bonanitech
|
|
18
|
+
- Better touch handling for submenus (#5550) @knolleary
|
|
19
|
+
- Improve workspace footer handling of smaller screen widths (#5549) @knolleary
|
|
20
|
+
- [5540] UX: handle node-red-dashboard css poisoning (#5548) @n-lark
|
|
21
|
+
- [5522] UX: vertical scrollbar should not overlap subflow toolbar (#5537) @n-lark
|
|
22
|
+
- [5523] UX: Cursor events in workspace get interrupted when over status/scroll bars (#5539) @n-lark
|
|
23
|
+
- [5521] UX: Selecting non-flow object in Explorer causes Info to go blank (#5538) @n-lark
|
|
24
|
+
- [5525] UX: Misaligned first tab (#5536) @n-lark
|
|
25
|
+
- Sync 4.1.7 to dev branch (#5531) @knolleary
|
|
26
|
+
|
|
1
27
|
#### 5.0.0-beta.3: Beta Release
|
|
2
28
|
|
|
3
29
|
- UX updates for beta 3 (#5498) @knolleary
|
|
@@ -39,6 +65,17 @@ Nodes
|
|
|
39
65
|
|
|
40
66
|
- Add ability to use pfx or p12 file for TLS connection settings option (#4907) @dceejay
|
|
41
67
|
|
|
68
|
+
#### 4.1.7: Maintenance Release
|
|
69
|
+
|
|
70
|
+
- Do not block touch events on ports (#5527) @knolleary
|
|
71
|
+
- Allow palette.categories to be set via theme plugin (#5526) @knolleary
|
|
72
|
+
- Bump i18next version (#5519) @knolleary
|
|
73
|
+
- Suppress i18n notice in frontend (#5528) @knolleary
|
|
74
|
+
- Set showSupportNotice option on i18n (#5520) @knolleary
|
|
75
|
+
- Do not cache subflow colors as each subflow can have its own (#5518) @knolleary
|
|
76
|
+
- Update tar/multer deps (#5515) @knolleary
|
|
77
|
+
- Remove IE7 CSS hacks (#5511) @bonanitech
|
|
78
|
+
|
|
42
79
|
#### 4.1.6: Maintenance Release
|
|
43
80
|
|
|
44
81
|
- Allow palette.theme to be set via theme plugin and include icons (#5500) @knolleary
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.4",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "https://nodered.org",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"flow"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@node-red/editor-api": "5.0.0-beta.
|
|
35
|
-
"@node-red/runtime": "5.0.0-beta.
|
|
36
|
-
"@node-red/util": "5.0.0-beta.
|
|
37
|
-
"@node-red/nodes": "5.0.0-beta.
|
|
34
|
+
"@node-red/editor-api": "5.0.0-beta.4",
|
|
35
|
+
"@node-red/runtime": "5.0.0-beta.4",
|
|
36
|
+
"@node-red/util": "5.0.0-beta.4",
|
|
37
|
+
"@node-red/nodes": "5.0.0-beta.4",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "3.0.3",
|
|
40
40
|
"cors": "2.8.5",
|
package/settings.js
CHANGED
|
@@ -450,8 +450,12 @@ module.exports = {
|
|
|
450
450
|
},
|
|
451
451
|
|
|
452
452
|
codeEditor: {
|
|
453
|
-
/**
|
|
454
|
-
*
|
|
453
|
+
/**
|
|
454
|
+
* Code Editor Selection can be one of the following:
|
|
455
|
+
* - monaco - the Monaco Editor (the default)
|
|
456
|
+
* - ace - the Ace Editor
|
|
457
|
+
* - basic - a simple textarea based editor
|
|
458
|
+
* @type {'monaco'|'ace'|'basic'}
|
|
455
459
|
*/
|
|
456
460
|
lib: "monaco",
|
|
457
461
|
options: {
|
|
@@ -463,7 +467,7 @@ module.exports = {
|
|
|
463
467
|
*/
|
|
464
468
|
// theme: "vs",
|
|
465
469
|
/** other overrides can be set e.g. fontSize, fontFamily, fontLigatures etc.
|
|
466
|
-
* for the full list, see https://microsoft.github.io/monaco-editor/docs.html#interfaces/editor.IStandaloneEditorConstructionOptions.html
|
|
470
|
+
* for the full list, see https://microsoft.github.io/monaco-editor/docs.html#interfaces/editor_editor_api.editor.IStandaloneEditorConstructionOptions.html
|
|
467
471
|
*/
|
|
468
472
|
//fontSize: 14,
|
|
469
473
|
//fontFamily: "Cascadia Code, Fira Code, Consolas, 'Courier New', monospace",
|