3.53.1 Release

This commit is contained in:
Richard Davey 2021-03-08 16:37:16 +00:00
parent 11d47d0196
commit e2f19617f3
13 changed files with 17 additions and 219058 deletions

View file

@ -1,3 +1,7 @@
## Version 3.53.1 - Anastasia - 8th March 2021
* Fixed an issue where Container children were not removed from the display list properly.
## Version 3.53.0 - Anastasia - 8th March 2021 ## Version 3.53.0 - Anastasia - 8th March 2021
### New Features ### New Features

View file

@ -110,13 +110,13 @@ npm install phaser
[Phaser is on jsDelivr](https://www.jsdelivr.com/package/npm/phaser) which is a "super-fast CDN for developers". Include the following in your html: [Phaser is on jsDelivr](https://www.jsdelivr.com/package/npm/phaser) which is a "super-fast CDN for developers". Include the following in your html:
```html ```html
<script src="//cdn.jsdelivr.net/npm/phaser@3.53.0/dist/phaser.js"></script> <script src="//cdn.jsdelivr.net/npm/phaser@3.53.1/dist/phaser.js"></script>
``` ```
or the minified version: or the minified version:
```html ```html
<script src="//cdn.jsdelivr.net/npm/phaser@3.53.0/dist/phaser.min.js"></script> <script src="//cdn.jsdelivr.net/npm/phaser@3.53.1/dist/phaser.min.js"></script>
``` ```
### API Documentation ### API Documentation
@ -188,7 +188,7 @@ Create an `index.html` page locally and paste the following code into it:
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<script src="https://cdn.jsdelivr.net/npm/phaser@3.53.0/dist/phaser-arcade-physics.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/phaser@3.53.1/dist/phaser-arcade-physics.min.js"></script>
</head> </head>
<body> <body>
@ -342,8 +342,8 @@ All rights reserved.
"Above all, video games are meant to be just one thing: fun. Fun for everyone." - Satoru Iwata "Above all, video games are meant to be just one thing: fun. Fun for everyone." - Satoru Iwata
[get-js]: https://github.com/photonstorm/phaser/releases/download/v3.53.0/phaser.js [get-js]: https://github.com/photonstorm/phaser/releases/download/v3.53.1/phaser.js
[get-minjs]: https://github.com/photonstorm/phaser/releases/download/v3.53.0/phaser.min.js [get-minjs]: https://github.com/photonstorm/phaser/releases/download/v3.53.1/phaser.min.js
[clone-http]: https://github.com/photonstorm/phaser.git [clone-http]: https://github.com/photonstorm/phaser.git
[clone-ssh]: git@github.com:photonstorm/phaser.git [clone-ssh]: git@github.com:photonstorm/phaser.git
[clone-ghwin]: github-windows://openRepo/https://github.com/photonstorm/phaser [clone-ghwin]: github-windows://openRepo/https://github.com/photonstorm/phaser

View file

@ -7026,7 +7026,7 @@ var CONST = {
* @type {string} * @type {string}
* @since 3.0.0 * @since 3.0.0
*/ */
VERSION: '3.53.0', VERSION: '3.53.1',
BlendModes: __webpack_require__(35), BlendModes: __webpack_require__(35),
@ -46440,10 +46440,6 @@ var Container = new Class({
gameObject.parentContainer.remove(gameObject); gameObject.parentContainer.remove(gameObject);
} }
var displayList = this.displayList || this.scene.sys.displayList;
gameObject.addToDisplayList(displayList);
gameObject.parentContainer = this; gameObject.parentContainer = this;
} }
}, },
@ -46463,8 +46459,6 @@ var Container = new Class({
if (this.exclusive) if (this.exclusive)
{ {
gameObject.removeFromDisplayList();
gameObject.parentContainer = null; gameObject.parentContainer = null;
gameObject.addToDisplayList(); gameObject.addToDisplayList();

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

8
dist/phaser-ie9.js vendored
View file

@ -7569,7 +7569,7 @@ var CONST = {
* @type {string} * @type {string}
* @since 3.0.0 * @since 3.0.0
*/ */
VERSION: '3.53.0', VERSION: '3.53.1',
BlendModes: __webpack_require__(35), BlendModes: __webpack_require__(35),
@ -50981,10 +50981,6 @@ var Container = new Class({
gameObject.parentContainer.remove(gameObject); gameObject.parentContainer.remove(gameObject);
} }
var displayList = this.displayList || this.scene.sys.displayList;
gameObject.addToDisplayList(displayList);
gameObject.parentContainer = this; gameObject.parentContainer = this;
} }
}, },
@ -51004,8 +51000,6 @@ var Container = new Class({
if (this.exclusive) if (this.exclusive)
{ {
gameObject.removeFromDisplayList();
gameObject.parentContainer = null; gameObject.parentContainer = null;
gameObject.addToDisplayList(); gameObject.addToDisplayList();

File diff suppressed because one or more lines are too long

8
dist/phaser.js vendored
View file

@ -7569,7 +7569,7 @@ var CONST = {
* @type {string} * @type {string}
* @since 3.0.0 * @since 3.0.0
*/ */
VERSION: '3.53.0', VERSION: '3.53.1',
BlendModes: __webpack_require__(35), BlendModes: __webpack_require__(35),
@ -50981,10 +50981,6 @@ var Container = new Class({
gameObject.parentContainer.remove(gameObject); gameObject.parentContainer.remove(gameObject);
} }
var displayList = this.displayList || this.scene.sys.displayList;
gameObject.addToDisplayList(displayList);
gameObject.parentContainer = this; gameObject.parentContainer = this;
} }
}, },
@ -51004,8 +51000,6 @@ var Container = new Class({
if (this.exclusive) if (this.exclusive)
{ {
gameObject.removeFromDisplayList();
gameObject.parentContainer = null; gameObject.parentContainer = null;
gameObject.addToDisplayList(); gameObject.addToDisplayList();

2
dist/phaser.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{ {
"name": "phaser", "name": "phaser",
"version": "3.53.0", "version": "3.53.1",
"release": "Anastasia", "release": "Anastasia",
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.", "description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.",
"author": "Richard Davey <rich@photonstorm.com> (http://www.photonstorm.com)", "author": "Richard Davey <rich@photonstorm.com> (http://www.photonstorm.com)",

View file

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

View file

@ -451,10 +451,6 @@ var Container = new Class({
gameObject.parentContainer.remove(gameObject); gameObject.parentContainer.remove(gameObject);
} }
var displayList = this.displayList || this.scene.sys.displayList;
gameObject.addToDisplayList(displayList);
gameObject.parentContainer = this; gameObject.parentContainer = this;
} }
}, },
@ -474,8 +470,6 @@ var Container = new Class({
if (this.exclusive) if (this.exclusive)
{ {
gameObject.removeFromDisplayList();
gameObject.parentContainer = null; gameObject.parentContainer = null;
gameObject.addToDisplayList(); gameObject.addToDisplayList();