Skip to content

Commit

Permalink
Version update 5.13.1
Browse files Browse the repository at this point in the history
Former-commit-id: a42f3ea13dc778a0e5504ddbded720ab59345537
  • Loading branch information
Babylon.js Platform committed Jun 30, 2022
1 parent 37748ed commit e0173a4
Show file tree
Hide file tree
Showing 29 changed files with 251 additions and 174 deletions.
66 changes: 64 additions & 2 deletions .build/changelog.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,68 @@
{
"fromTag": "5.12.1",
"fromTag": "5.13.0",
"changelog": {
"5.12.1": [],
"5.13.1": [
{
"pr": "12697",
"title": "Engine: Add event listener to disable right-click menu when there's a canvas element",
"description": "There was an issue found on the forums where the right-click context menu was appearing when a user used custom mouse controls. Upon closer investigation, it was determined that the reason the context menu didn't appear in other scenarios was that there was specific code to suppress it in all of our cameras' mouse input code. This proposed fix will add code to suppress the context menu when the rendering canvas is set to a non-null HTMLElement.\r\n\r\nForum Post: https://forum.babylonjs.com/t/even-by-using-evt-preventdefault-the-browser-menu-pops-up-after-i-changed-from-bjs-5-0-to-5-10/31383/8",
"author": {
"name": "PolygonalSun",
"url": "https://github.com/PolygonalSun"
},
"files": [
"packages/dev/core/src/Engines/engine.ts"
],
"tags": []
},
{
"pr": "12698",
"title": "Fix node decomposing at drop time",
"description": null,
"author": {
"name": "deltakosh",
"url": "https://github.com/deltakosh"
},
"files": [
"packages/dev/sharedUiComponents/src/nodeGraphSystem/frameNodePort.ts",
"packages/dev/sharedUiComponents/src/nodeGraphSystem/graphCanvas.tsx",
"packages/dev/sharedUiComponents/src/nodeGraphSystem/graphFrame.ts",
"packages/dev/sharedUiComponents/src/nodeGraphSystem/interfaces/nodeContainer.ts",
"packages/tools/nodeEditor/src/graphSystem/blockNodeData.ts",
"packages/tools/nodeEditor/src/graphSystem/connectionPointPortData.ts",
"packages/tools/nodeEditor/src/graphSystem/registerToTypeLedger.ts"
],
"tags": []
},
{
"pr": "12699",
"title": "Fix snippet loading on GUI Editor",
"description": "Related forum issue: https://forum.babylonjs.com/t/gui-editor-loading-from-snippet-id-only-not-entering-full-link-is-incomplete/31803",
"author": {
"name": "carolhmj",
"url": "https://github.com/carolhmj"
},
"files": [
"packages/tools/guiEditor/public/index.js"
],
"tags": []
},
{
"pr": "12696",
"title": "DeviceInputSystem: Fixed Passive Support Check to prevent Violation Warning",
"description": "There was a warning found by a user on the forums that, in Verbose mode, a Violation warning was occurring:\r\n![image](https://user-images.githubusercontent.com/50599569/176553040-80f67f6f-a818-4494-9f8a-f36f5e4c4739.png)\r\nThis warning was happening because the `wheel` event listener didn't have the \"passive\" option set to true when able. After closer investigation, it was found that the code used to determine if passive was supported was always returning false, causing this warning to occur. This PR modifies the logic to fix this.\r\n\r\nForum link: https://forum.babylonjs.com/t/bjs-console-warnings-when-using-cleargizmoonemptypointerevent/31447/8",
"author": {
"name": "PolygonalSun",
"url": "https://github.com/PolygonalSun"
},
"files": [
"packages/dev/core/src/DeviceInput/InputDevices/webDeviceInputSystem.ts"
],
"tags": [
"bug"
]
}
],
"5.13.0": [
{
"pr": "12694",
Expand Down Expand Up @@ -461,6 +522,7 @@
"tags": []
}
],
"5.12.1": [],
"5.12.0": [
{
"pr": "12664",
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,21 @@
- Add support for GLTF 2.0 Serializer KHR_materials_specular - by [pandaGaume](https://github.com/pandaGaume) ([#12332](https://github.com/BabylonJS/Babylon.js/pull/12332))
- Add support for Iridescence in PBR and GLTF - [_New Feature_] by [sebavan](https://github.com/sebavan) ([#12365](https://github.com/BabylonJS/Babylon.js/pull/12365))

## 5.13.1

### Core

- Engine: Add event listener to disable right-click menu when there's a canvas element - by [PolygonalSun](https://github.com/PolygonalSun) ([#12697](https://github.com/BabylonJS/Babylon.js/pull/12697))
- DeviceInputSystem: Fixed Passive Support Check to prevent Violation Warning - [_Bug Fix_] by [PolygonalSun](https://github.com/PolygonalSun) ([#12696](https://github.com/BabylonJS/Babylon.js/pull/12696))

### GUI Editor

- Fix snippet loading on GUI Editor - by [carolhmj](https://github.com/carolhmj) ([#12699](https://github.com/BabylonJS/Babylon.js/pull/12699))

### Node Editor

- Fix node decomposing at drop time - by [deltakosh](https://github.com/deltakosh) ([#12698](https://github.com/BabylonJS/Babylon.js/pull/12698))

## 5.13.0

### Core
Expand Down

0 comments on commit e0173a4

Please sign in to comment.