@node-red/editor-client 4.0.0-beta.1 → 4.0.0-beta.3
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 +2 -0
- package/locales/en-US/editor.json +9 -1
- package/locales/fr/editor.json +17 -3
- package/locales/ja/editor.json +18 -4
- package/package.json +1 -1
- package/public/red/about +70 -0
- package/public/red/red.js +1602 -425
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +2 -2
- package/public/red/tours/3.1/welcome.js +8 -8
- package/public/red/tours/images/nr4-background-deploy.png +0 -0
- package/public/red/tours/images/nr4-config-select.png +0 -0
- package/public/red/tours/images/nr4-diff-update.png +0 -0
- package/public/red/tours/images/nr4-multiplayer-location.png +0 -0
- package/public/red/tours/images/nr4-multiplayer.png +0 -0
- package/public/red/tours/images/nr4-plugins.png +0 -0
- package/public/red/tours/welcome.js +166 -11
- package/public/types/node/assert/strict.d.ts +1 -1
- package/public/types/node/assert.d.ts +8 -9
- package/public/types/node/async_hooks.d.ts +9 -5
- package/public/types/node/buffer.d.ts +43 -18
- package/public/types/node/child_process.d.ts +8 -5
- package/public/types/node/cluster.d.ts +15 -19
- package/public/types/node/console.d.ts +2 -2
- package/public/types/node/crypto.d.ts +165 -70
- package/public/types/node/dgram.d.ts +4 -4
- package/public/types/node/diagnostics_channel.d.ts +8 -7
- package/public/types/node/dns/promises.d.ts +11 -9
- package/public/types/node/dns.d.ts +18 -13
- package/public/types/node/dom-events.d.ts +129 -0
- package/public/types/node/domain.d.ts +2 -2
- package/public/types/node/events.d.ts +49 -12
- package/public/types/node/fs/promises.d.ts +68 -24
- package/public/types/node/fs.d.ts +132 -59
- package/public/types/node/globals.d.ts +31 -17
- package/public/types/node/http.d.ts +138 -27
- package/public/types/node/http2.d.ts +38 -5
- package/public/types/node/https.d.ts +12 -3
- package/public/types/node/module.d.ts +1 -2
- package/public/types/node/net.d.ts +69 -28
- package/public/types/node/os.d.ts +16 -5
- package/public/types/node/path.d.ts +5 -5
- package/public/types/node/perf_hooks.d.ts +48 -9
- package/public/types/node/process.d.ts +18 -17
- package/public/types/node/querystring.d.ts +2 -2
- package/public/types/node/readline/promises.d.ts +146 -0
- package/public/types/node/readline.d.ts +141 -31
- package/public/types/node/stream/consumers.d.ts +2 -2
- package/public/types/node/stream/promises.d.ts +1 -1
- package/public/types/node/stream/web.d.ts +4 -66
- package/public/types/node/stream.d.ts +96 -118
- package/public/types/node/string_decoder.d.ts +2 -2
- package/public/types/node/test.d.ts +200 -16
- package/public/types/node/timers/promises.d.ts +1 -26
- package/public/types/node/timers.d.ts +2 -2
- package/public/types/node/tls.d.ts +21 -12
- package/public/types/node/trace_events.d.ts +12 -2
- package/public/types/node/ts4.8/assert/strict.d.ts +11 -0
- package/public/types/node/ts4.8/assert.d.ts +964 -0
- package/public/types/node/ts4.8/async_hooks.d.ts +504 -0
- package/public/types/node/ts4.8/buffer.d.ts +2262 -0
- package/public/types/node/ts4.8/child_process.d.ts +1372 -0
- package/public/types/node/ts4.8/cluster.d.ts +413 -0
- package/public/types/node/ts4.8/console.d.ts +415 -0
- package/public/types/node/ts4.8/crypto.d.ts +3967 -0
- package/public/types/node/ts4.8/dgram.d.ts +548 -0
- package/public/types/node/ts4.8/diagnostics_channel.d.ts +156 -0
- package/public/types/node/ts4.8/dns/promises.d.ts +373 -0
- package/public/types/node/ts4.8/dns.d.ts +662 -0
- package/public/types/node/ts4.8/dom-events.d.ts +129 -0
- package/public/types/node/ts4.8/domain.d.ts +173 -0
- package/public/types/node/ts4.8/events.d.ts +681 -0
- package/public/types/node/ts4.8/fs/promises.d.ts +1141 -0
- package/public/types/node/ts4.8/fs.d.ts +3875 -0
- package/public/types/node/ts4.8/globals.d.ts +297 -0
- package/public/types/node/ts4.8/http.d.ts +1617 -0
- package/public/types/node/ts4.8/http2.d.ts +2137 -0
- package/public/types/node/ts4.8/https.d.ts +544 -0
- package/public/types/node/ts4.8/module.d.ts +117 -0
- package/public/types/node/ts4.8/net.d.ts +872 -0
- package/public/types/node/ts4.8/os.d.ts +469 -0
- package/public/types/node/ts4.8/path.d.ts +194 -0
- package/public/types/node/ts4.8/perf_hooks.d.ts +628 -0
- package/public/types/node/ts4.8/process.d.ts +1485 -0
- package/public/types/node/ts4.8/querystring.d.ts +134 -0
- package/public/types/node/ts4.8/readline/promises.d.ts +146 -0
- package/public/types/node/ts4.8/readline.d.ts +656 -0
- package/public/types/node/ts4.8/stream/consumers.d.ts +15 -0
- package/public/types/node/ts4.8/stream/promises.d.ts +45 -0
- package/public/types/node/ts4.8/stream/web.d.ts +333 -0
- package/public/types/node/ts4.8/stream.d.ts +1343 -0
- package/public/types/node/ts4.8/string_decoder.d.ts +70 -0
- package/public/types/node/ts4.8/test.d.ts +377 -0
- package/public/types/node/ts4.8/timers/promises.d.ts +71 -0
- package/public/types/node/ts4.8/timers.d.ts +97 -0
- package/public/types/node/ts4.8/tls.d.ts +1031 -0
- package/public/types/node/ts4.8/trace_events.d.ts +174 -0
- package/public/types/node/ts4.8/tty.d.ts +209 -0
- package/public/types/node/ts4.8/url.d.ts +900 -0
- package/public/types/node/ts4.8/util.d.ts +1853 -0
- package/public/types/node/ts4.8/v8.d.ts +399 -0
- package/public/types/node/ts4.8/vm.d.ts +512 -0
- package/public/types/node/ts4.8/wasi.d.ts +161 -0
- package/public/types/node/ts4.8/worker_threads.d.ts +692 -0
- package/public/types/node/ts4.8/zlib.d.ts +520 -0
- package/public/types/node/tty.d.ts +5 -3
- package/public/types/node/url.d.ts +81 -39
- package/public/types/node/util.d.ts +269 -13
- package/public/types/node/v8.d.ts +22 -4
- package/public/types/node/vm.d.ts +7 -5
- package/public/types/node/wasi.d.ts +2 -2
- package/public/types/node/worker_threads.d.ts +51 -11
- package/public/types/node/zlib.d.ts +2 -2
- package/public/types/node-red/func.d.ts +26 -17
- package/public/types/node-red/util.d.ts +1 -1
- package/public/vendor/ace/worker-jsonata.js +1 -1
- package/public/vendor/monaco/dist/{fa2cc0ab9f0bec2b3365.ttf → 0c718f5b7d2bce997c5f.ttf} +0 -0
- package/public/vendor/monaco/dist/css.worker.js +1 -1
- package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/editor.js +1 -29
- package/public/vendor/monaco/dist/editor.js.LICENSE.txt +2 -2
- package/public/vendor/monaco/dist/editor.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/json.worker.js +1 -1
- package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/locale/cs.js +324 -106
- package/public/vendor/monaco/dist/locale/de.js +336 -118
- package/public/vendor/monaco/dist/locale/es.js +329 -111
- package/public/vendor/monaco/dist/locale/fr.js +334 -116
- package/public/vendor/monaco/dist/locale/it.js +327 -109
- package/public/vendor/monaco/dist/locale/ja.js +329 -111
- package/public/vendor/monaco/dist/locale/ko.js +330 -112
- package/public/vendor/monaco/dist/locale/pl.js +329 -111
- package/public/vendor/monaco/dist/locale/pt-br.js +329 -111
- package/public/vendor/monaco/dist/locale/qps-ploc.js +330 -112
- package/public/vendor/monaco/dist/locale/ru.js +331 -113
- package/public/vendor/monaco/dist/locale/tr.js +329 -111
- package/public/vendor/monaco/dist/locale/zh-hans.js +331 -113
- package/public/vendor/monaco/dist/locale/zh-hant.js +331 -113
- package/public/vendor/monaco/dist/ts.worker.js +2 -2
- package/public/vendor/vendor.js +1 -1
- package/public/vendor/monaco/dist/7064e66c3890a12c47b4.ttf +0 -0
package/locales/de/editor.json
CHANGED
|
@@ -590,6 +590,8 @@
|
|
|
590
590
|
},
|
|
591
591
|
"nodeCount": "__label__ Node",
|
|
592
592
|
"nodeCount_plural": "__label__ Nodes",
|
|
593
|
+
"pluginCount": "__count__ Plugin",
|
|
594
|
+
"pluginCount_plural": "__count__ Plugins",
|
|
593
595
|
"moduleCount": "__count__ Modul verfügbar",
|
|
594
596
|
"moduleCount_plural": "__count__ Module verfügbar",
|
|
595
597
|
"inuse": "In Gebrauch",
|
|
@@ -372,6 +372,7 @@
|
|
|
372
372
|
"deleted": "deleted",
|
|
373
373
|
"flowDeleted": "flow deleted",
|
|
374
374
|
"flowAdded": "flow added",
|
|
375
|
+
"moved": "moved",
|
|
375
376
|
"movedTo": "moved to __id__",
|
|
376
377
|
"movedFrom": "moved from __id__"
|
|
377
378
|
},
|
|
@@ -614,6 +615,8 @@
|
|
|
614
615
|
},
|
|
615
616
|
"nodeCount": "__label__ node",
|
|
616
617
|
"nodeCount_plural": "__label__ nodes",
|
|
618
|
+
"pluginCount": "__count__ plugin",
|
|
619
|
+
"pluginCount_plural": "__count__ plugins",
|
|
617
620
|
"moduleCount": "__count__ module available",
|
|
618
621
|
"moduleCount_plural": "__count__ modules available",
|
|
619
622
|
"inuse": "in use",
|
|
@@ -641,6 +644,7 @@
|
|
|
641
644
|
"errors": {
|
|
642
645
|
"catalogLoadFailed": "<p>Failed to load node catalogue.</p><p>Check the browser console for more information</p>",
|
|
643
646
|
"installFailed": "<p>Failed to install: __module__</p><p>__message__</p><p>Check the log for more information</p>",
|
|
647
|
+
"installTimeout": "<p>Install continuing the background.</p><p>Nodes will appear in palette when complete. Check the log for more information.</p>",
|
|
644
648
|
"removeFailed": "<p>Failed to remove: __module__</p><p>__message__</p><p>Check the log for more information</p>",
|
|
645
649
|
"updateFailed": "<p>Failed to update: __module__</p><p>__message__</p><p>Check the log for more information</p>",
|
|
646
650
|
"enableFailed": "<p>Failed to enable: __module__</p><p>__message__</p><p>Check the log for more information</p>",
|
|
@@ -655,6 +659,9 @@
|
|
|
655
659
|
"body": "<p>Removing '__module__'</p><p>Removing the node will uninstall it from Node-RED. The node may continue to use resources until Node-RED is restarted.</p>",
|
|
656
660
|
"title": "Remove nodes"
|
|
657
661
|
},
|
|
662
|
+
"removePlugin": {
|
|
663
|
+
"body": "<p>Removed plugin __module__. Please reload the editor to clear left-overs.</p>"
|
|
664
|
+
},
|
|
658
665
|
"update": {
|
|
659
666
|
"body": "<p>Updating '__module__'</p><p>Updating the node will require a restart of Node-RED to complete the update. This must be done manually.</p>",
|
|
660
667
|
"title": "Update nodes"
|
|
@@ -666,7 +673,8 @@
|
|
|
666
673
|
"review": "Open node information",
|
|
667
674
|
"install": "Install",
|
|
668
675
|
"remove": "Remove",
|
|
669
|
-
"update": "Update"
|
|
676
|
+
"update": "Update",
|
|
677
|
+
"understood": "Understood"
|
|
670
678
|
}
|
|
671
679
|
}
|
|
672
680
|
}
|
package/locales/fr/editor.json
CHANGED
|
@@ -614,6 +614,8 @@
|
|
|
614
614
|
},
|
|
615
615
|
"nodeCount": "__label__ noeud",
|
|
616
616
|
"nodeCount_plural": "__label__ noeuds",
|
|
617
|
+
"pluginCount": "__count__ plugin",
|
|
618
|
+
"pluginCount_plural": "__count__ plugins",
|
|
617
619
|
"moduleCount": "__count__ module disponible",
|
|
618
620
|
"moduleCount_plural": "__count__ modules disponibles",
|
|
619
621
|
"inuse": "En cours d'utilisation",
|
|
@@ -641,6 +643,7 @@
|
|
|
641
643
|
"errors": {
|
|
642
644
|
"catalogLoadFailed": "<p>Échec du chargement du catalogue de noeuds.</p><p>Vérifier la console du navigateur pour plus d'informations</p>",
|
|
643
645
|
"installFailed": "<p>Échec lors de l'installation : __module__</p><p>__message__</p><p>Consulter le journal pour plus d'informations</p>",
|
|
646
|
+
"installTimeout": "<p>L'installation continue en arrière-plan.</p><p>Les noeuds apparaîtront dans la palette une fois l'installation terminée. Consulter le journal pour plus d'informations.</p>",
|
|
644
647
|
"removeFailed": "<p>Échec lors de la suppression : __module__</p><p>__message__</p><p>Consulter le journal pour plus d'informations</p>",
|
|
645
648
|
"updateFailed": "<p>Échec lors de la mise à jour : __module__</p><p>__message__</p><p>Consulter le journal pour plus d'informations</p>",
|
|
646
649
|
"enableFailed": "<p>Échec lors de l'activation : __module__</p><p>__message__</p><p>Consulter le journal pour plus d'informations</p>",
|
|
@@ -652,9 +655,12 @@
|
|
|
652
655
|
"title": "Installer les noeuds"
|
|
653
656
|
},
|
|
654
657
|
"remove": {
|
|
655
|
-
"body": "<p>Suppression de '__module__'</p><p>La suppression du noeud le désinstallera de Node-RED. Le noeud peut continuer à utiliser
|
|
658
|
+
"body": "<p>Suppression de '__module__'</p><p>La suppression du noeud le désinstallera de Node-RED. Le noeud peut continuer à utiliser ses ressources jusqu'au redémarrage de Node-RED.</p>",
|
|
656
659
|
"title": "Supprimer les noeuds"
|
|
657
660
|
},
|
|
661
|
+
"removePlugin": {
|
|
662
|
+
"body": "<p>Suppression du plugin '__module__'. Veuillez recharger l'éditeur afin d'appliquer les changements.</p>"
|
|
663
|
+
},
|
|
658
664
|
"update": {
|
|
659
665
|
"body": "<p>Mise à jour de '__module__'</p><p>La mise à jour du noeud nécessitera un redémarrage de Node-RED pour terminer la mise à jour. Cela doit être fait manuellement.</p>",
|
|
660
666
|
"title": "Mettre à jour les noeuds"
|
|
@@ -666,7 +672,8 @@
|
|
|
666
672
|
"review": "Ouvrir la documentation",
|
|
667
673
|
"install": "Installer",
|
|
668
674
|
"remove": "Supprimer",
|
|
669
|
-
"update": "Mettre à jour"
|
|
675
|
+
"update": "Mettre à jour",
|
|
676
|
+
"understood": "Compris"
|
|
670
677
|
}
|
|
671
678
|
}
|
|
672
679
|
}
|
|
@@ -924,7 +931,14 @@
|
|
|
924
931
|
"date": "horodatage",
|
|
925
932
|
"jsonata": "expression",
|
|
926
933
|
"env": "variable d'environnement",
|
|
927
|
-
"cred": "identifiant"
|
|
934
|
+
"cred": "identifiant",
|
|
935
|
+
"conf-types": "noeud de configuration"
|
|
936
|
+
},
|
|
937
|
+
"date": {
|
|
938
|
+
"format": {
|
|
939
|
+
"timestamp": "millisecondes depuis l'époque",
|
|
940
|
+
"object": "Objet de date JavaScript"
|
|
941
|
+
}
|
|
928
942
|
}
|
|
929
943
|
},
|
|
930
944
|
"editableList": {
|
package/locales/ja/editor.json
CHANGED
|
@@ -614,6 +614,8 @@
|
|
|
614
614
|
},
|
|
615
615
|
"nodeCount": "__label__ 個のノード",
|
|
616
616
|
"nodeCount_plural": "__label__ 個のノード",
|
|
617
|
+
"pluginCount": "__count__ 個のプラグイン",
|
|
618
|
+
"pluginCount_plural": "__count__ 個のプラグイン",
|
|
617
619
|
"moduleCount": "__count__ 個のモジュール",
|
|
618
620
|
"moduleCount_plural": "__count__ 個のモジュール",
|
|
619
621
|
"inuse": "使用中",
|
|
@@ -641,6 +643,7 @@
|
|
|
641
643
|
"errors": {
|
|
642
644
|
"catalogLoadFailed": "<p>ノードのカタログの読み込みに失敗しました。</p><p>詳細はブラウザのコンソールを確認してください。</p>",
|
|
643
645
|
"installFailed": "<p>追加処理が失敗しました: __module__</p><p>__message__</p><p>詳細はログを確認してください。</p>",
|
|
646
|
+
"installTimeout": "<p>バックグラウンドでインストールが継続されます。</p><p>完了した時にノードが表示されます。詳細はログを確認してください。</p>",
|
|
644
647
|
"removeFailed": "<p>削除処理が失敗しました: __module__</p><p>__message__</p><p>詳細はログを確認してください。</p>",
|
|
645
648
|
"updateFailed": "<p>更新処理が失敗しました: __module__</p><p>__message__</p><p>詳細はログを確認してください。</p>",
|
|
646
649
|
"enableFailed": "<p>有効化処理が失敗しました: __module__</p><p>__message__</p><p>詳細はログを確認してください。</p>",
|
|
@@ -655,6 +658,9 @@
|
|
|
655
658
|
"body": "<p>__module__ を削除します。</p><p>Node-REDからノードを削除します。ノードはNode-REDが再起動されるまで、リソースを使い続ける可能性があります。</p>",
|
|
656
659
|
"title": "ノードを削除"
|
|
657
660
|
},
|
|
661
|
+
"removePlugin": {
|
|
662
|
+
"body": "<p>プラグイン __module__ を削除しました。ブラウザを再読み込みして残った表示を消してください。</p>"
|
|
663
|
+
},
|
|
658
664
|
"update": {
|
|
659
665
|
"body": "<p>__module__ を更新します。</p><p>更新を完了するには手動でNode-REDを再起動する必要があります。</p>",
|
|
660
666
|
"title": "ノードの更新"
|
|
@@ -666,7 +672,8 @@
|
|
|
666
672
|
"review": "ノードの情報を参照",
|
|
667
673
|
"install": "追加",
|
|
668
674
|
"remove": "削除",
|
|
669
|
-
"update": "更新"
|
|
675
|
+
"update": "更新",
|
|
676
|
+
"understood": "了解"
|
|
670
677
|
}
|
|
671
678
|
}
|
|
672
679
|
}
|
|
@@ -924,7 +931,14 @@
|
|
|
924
931
|
"date": "日時",
|
|
925
932
|
"jsonata": "JSONata式",
|
|
926
933
|
"env": "環境変数",
|
|
927
|
-
"cred": "認証情報"
|
|
934
|
+
"cred": "認証情報",
|
|
935
|
+
"conf-types": "設定ノード"
|
|
936
|
+
},
|
|
937
|
+
"date": {
|
|
938
|
+
"format": {
|
|
939
|
+
"timestamp": "エポックからの経過ミリ秒",
|
|
940
|
+
"object": "JavaScript日付オブジェクト"
|
|
941
|
+
}
|
|
928
942
|
}
|
|
929
943
|
},
|
|
930
944
|
"editableList": {
|
|
@@ -1230,7 +1244,7 @@
|
|
|
1230
1244
|
},
|
|
1231
1245
|
"env-var": {
|
|
1232
1246
|
"environment": "環境変数",
|
|
1233
|
-
"header": "
|
|
1247
|
+
"header": "グローバル環境変数",
|
|
1234
1248
|
"revert": "破棄"
|
|
1235
1249
|
},
|
|
1236
1250
|
"action-list": {
|
|
@@ -1382,7 +1396,7 @@
|
|
|
1382
1396
|
"copy-item-edit-url": "要素の編集URLをコピー",
|
|
1383
1397
|
"move-flow-to-start": "フローを先頭に移動",
|
|
1384
1398
|
"move-flow-to-end": "フローを末尾に移動",
|
|
1385
|
-
"show-global-env": "
|
|
1399
|
+
"show-global-env": "グローバル環境変数を表示",
|
|
1386
1400
|
"lock-flow": "フローを固定",
|
|
1387
1401
|
"unlock-flow": "フローの固定を解除",
|
|
1388
1402
|
"show-node-help": "ノードのヘルプを表示"
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,57 @@
|
|
|
1
|
+
#### 4.0.0-beta.3: Beta Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Improve background-deploy notification handling (#4692) @knolleary
|
|
6
|
+
- Hide workspace tab on middle mouse click (#4657) @Steve-Mcl
|
|
7
|
+
- multiplayer: Add user presence indicators (#4666) @knolleary
|
|
8
|
+
- Enable updating dependency node of package.json in project feature (#4676) @kazuhitoyokoi
|
|
9
|
+
- Add French translations for 4.0.0-beta.2 (#4681) @GogoVega
|
|
10
|
+
- Add Japanese translations for 4.0.0-beta.2 (#4674) @kazuhitoyokoi
|
|
11
|
+
- Fix saving of conf-type properties in module packaged subflows (#4658) @knolleary
|
|
12
|
+
- Add npm install timeout notification (#4662) @hardillb
|
|
13
|
+
- Fix undo of subflow env property edits (#4667) @knolleary
|
|
14
|
+
- Fix three error typos in monaco.js (#4660) @JoshuaCWebDeveloper
|
|
15
|
+
- docs: Add closing paragraph tag (#4664) @ZJvandeWeg
|
|
16
|
+
- Avoid login loops when autoLogin enabled but login fails (#4684) @knolleary
|
|
17
|
+
|
|
18
|
+
Runtime
|
|
19
|
+
|
|
20
|
+
- Allow blank strings to be used for env var property substitutions (#4672) @knolleary
|
|
21
|
+
- Use rfdc for cloning pure JSON values (#4679) @knolleary
|
|
22
|
+
- fix: remove outdated Node 11+ check (#4314) @Rotzbua
|
|
23
|
+
- feat(ci): add new nodejs v22 (#4694) @Rotzbua
|
|
24
|
+
- fix(node): increase required node >=18.5 (#4690) @Rotzbua
|
|
25
|
+
- fix(dns): remove outdated node check (#4689) @Rotzbua
|
|
26
|
+
- fix(polyfill): remove import module polyfill (#4688) @Rotzbua
|
|
27
|
+
- Fix typo (#4686) @Rotzbua
|
|
28
|
+
|
|
29
|
+
Nodes
|
|
30
|
+
|
|
31
|
+
- Pass full error object in Function node and copy over cause property (#4685) @knolleary
|
|
32
|
+
- Replacing vm.createScript in favour of vm.Script (#4534) @patlux
|
|
33
|
+
|
|
34
|
+
#### 4.0.0-beta.2: Beta Release
|
|
35
|
+
|
|
36
|
+
Editor
|
|
37
|
+
|
|
38
|
+
- Introduce multiplayer feature (#4629) @knolleary
|
|
39
|
+
- Separate the "add new config-node" option into a new (+) button (#4627) @GogoVega
|
|
40
|
+
- Retain Palette categories collapsed and filter to localStorage (#4634) @knolleary
|
|
41
|
+
- Ensure palette filter reapplies and clear up unknown categories (#4637) @knolleary
|
|
42
|
+
- Add support for plugin (only) modules to the palette manager (#4620) @knolleary
|
|
43
|
+
- Update monaco to latest and node types to 18 LTS (#4615) @Steve-Mcl
|
|
44
|
+
|
|
45
|
+
Runtime
|
|
46
|
+
|
|
47
|
+
- Fix handling of subflow config-node select type in sf module (#4643) @knolleary
|
|
48
|
+
- Comms API updates (#4628) @knolleary
|
|
49
|
+
- Add French translations for 4.0.0-beta.1 (#4621) @GogoVega
|
|
50
|
+
- Add Japanese translations for 4.0.0-beta.1 (#4612) @kazuhitoyokoi
|
|
51
|
+
|
|
52
|
+
Nodes
|
|
53
|
+
- Fix change node handling of replacing with boolean (#4639) @knolleary
|
|
54
|
+
|
|
1
55
|
#### 4.0.0-beta.1: Beta Release
|
|
2
56
|
|
|
3
57
|
Editor
|
|
@@ -29,6 +83,22 @@ Nodes
|
|
|
29
83
|
- Let debug node status msg length be settable via settings (#4402) @dceejay
|
|
30
84
|
- Feat: Add ability to set headers for WebSocket client (#4436) @marcus-j-davies
|
|
31
85
|
|
|
86
|
+
#### 3.1.9: Maintenance Release
|
|
87
|
+
|
|
88
|
+
- Prevent subflow being added to itself (#4654) @knolleary
|
|
89
|
+
- Fix use of spawn on windows with cmd files (#4652) @knolleary
|
|
90
|
+
- Guard refresh of unknown subflow (#4640) @knolleary
|
|
91
|
+
- Fix subflow module sending messages to debug sidebar (#4642) @knolleary
|
|
92
|
+
|
|
93
|
+
#### 3.1.8: Maintenance Release
|
|
94
|
+
|
|
95
|
+
- Add validation and error handling on subflow instance properties (#4632) @knolleary
|
|
96
|
+
- Hide import/export context menu if disabled in theme (#4633) @knolleary
|
|
97
|
+
- Show change indicator on subflow tabs (#4631) @knolleary
|
|
98
|
+
- Bump dependencies (#4630) @knolleary
|
|
99
|
+
- Reset workspace index when clearing nodes (#4619) @knolleary
|
|
100
|
+
- Remove typo in global config (#4613) @kazuhitoyokoi
|
|
101
|
+
|
|
32
102
|
#### 3.1.7: Maintenance Release
|
|
33
103
|
|
|
34
104
|
- Add Japanese translation for v3.1.6 (#4603) @kazuhitoyokoi
|