Nick O'Leary
a77f8cc3e9
Clear context cache when closing edit dialog
2023-12-15 15:09:15 +00:00
Gerrit Riessen
0b0f1f8701
Update index.mst
...
Update two additional path specifications
2023-12-15 11:32:26 +01:00
Gerrit Riessen
e1f2e0656b
Client Events: fix off-in-on pattern emulating once
...
This fixes an issue when RED.events.off(..) is called in a RED.events.on(..) callback:
```
let cb = () => {
RED.events.off("event-name", cb)
....
}
RED.events.on("event-name", cb)
```
This pattern emulates a once(..), i.e., execute a callback once-only for an event.
Discussed in [Forum](https://discourse.nodered.org/t/event-offing-an-on-event-to-perform-only-once/83726 )
2023-12-15 10:54:11 +01:00
Nick O'Leary
ea4c0cdbee
Fix error when switching context types
2023-12-14 17:14:56 +00:00
Gerrit Riessen
b5e955bd5e
Update index.mst
...
Avoid escaping slashes (`/`) in asset paths.
Content is currently generated as:
```
<title>Node-RED</title>
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="mask-icon" href="red/images/node-red-icon-black.svg" color="#8f0000">
<link rel="stylesheet" href="vendor/jquery/css/base/jquery-ui.min.css?v=">
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css?v=">
<link rel="stylesheet" href="red/style.min.css?v=">
<link rel="stylesheet" href="vendor/monaco/style.css?v=">
</head>
<body spellcheck="false">
<div id="red-ui-editor"></div>
<script src="vendor/vendor.js?v="></script>
<script src="vendor/monaco/monaco-bootstrap.js?v="></script>
<script src="red/red.min.js?v="></script>
<script src="red/main.min.js?v="></script>
```
It still works of course, so feel free to ignore this change.
2023-12-13 17:29:39 +01:00
Nick O'Leary
7197153fd5
Support bracket-notation in auto complete when needed
2023-12-11 21:18:44 +00:00
Nick O'Leary
b9c1dedab3
Add auto-complete to flow/global typedInput types
2023-12-11 17:55:02 +00:00
Nick O'Leary
918943816f
Merge branch 'master' into dev
2023-12-08 10:27:04 +00:00
GogoVega
b4b5d296d9
French translation of v3.1.3 changes
2023-12-08 09:47:00 +01:00
Kazuhito Yokoi
d287b8867b
Add Japanese translations for v3.1.3
2023-12-08 15:28:49 +09:00
Nick O'Leary
c584d51432
Bump for 3.1.3 release
2023-12-07 18:27:33 +00:00
Nick O'Leary
2f1565fbc9
Add missing en-us messages
2023-12-07 18:19:37 +00:00
Nick O'Leary
37d1539fda
Bump for 3.1.2 release
2023-12-07 14:12:53 +00:00
Nick O'Leary
1e518396d6
Merge pull request #4470 from wangyiyi2056/Add-action-list-Chinese-translation
...
Added action list Chinese (Simplified and Traditional) translation + v3.1.1 changes
2023-12-07 13:59:54 +00:00
Nick O'Leary
617b98ed49
Merge pull request #4466 from GogoVega/add-action-list-translation
...
Add French translation of `action-list` + v3.1.1 changes
2023-12-07 13:56:25 +00:00
wangyiyi2056
17e4bdbff1
Merge branch 'master' into Add-action-list-Chinese-translation
2023-12-07 09:19:46 +08:00
Nick O'Leary
eebab4a921
Relax some node validators to allow undefined value
2023-12-06 10:30:49 +00:00
wangyiyi2056
a0562bef81
Added action list Chinese translation + v3.1.1
2023-12-05 22:50:03 +08:00
Nick O'Leary
33cf34f7c7
Merge branch 'master' into dev
2023-12-04 15:58:45 +00:00
Nick O'Leary
94abaaff1e
Use move cursor when hovering on group border
2023-12-04 11:49:29 +00:00
GogoVega
03732869e4
Fix that little guy hiding
2023-12-02 18:53:06 +01:00
GogoVega
41868e2652
Apply v3.1.1 changes
2023-12-02 16:16:03 +01:00
GogoVega
81bfba3cea
Add actions list translation
2023-12-02 16:10:52 +01:00
Nick O'Leary
4bb2157cab
Bump for 3.1.1 release
2023-11-30 15:49:57 +00:00
Nick O'Leary
3e2d20e536
Merge pull request #4455 from GogoVega/4429-fix-validateNodeProperty
...
Fix `validateNodeProperty` without validator provided
2023-11-29 16:19:41 +00:00
Nick O'Leary
ee7ee083b0
Merge pull request #4440 from node-red/4429-add-typed-validators
...
Add validators to any fields using msg-typed Input
2023-11-29 16:18:53 +00:00
Nick O'Leary
21f807aa66
Merge pull request #4453 from node-red/4413-debounce-uninstall-notifications
...
Debounce node-removed notifications
2023-11-29 16:11:18 +00:00
GogoVega
a2d7772958
Fix validateNodeProperty if no validator provided
2023-11-28 20:13:25 +01:00
Nick O'Leary
171c146ec5
Debounce node-removed notifications
...
Fixes #4413
2023-11-27 17:14:15 +00:00
Mauricio Bonani
2964a4da5e
Don't try to load the parents of the first commit
2023-11-24 16:22:29 -05:00
Ralph Wetzel
febc769df5
use of camelCasing: node_selector => nodeSelector
2023-11-21 20:48:52 +01:00
Nick O'Leary
e945deeab6
Allow mermaid theme to be set via editorTheme and custom themes
...
Fixes #4274
2023-11-20 17:47:39 +00:00
Nick O'Leary
722fe02933
Add validators to any fields using msg-typed Input
...
Fixes #4429
2023-11-20 17:17:52 +00:00
Ralph Wetzel
ea483218ea
Click on id in debug panel highlights node or flow
2023-11-18 21:03:13 +01:00
Nick O'Leary
74d431ea36
Merge pull request #4427 from node-red/4394-update-page-title-on-flow-nav
...
Update browser title with flow name if set
2023-11-07 17:40:36 +00:00
Nick O'Leary
6488111f79
Merge pull request #4423 from node-red/4415-handle-excluded-core-nodes
...
Ensure typeSearch handles undefined node definitions
2023-11-07 17:39:46 +00:00
Nick O'Leary
923339c1d8
Merge pull request #4426 from node-red/4044-group-bb-import
...
Ensure group w/h are imported if present
2023-11-07 17:39:30 +00:00
Nick O'Leary
c52985d245
Update browser title with flow name if set
...
Fixes #4394
2023-11-07 17:24:04 +00:00
Nick O'Leary
88e6c71aa0
Ensure group w/h are imported if present
...
Fixes #4044
2023-11-07 17:09:22 +00:00
Nick O'Leary
4d08e297c4
Hide node status background when there is no status to show
...
Fixes #4418
2023-11-07 16:34:36 +00:00
Nick O'Leary
ad2b30691f
Ensure typeSearch handles undefined node definitions
...
Fixes #4415
2023-11-03 11:28:04 +01:00
Nick O'Leary
e5307f6604
Add a close button to the restart-required notification
...
Fixes #4392
2023-11-01 14:39:51 +01:00
Nick O'Leary
01821ead0f
Merge pull request #4371 from ralphwetzel/master
...
Extend typedInput "num" type validity check to NaN, binary, octal & hex
2023-11-01 14:20:31 +01:00
Nick O'Leary
245751bb23
Merge pull request #4382 from hazymat/master
...
Ctrl-Enter does not close tray (Monaco) #4377
2023-11-01 14:15:08 +01:00
Dave Conway-Jones
1a52c0adfc
fix buffer viewer to handle 0b style binary
2023-10-24 23:15:34 +01:00
Ralph Wetzel
3df3096bb4
Fix to please linter
2023-10-18 08:07:49 +02:00
Ralph Wetzel
bb10d5bb94
Fix scope of variable
2023-10-18 08:07:06 +02:00
Ralph Wetzel
81937ddc45
Add plugin support to palette manager
2023-10-17 22:44:33 +02:00
Mat Smith
44c0bbc61e
Ctrl-Enter does not close tray (Monaco) #4377
2023-10-12 18:53:34 +01:00
ralphwetzel
5ac50fae3a
Extend typedInput "num" type validity check to NaN, binary, octal & hex
2023-09-26 20:00:48 +02:00
Nick O'Leary
680d5b8216
Merge pull request #4364 from node-red/4323-redo-mermaid-integration
...
Rework mermaid integration to support off-DOM rendering
2023-09-25 18:08:48 +01:00
Nick O'Leary
bba6b6f71d
Merge pull request #4365 from node-red/4334-context-labels
...
Add missing nls labels to context menu
2023-09-25 18:04:35 +01:00
Nick O'Leary
a489b270d1
Remove extra debug
2023-09-25 17:38:16 +01:00
Nick O'Leary
51cb61940d
Improve validation of switch/change node rules
...
Fixes #4340
2023-09-25 17:33:59 +01:00
Nick O'Leary
ce2f896b45
Add missing nls labels to context menu
...
Fixes #4334
2023-09-22 16:29:33 +01:00
Nick O'Leary
6635ff9a69
Rework mermaid integration to support off-DOM rendering
2023-09-22 15:23:01 +01:00
GogoVega
4c13f5a0af
Adapting the translation depending on the context
2023-09-09 14:34:33 +02:00
GogoVega
7f9d142038
Add translation of v3.1-beta.4 changes
2023-09-08 15:45:00 +02:00
GogoVega
44a1f83b26
Add some capital letters
2023-09-08 15:39:46 +02:00
Nick O'Leary
0c042abcab
Bump to 4.0.0-dev
2023-09-06 14:45:45 +01:00
Nick O'Leary
d9bbac20f3
Merge pull request #4320 from node-red/dev
...
Sync `dev` to `master` for 3.1.0 release
2023-09-06 14:04:36 +01:00
Nick O'Leary
77b235655c
Bump version and changelog
2023-09-05 21:29:20 +01:00
Nick O'Leary
ab6d537c3e
Default filter to All Catalogues and show nodes for small lists
2023-09-05 17:49:50 +01:00
Rotzbua
aea32cc279
Migrate http -> https for nodered.org
2023-09-05 14:55:56 +02:00
Nick O'Leary
d307968880
Better distinguish between ctrl and meta keys on mac
...
Fixes #4206 , #4205
2023-09-05 12:36:44 +01:00
Nick O'Leary
261998201b
Merge pull request #4298 from node-red/4295-urlencode-context-api
...
Handle non-url-safe chars in context api
2023-09-05 09:43:17 +01:00
Nick O'Leary
18bd318da2
Handle non-url-safe chars in context api
2023-09-01 16:06:05 +01:00
Nick O'Leary
e1712073c9
Ensure junction appears when filtering quick-add list
2023-09-01 15:41:33 +01:00
Nick O'Leary
2478a7194e
Merge pull request #4287 from kazuhitoyokoi/dev-fixjsonata
...
Update message catalogs for JSONata Expression editor
2023-08-21 15:42:37 +01:00
Kazuhito Yokoi
e7f9e61f2a
Add tooltip to relevance sort button in user settings UI
2023-08-20 16:20:18 +09:00
Kazuhito Yokoi
3047ed1253
Improve message catalogs for JSONata Expression editor
2023-08-19 13:33:42 +09:00
Kazuhito Yokoi
cf0c7ce583
Fix typo in Korean message catalog
2023-08-19 13:24:34 +09:00
Kazuhito Yokoi
206211f9ef
Fix typo in English message catalog
2023-08-19 13:21:42 +09:00
Kazuhito Yokoi
8220ff8a35
Add docs for function in Japanese message catalog
2023-08-19 13:19:55 +09:00
Nick O'Leary
927fc5424b
Merge pull request #4283 from node-red/4282-dirty-junction-undo
...
Capture workspace dirty state when quick-adding junction
2023-08-18 15:53:25 +01:00
Nick O'Leary
64b94c68d3
Merge pull request #4284 from node-red/4268-add-clone-jsonata-docs
...
Add docs for $clone function
2023-08-18 15:52:45 +01:00
Kazuhito Yokoi
1414fed776
Change linefeed codes from "\r\n" to "\n" in Korean message catalogs
2023-08-18 20:39:13 +09:00
Kazuhito Yokoi
7e6a96db87
Fix file permissions of message catalogs
2023-08-17 18:17:58 +09:00
Nick O'Leary
966bbe2856
Add docs for $clone function
2023-08-16 16:02:33 +01:00
Nick O'Leary
2137211d42
Capture workspace dirty state when quick-adding junction
...
Fixes #4282
2023-08-16 15:58:08 +01:00
Kazuhito Yokoi
6e46666895
Fix not rounded corners in project settings UI
2023-08-16 20:14:22 +09:00
Nick O'Leary
20557f20db
Update tour for 3.1.0
2023-08-15 20:36:07 +01:00
Nick O'Leary
9542c22191
Merge pull request #4259 from kazuhitoyokoi/master-fixtooltip4textdiff
...
Add tooltip to text diff button
2023-08-14 11:11:32 +01:00
Nick O'Leary
15b8d79489
Merge pull request #4261 from DarshanDixit05/fix-Invalid-label
...
fix : Invalid label for attribute on the tray
2023-08-14 11:11:10 +01:00
Christian Vaas
6c597bba5b
fix: undefined node and wrong method name
2023-08-08 19:21:31 +02:00
DarshanDixit05
792dedb1f1
fix : Invalid label for attribute on the tray
2023-07-31 19:34:12 +05:30
Kazuhito Yokoi
0bf1343442
Add tooltip to text diff button
2023-07-29 16:36:55 +09:00
Nick O'Leary
1ffef393c2
Bump versions for 3.1.0-beta.4
2023-07-26 17:09:29 +01:00
Nick O'Leary
8b7b3e22d7
Merge branch 'master' into dev
2023-07-26 16:59:12 +01:00
Kazuhito Yokoi
6d2f855227
Add Japanese translation for 3.1.0
2023-07-15 17:34:08 +09:00
Steve-Mcl
15973768e2
improve catalog visibility/ux
2023-07-14 12:57:27 +01:00
Stephen McLaughlin
0d73a4b013
remove console debugging
2023-07-13 20:28:24 +01:00
Stephen McLaughlin
50f11faf1f
remove console debugging
2023-07-13 20:28:16 +01:00
Stephen McLaughlin
cfb7406fb8
remove console debugging
2023-07-13 20:28:09 +01:00
Steve-Mcl
9008f063c3
hook up filtering to catalog selection
2023-07-13 19:49:17 +01:00
Steve-Mcl
368ac4ed5c
i18n update
2023-07-13 19:48:34 +01:00
Steve-Mcl
6ac2e703a6
fix layout bugs
2023-07-13 19:48:13 +01:00
Steve-Mcl
1fa4aaf706
add catalog select
2023-07-13 13:27:42 +01:00
Nick O'Leary
271b1327c7
Merge branch 'dev' into revert-4225-4196-fix-jsonata-env-var-async
2023-07-10 12:37:41 +01:00
Steve-Mcl
bd589aa140
fix touch mode wire linking
2023-07-10 10:24:28 +01:00
Kazuhito Yokoi
c4019bd91d
Add Japanese translation for error message when creating subflow
2023-07-02 15:51:35 +09:00
Nick O'Leary
56ed32e4a1
Add background to node status
2023-06-23 16:09:34 +01:00
Nick O'Leary
11f9ad8ca3
Remove debug for wiring
2023-06-23 12:29:33 +01:00
Nick O'Leary
26fc942c79
Improve wiring for horizontally aligned nodes
2023-06-23 12:24:48 +01:00
Nick O'Leary
51a0b68d8e
Revert "Add callback to getSetting to support async jsonata access"
2023-06-22 10:17:48 +01:00
Nick O'Leary
8fb379079b
Merge pull request #4225 from node-red/4196-fix-jsonata-env-var-async
...
Add callback to getSetting to support async jsonata access
2023-06-21 15:56:11 +01:00
Nick O'Leary
4d9fcaeebf
Update env.get type hint
2023-06-21 15:00:27 +01:00
Nick O'Leary
01c56f6515
Merge pull request #4200 from GogoVega/french-translation-of-welcome-tours
...
French translation of Welcome Tours
2023-06-21 14:03:56 +01:00
Nick O'Leary
026be5a990
Merge pull request #4199 from GogoVega/french-translation-of-v3.1.0-beta.3
...
French translation of v3.1.0-beta.3 changes
2023-06-21 14:01:10 +01:00
Nick O'Leary
1ad67d5c73
Merge pull request #4218 from node-red/4204-cant-go-fullscreen-on-a-mac
...
Dont handle shortcuts with both cmd+ctrl modifiers
2023-06-21 13:31:21 +01:00
Stephen McLaughlin
694fdebc71
dont handle both cmd+ctrl
2023-06-10 16:23:21 +01:00
Steve-Mcl
4b24223290
Dont clone group node `node` array
...
fixes #4198
2023-05-29 23:55:52 +01:00
GogoVega
4cb2624a5d
French translation of Welcome Tours
2023-05-26 20:58:50 +02:00
GogoVega
58e045f25d
French translation of changes from v3.1.0-beta.3
2023-05-26 20:52:25 +02:00
Nick O'Leary
26a770e490
Merge pull request #4192 from node-red/prep-310-beta3
...
Bump everything for beta.3
2023-05-26 13:31:53 +01:00
Nick O'Leary
4047612b96
Merge branch 'master' into patch-1
2023-05-26 10:31:29 +01:00
Steve-Mcl
59ec87a393
fix function node error badge not shown
...
fixes #4194
2023-05-26 10:12:48 +01:00
Kazuhito Yokoi
9423104dad
Add Japanese translations for v3.1.0-beta.3
2023-05-26 12:35:53 +09:00
Nick O'Leary
614834090e
Bump everything for beta.3
2023-05-25 18:10:01 +01:00
Steve-Mcl
e19b60b202
patch the editor to fix invisible action list
2023-05-25 11:30:24 +01:00
Steve-Mcl
0ed274f994
remove useless file
2023-05-25 10:59:09 +01:00
Steve-Mcl
e8378b382b
update function node env typing
2023-05-25 10:58:25 +01:00
Nick O'Leary
90e32f52c9
Enable RED.view.select to select group by id
2023-05-22 16:51:17 +01:00
Nick O'Leary
ce6a4845f2
Merge pull request #4113 from Steve-Mcl/select-deep-linked-item
...
Select the item that is specified in a deep link URL
2023-05-22 16:48:00 +01:00
Nick O'Leary
0f5cf1d51c
Merge pull request #4183 from node-red/4111-subflow-node-position
...
Place subflow outputs/inputs relative to current view
2023-05-22 16:46:56 +01:00
Nick O'Leary
7a4f48e4fb
Place subflow outputs/inputs relative to current view
...
Fixes #4111
2023-05-22 16:26:38 +01:00
Nick O'Leary
2ae2ec2578
Combine existing env vars when merging groups
...
Closes #4101
2023-05-22 16:07:14 +01:00
Nick O'Leary
c2387777c9
Merge branch 'master' into dev
2023-05-22 12:52:07 +01:00
Nick O'Leary
32a49a1ef1
Merge pull request #4172 from wooferguy/Zombie-Junctions-Fix
...
Check for group
2023-05-22 12:51:46 +01:00
Nick O'Leary
29db82625f
Merge pull request #4162 from kazuhitoyokoi/master-fixdownload4ipad
...
Fix content type for downloading flows.json
2023-05-22 12:48:05 +01:00
Nick O'Leary
a7e0444e92
Merge pull request #4158 from kazuhitoyokoi/dev-addjpn
...
Add Japanese translations for v3.1 beta.2
2023-05-22 11:36:32 +01:00
wooferguy
7e9042e9f7
Check for group
...
Remove junction from groups node list if it is present.
2023-05-17 05:14:18 +12:00
xuyu0v0
940512fb2c
Update editor.json
...
Update Simplified Chinese translation files
2023-05-07 20:16:28 +08:00
Kazuhito Yokoi
e8ddee24a9
Use correct content type for downloading flows.json
2023-05-06 21:10:49 +09:00
Kazuhito Yokoi
be4eab65f6
Fix content type for downloading flows.json
2023-05-06 20:00:20 +09:00
Kazuhito Yokoi
fb5ffa1c31
Add Japanese translation for keyboard shortcut scope
2023-05-01 14:44:14 +09:00
Kazuhito Yokoi
c0650cc0f5
Add Japanese translation for keyboard shortcut scope
2023-05-01 13:53:54 +09:00
Nick O'Leary
e29479fd25
Merge branch 'dev' into remove-empty-global-config
2023-04-28 21:49:16 +01:00
Nick O'Leary
55a9a29f76
Merge branch 'master' into dev
2023-04-28 18:49:03 +01:00
Nick O'Leary
67dd7e30fa
Merge pull request #4154 from node-red/add-editor-scope
...
Add editor scope to keyboard shortcut scope select
2023-04-28 18:47:25 +01:00
Nick O'Leary
667d8673d4
Merge branch 'master' into Bugs/not-loading-missing-subflow
2023-04-28 18:07:28 +01:00
Nick O'Leary
86dfe86813
Add editor scope to keyboard shortcut scope select
2023-04-28 17:47:16 +01:00
Nick O'Leary
b129e11c8f
Avoid creating empty global-config node if not needed
2023-04-28 17:36:55 +01:00
Nick O'Leary
bd7b3bb4d7
Merge pull request #4108 from node-red/fix-group-select-delete
...
Fix group selection when using lasso
2023-04-28 15:28:04 +01:00
Nick O'Leary
00e7e4d43c
Merge pull request #4147 from kazuhitoyokoi/master-selection2subflow
...
Add node width and height to boundingBox
2023-04-28 15:23:02 +01:00
Nick O'Leary
ee43a845aa
Merge pull request #4128 from kazuhitoyokoi/master-fixquickadddialog
...
Fix broken subflow icon and overflowed name in quick add dialog
2023-04-28 15:22:25 +01:00
Nick O'Leary
a7cc66af93
Merge pull request #4130 from kazuhitoyokoi/master-fixoverflow
...
Wrap long node name in tooltip, info sidebar, and node property
2023-04-28 15:21:37 +01:00
Nick O'Leary
f8701cfed0
Merge pull request #4135 from kazuhitoyokoi/master-fixactionlist
...
Support uppercase in keyword when searching action list
2023-04-28 15:20:56 +01:00
Nick O'Leary
07729247ac
Merge pull request #4145 from kazuhitoyokoi/dev-addjpn4tour
...
Add Japanese translations for welcome tour of 3.1.0 beta.2
2023-04-28 15:16:13 +01:00
Nick O'Leary
792b310fad
Merge pull request #4151 from mw75/master
...
Use editor path in generating localStorage keys
2023-04-28 15:15:55 +01:00
Mario Wolff
ed2c9d24e8
use replace instead of replaceAll to support node14
2023-04-28 14:53:18 +02:00
Mario Wolff
f917212d67
a simple approach to fix #2657
2023-04-28 12:35:19 +02:00
Gerwin van Beek
6fbcec8b98
Solved node red not loading without error when subflow is missing
2023-04-24 11:51:06 +02:00
Kazuhito Yokoi
c30e57c31d
Add node width and height to boundingBox
2023-04-23 20:47:17 +09:00
Kazuhito Yokoi
674c9f0405
Add Japanese translations for welcome tour of 3.1.0 beta.2
2023-04-22 21:26:02 +09:00
Mauricio Bonani
df3dc36874
Fix palette filter background
2023-04-17 10:57:40 -04:00
Kazuhito Yokoi
7b71d8d212
Support uppercase in keyword when searching action list
2023-04-10 01:25:34 +09:00
Kazuhito Yokoi
2eaae4b83f
Wrap long node name in info sidebar
2023-04-05 00:56:27 +09:00
Kazuhito Yokoi
3c66af9506
Wrap long node name in tooltip and node property
2023-04-05 00:45:46 +09:00
Kazuhito Yokoi
8e4933041d
Wrap text of label in quick add dialog
2023-04-01 02:34:11 +09:00
Kazuhito Yokoi
1f3559e14f
Set label width in quick add dialog to prevent broken node icon
2023-04-01 02:28:48 +09:00
Steve-Mcl
12ac260dce
select the deep link item
2023-03-26 11:00:28 +01:00
Nick O'Leary
53f99ecc23
Merge pull request #4112 from node-red/editor-cred-export
...
Ensure no node credentials are included when exporting to clipboard
2023-03-24 09:50:14 +00:00
Nick O'Leary
347410f744
Do not include credentials when exporting to clipboard
2023-03-24 09:44:10 +00:00
Nick O'Leary
33ea25922d
Update packages/node_modules/@node-red/editor-client/src/js/ui/view.js
2023-03-20 20:29:10 +00:00
Nick O'Leary
b56bd7bb5e
Fix group selection when using lasso
2023-03-20 17:15:45 +00:00
Steve-Mcl
97fbad4dc5
add "timers" types to known types
2023-03-13 10:02:46 +00:00
Stephen McLaughlin
586006de4d
Merge pull request #4097 from node-red/fix-json-expr-test
...
Fix jsonata expression test ui
2023-03-07 17:13:50 +00:00
Nick O'Leary
dc6abb691e
Fix jsonata expression test ui
2023-03-07 16:59:13 +00:00
Nick O'Leary
d273c38194
Fix search button in palette popover
2023-03-07 16:47:44 +00:00
Nick O'Leary
6179d1eef2
Bump for beta.2
2023-03-06 17:30:34 +00:00
Nick O'Leary
9f121f4c72
Merge pull request #4094 from node-red/increase-workspace
...
Increase workspace size to 8000x8000
2023-03-06 17:13:24 +00:00
Nick O'Leary
2d066307f4
Merge branch 'master' into dev
2023-03-06 16:17:02 +00:00
Nick O'Leary
0fdf426a93
Increase workspace size to 8000x8000
2023-03-03 20:06:24 +00:00
Nick O'Leary
683ae4f067
Merge branch 'dev' into pr_3858
2023-03-03 16:09:19 +00:00
Nick O'Leary
94bc887369
Restore drag-to-detach action
2023-03-03 16:09:04 +00:00
Nick O'Leary
d1094da6c7
Merge pull request #3895 from hae-iotplatform/translation-KR
...
Translation kr
2023-03-03 15:23:54 +00:00
Nick O'Leary
307fbef5b2
Merge branch 'dev' into translation-zhcn
2023-03-03 15:22:34 +00:00
Nick O'Leary
fd66335bd4
Merge pull request #3962 from GogoVega/french-translation
...
Add French translation
2023-03-03 13:37:40 +00:00
Nick O'Leary
301343deb0
Update packages/node_modules/@node-red/editor-client/locales/fr/editor.json
...
Co-authored-by: Gauthier Dandele <92022724+GogoVega@users.noreply.github.com>
2023-03-03 13:36:45 +00:00
Nick O'Leary
c046c8c4d3
Merge pull request #3804 from FabsMuller/ptbrtranslation
...
Portuguese Brazilian (pt-BR) translation
2023-03-03 13:33:47 +00:00
Nick O'Leary
0ceca8fc17
Merge pull request #4091 from node-red/enable-unlocked-buttons
...
Ensure node buttons are redrawn when flow lock state is changed
2023-03-03 13:33:08 +00:00
Nick O'Leary
2ac3b50040
Merge pull request #4090 from node-red/json-async-prep
...
Deprecate synchronous access to jsonata
2023-03-03 13:23:17 +00:00
Nick O'Leary
70771bf3d6
Ensure node buttons are redrawn when flow lock state is changed
2023-03-03 13:21:23 +00:00
Nick O'Leary
ca53712ee9
Deprecate synchronous access to jsonata
2023-03-03 11:43:06 +00:00
Steve-Mcl
69e139b75b
update monaco themes
2023-03-03 10:57:31 +00:00
Steve-Mcl
d268661f29
update monaco locales
2023-03-03 10:56:55 +00:00
Steve-Mcl
ed379387df
update monaco (0.36.1)
2023-03-03 10:56:37 +00:00
Steve-Mcl
1eddad82c8
update typings
2023-03-03 10:55:06 +00:00
Nick O'Leary
0e4a7829fe
Update jquery-ui to latest
2023-03-03 09:33:24 +00:00
Nick O'Leary
81d4c60cbd
Prevent loops being created with junction nodes
...
Fixes #3799
2023-03-02 21:13:39 +00:00
Nick O'Leary
08eaa9274f
Merge branch 'dev' into group-rework
2023-03-02 15:26:01 +00:00
Nick O'Leary
2804794f7a
Merge pull request #4072 from node-red-hitachi/fix-align-nodes-on-locked-tab
...
fix align nodes on locked tab
2023-03-02 15:14:02 +00:00
Nick O'Leary
781eaf058b
Merge pull request #4077 from node-red-hitachi/support-editablelist-cnacel
...
add cancel operation to editableList
2023-03-02 15:13:48 +00:00
Nick O'Leary
b4c155bdb8
Merge branch 'dev' into pr_4059
2023-03-02 15:12:28 +00:00
Nick O'Leary
7c3e045a57
Merge pull request #4068 from node-red/change-tab-notification
...
Add change icon to tabs
2023-03-02 15:11:28 +00:00
Nick O'Leary
27e258b19b
Fix importing connected link nodes into a subflow
...
Fixes #4055
2023-03-02 14:14:33 +00:00
GogoVega
d3615c9661
Add translation of new features from dev branch
2023-03-01 16:50:40 +01:00
Nick O'Leary
07f2f0cef3
Complete overhaul of Group UX
2023-03-01 10:02:26 +00:00
Hiroyasu Nishiyama
662b1a8100
add cancel operation to editableList
2023-02-27 14:31:44 +09:00