v3.85.2 version

This commit is contained in:
Richard Davey 2024-09-17 15:07:34 +01:00
parent 6d68565b51
commit e41b3be8ff
4 changed files with 14 additions and 2 deletions

View file

@ -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 |

View file

@ -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.

View file

@ -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 <rich@phaser.io> (https://www.phaser.io)",

View file

@ -20,7 +20,7 @@ var CONST = {
* @type {string}
* @since 3.0.0
*/
VERSION: '3.85.1',
VERSION: '3.85.2',
BlendModes: require('./renderer/BlendModes'),