export default { version: "2.2.0", steps: [ { titleIcon: "fa fa-map-o", title: { "en-US": "Welcome to Node-RED 2.2!", "ja": "Node-RED 2.2へようこそ!" }, description: { "en-US": "Let's take a moment to discover the new features in this release.", "ja": "本リリースの新機能を見つけてみましょう。" } }, { title: { "en-US": "Search history", }, description: { "en-US": "

The Search dialog now keeps a history of your searches, making it easier to go back to a previous search.

" }, element: "#red-ui-search .red-ui-searchBox-form", prepare(done) { RED.search.show(); setTimeout(done,400); }, complete() { RED.search.hide(); }, }, { title: { "en-US": "New wiring actions", }, // image: "images/", description: { "en-US": `

A pair of new actions have been added to help with wiring nodes together:

Actions can be accessed from the Action List in the main menu.

` }, }, { title: { "en-US": "Deleting nodes and reconnecting wires", }, image: "images/delete-repair.gif", description: { "en-US": `

It is now possible to delete a selection of nodes and automatically repair the wiring behind them.

This is really useful if you want to remove a node from the middle of the flow.

Hold the Ctrl (or Cmd) key when you press Delete and the nodes will be gone and the wires repaired.

` } }, { title: { "en-US": "Detaching nodes from a flow", }, image: "images/detach-repair.gif", description: { "en-US": `

If you want to remove a node from a flow without deleting it, you can use the Detach Selected Nodes action.

The nodes will be removed from their flow, the wiring repaired behind them, and then attached to the mouse so you can drop them wherever you want in the workspace.

There isn't a default keyboard shortcut assigned for this new action, but you can add your own via the Keyboard pane of the main Settings dialog.

` } }, { title: { "en-US": "More wiring tricks", }, image: "images/slice.gif", description: { "en-US": `

A couple more wiring tricks to share.

You can now select multiple wires by holding the Ctrl (or Cmd) key when clicking on a wire. This makes it easier to delete multiple wires in one go.

If you hold the Ctrl (or Cmd) key, then click and drag with the right-hand mouse button, you can slice through wires to remove them.

` } }, { title: { "en-US": "Node Updates", }, // image: "images/", description: { "en-US": `` } } ] }