diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index b50449579..5d4d87bb7 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -8,7 +8,9 @@ If your issue is: - a feature request or suggestion for a change, - or problems with 3rd party (`node-red-contrib-`) nodes -please use the [mailing list](https://groups.google.com/forum/#!forum/node-red), [slack team](https://nodered.org/slack) or ask a question on [Stack Overflow](https://stackoverflow.com/questions/tagged/node-red) and tag it `node-red`. +please use the [Node-RED Forum](https://discourse.nodered.org) or [slack team](https://nodered.org/slack). + +You could also consider asking a question on [Stack Overflow](https://stackoverflow.com/questions/tagged/node-red) and tag it `node-red`. That way the whole Node-RED user community can help, rather than rely on the core development team. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 10185376d..05fdacd51 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -16,7 +16,7 @@ Put an `x` in the boxes that apply diff --git a/CHANGELOG.md b/CHANGELOG.md index 916a47ebe..1d6cccb65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +#### 0.18.6: Maintenance Release + +Editor Fixes + + - Handle a node having wires in the editor on ports it no longer has Fixes #1724 + - Add missing ACE snippet files + - Fix wireClippedNodes is not defined Fixes #1726 + - Split node html to isolate bad nodes when loading + - Avoid unnecessary use of .html() where .text() will do + + - Add editorTheme.projects.enabled to default settings.js" + #### 0.18.5: Maintenance Release Projects diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 64008278c..33a2f582f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,13 +30,13 @@ At a minimum, please include: ## Feature requests -For feature requests, please raise them on the [mailing list](https://groups.google.com/forum/#!forum/node-red). +For feature requests, please raise them on the [forum](https://discourse.nodered.org). ## Pull-Requests If you want to raise a pull-request with a new feature, or a refactoring of existing code, it may well get rejected if you haven't discussed it on -the [mailing list](https://groups.google.com/forum/#!forum/node-red) first. +the [forum](https://discourse.nodered.org) first. All contributors need to sign the JS Foundation's Contributor License Agreement. It is an online process and quick to do. You can read the details of the agreement diff --git a/README.md b/README.md index e762f8faa..c1306a796 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,7 @@ started. More documentation can be found [here](http://nodered.org/docs). -For further help, or general discussion, please use the -[mailing list](https://groups.google.com/forum/#!forum/node-red). +For further help, or general discussion, please use the [Node-RED Forum](https://discourse.nodered.org) or [slack team](https://nodered.org/slack). ## Developers diff --git a/editor/js/nodes.js b/editor/js/nodes.js index 5e2c7ca1d..0a2fe7268 100644 --- a/editor/js/nodes.js +++ b/editor/js/nodes.js @@ -491,7 +491,9 @@ RED.nodes = (function() { for (var j=0;jThe Catch node can also be used to handle errors. To invoke a Catch node, pass msg as a second argument to node.error:

node.error("Error",msg);
+

Referring Node Information

+

In the function block, id and name of the node can be referenced using the following properties:

+