Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
#### 5.0.0-beta.0: Beta Release

Editor

- Update Sidebar UX (#5318) @knolleary
- Workspace pan/zoom updates (#5312) @knolleary
- Fix panning workspace on touchscreens (#5371) @knolleary
- Update tour for 5-beta (#5370) @knolleary

Runtime

- Prep dev branch for beta releases (#5367) @knolleary

Nodes

- Add ability to use pfx or p12 file for TLS connection settings option (#4907) @dceejay


#### 4.1.2: Maintenance Release


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,12 @@ RED.search = (function() {
$('<div>',{class:"red-ui-search-result-node-type"}).text(node.type).appendTo(contentDiv);
$('<div>',{class:"red-ui-search-result-node-id"}).text(node.id).appendTo(contentDiv);

div.on("mouseover", function(evt) {
if ( node.z == RED.workspaces.active() ) {
RED.view.reveal(node.id)
}
});

div.on("click", function(evt) {
evt.preventDefault();
currentIndex = i;
Expand Down