From e41b3be8fff25e8e298bee6e9a9e81805d851569 Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Tue, 17 Sep 2024 15:07:34 +0100 Subject: [PATCH] v3.85.2 version --- CHANGELOG.md | 1 + changelog/3.85.2/CHANGELOG-v3.85.2.md | 11 +++++++++++ package.json | 2 +- src/const.js | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 changelog/3.85.2/CHANGELOG-v3.85.2.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 70346b852..50b8b3925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ Please select a version to read that specific change log: | Version | Name | Release Date | | ------- | ---- | ------------ | +| [3.85.2](changelog/3.85/CHANGELOG-v3.85.2.md) | Itsuki | 17th September 2024 | | [3.85.0](changelog/3.85/CHANGELOG-v3.85.md) | Itsuki | 5th September 2024 | | [3.80.1](changelog/3.80.1/CHANGELOG-v3.80.1.md) | Nino | 27th February 2024 | | [3.80](changelog/3.80/CHANGELOG-v3.80.md) | Nino | 21st February 2024 | diff --git a/changelog/3.85.2/CHANGELOG-v3.85.2.md b/changelog/3.85.2/CHANGELOG-v3.85.2.md new file mode 100644 index 000000000..c5945bce8 --- /dev/null +++ b/changelog/3.85.2/CHANGELOG-v3.85.2.md @@ -0,0 +1,11 @@ +# Version 3.85.2 - Itsuki - 17th September 2024 + + + +## Updates + +* `WebGLRenderer.setExtensions` is a new method that queries the GL context to get the list of supported extensions. Which it then sets into the class properties. This method is called internally as part of the `init` and restore process. + +## Bug Fixes + +* When the WebGL context was restored it would incorrectly try to call `init.setupExtensions()` which didn't exist. \ No newline at end of file diff --git a/package.json b/package.json index 362964827..027c3146a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phaser", - "version": "3.85.1", + "version": "3.85.2", "release": "Itsuki", "description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.", "author": "Richard Davey (https://www.phaser.io)", diff --git a/src/const.js b/src/const.js index 46ffe28ef..a62ccf062 100644 --- a/src/const.js +++ b/src/const.js @@ -20,7 +20,7 @@ var CONST = { * @type {string} * @since 3.0.0 */ - VERSION: '3.85.1', + VERSION: '3.85.2', BlendModes: require('./renderer/BlendModes'),