Skip to content

Commit ce8f2d9

Browse files
committed
v3.88.2 release
1 parent eee10f1 commit ce8f2d9

14 files changed

+22
-49
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Please select a version to read that specific change log:
77
| Version | Name | Release Date |
88
| ------- | ---- | ------------ |
99
| [3.89](changelog/3.89/CHANGELOG-v3.89.md) | Tsugumi | in dev |
10+
| [3.88.2](changelog/3.88.2/CHANGELOG-v3.88.2.md) | Minami | 13th February 2025 |
1011
| [3.88.1](changelog/3.88.1/CHANGELOG-v3.88.1.md) | Minami | 12th February 2025 |
1112
| [3.88](changelog/3.88/CHANGELOG-v3.88.md) | Minami | 11th February 2025 |
1213
| [3.87](changelog/3.87/CHANGELOG-v3.87.md) | Hanabi | 14th November 2024 |

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ npm install phaser
5757
[Phaser is on jsDelivr](https://www.jsdelivr.com/package/npm/phaser) which is a "super-fast CDN for developers". Include _either_ of the following in your html:
5858

5959
```html
60-
<script src="//cdn.jsdelivr.net/npm/[email protected].1/dist/phaser.js"></script>
61-
<script src="//cdn.jsdelivr.net/npm/[email protected].1/dist/phaser.min.js"></script>
60+
<script src="//cdn.jsdelivr.net/npm/[email protected].2/dist/phaser.js"></script>
61+
<script src="//cdn.jsdelivr.net/npm/[email protected].2/dist/phaser.min.js"></script>
6262
```
6363

6464
It is also available from Cloudflare's [cdnjs](https://cdnjs.com/libraries/phaser):
6565

6666
```html
67-
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.1/phaser.js"></script>
68-
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.1/phaser.min.js"></script>
67+
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.2/phaser.js"></script>
68+
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.88.2/phaser.min.js"></script>
6969
```
7070

7171
## Phaser TypeScript Definitions

changelog/3.88.2/CHANGELOG-v3.88.2.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Version 3.88.2 - Minami - 13th February 2025
2+
3+
## Bug Fixes
4+
5+
* Reverted an incorrect change made to the Scale Manager that prevented the `autoCenter: Phaser.Scale.CENTER_BOTH` from working.

changelog/3.88/CHANGELOG-v3.88.md

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
* Creating new `GameObjects.DOMElement` sets the GameObject's `displayWidth` and `displayHeight` using its `scaleX` and `scaleY` values instead of the DOM elements `getBoundingClientRect()` values. Fix #6871 (thanks @HawkenKing)
4545
* Setting scale `mode` to `Phaser.Scale.FIT` and `autoCenter` to `Phaser.Scale.CENTER_BOTH` correctly centres canvas on iOS devices. Fix #6862 (thanks @HawkenKing)
4646
* On hex maps, creating a blank layer with the `Tilemaps.Tilemap.createBlankLayer` method now correctly sets the `hexSideLength` as loaded from the hex tilemap. Fix #6074 (thanks @wwoods)
47-
* The `Input.InputPlugin.processDragUpEvent` now correctly returns `x` and `y` coordinates in world space.
4847
* `Animations.AnimationState.play` method now prioritises the `frameRate` property when it is set in the `PlayAnimationConfig` object over animation data loaded from an external file.
4948
* Fixed an issue where sounds / music would stop playing in iOS 17.5.1+ or iOS18+ after losing/gaining focus in Safari. The Web Audio Sound Manager will now listen for the 'visible' event and suspend and resume the context as a result. Fix #6829 (thanks @JanAmbrozic @condeagustin)
5049
* The `Layer` Game Object method `setToTop` would throw an exception: `getDisplayList is not a function`. This method has now been added to the Game Object. Fix #7014 (thanks @leha-games @rexrainbow)

dist/phaser-arcade-physics.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -15663,7 +15663,7 @@ var CONST = {
1566315663
* @type {string}
1566415664
* @since 3.0.0
1566515665
*/
15666-
VERSION: '3.88.1',
15666+
VERSION: '3.88.2',
1566715667

1566815668
/**
1566915669
* Phaser Release Version as displayed in the console.log header URL.
@@ -177399,9 +177399,6 @@ var ScaleManager = new Class({
177399177399

177400177400
var bounds = canvas.getBoundingClientRect();
177401177401

177402-
// var width = parseInt(canvas.style.width, 10) || canvas.width;
177403-
// var height = parseInt(canvas.style.height, 10) || canvas.height;
177404-
177405177402
var width = bounds.width;
177406177403
var height = bounds.height;
177407177404

@@ -177416,11 +177413,6 @@ var ScaleManager = new Class({
177416177413
{
177417177414
offsetX = 0;
177418177415
}
177419-
else
177420-
{
177421-
offsetX = 0;
177422-
offsetY = 0;
177423-
}
177424177416

177425177417
style.marginLeft = offsetX + 'px';
177426177418
style.marginTop = offsetY + 'px';

dist/phaser-arcade-physics.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/phaser-ie9.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -15663,7 +15663,7 @@ var CONST = {
1566315663
* @type {string}
1566415664
* @since 3.0.0
1566515665
*/
15666-
VERSION: '3.88.1',
15666+
VERSION: '3.88.2',
1566715667

1566815668
/**
1566915669
* Phaser Release Version as displayed in the console.log header URL.
@@ -195939,9 +195939,6 @@ var ScaleManager = new Class({
195939195939

195940195940
var bounds = canvas.getBoundingClientRect();
195941195941

195942-
// var width = parseInt(canvas.style.width, 10) || canvas.width;
195943-
// var height = parseInt(canvas.style.height, 10) || canvas.height;
195944-
195945195942
var width = bounds.width;
195946195943
var height = bounds.height;
195947195944

@@ -195956,11 +195953,6 @@ var ScaleManager = new Class({
195956195953
{
195957195954
offsetX = 0;
195958195955
}
195959-
else
195960-
{
195961-
offsetX = 0;
195962-
offsetY = 0;
195963-
}
195964195956

195965195957
style.marginLeft = offsetX + 'px';
195966195958
style.marginTop = offsetY + 'px';

dist/phaser-ie9.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/phaser.esm.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -15651,7 +15651,7 @@ var CONST = {
1565115651
* @type {string}
1565215652
* @since 3.0.0
1565315653
*/
15654-
VERSION: '3.88.1',
15654+
VERSION: '3.88.2',
1565515655

1565615656
/**
1565715657
* Phaser Release Version as displayed in the console.log header URL.
@@ -195389,9 +195389,6 @@ var ScaleManager = new Class({
195389195389

195390195390
var bounds = canvas.getBoundingClientRect();
195391195391

195392-
// var width = parseInt(canvas.style.width, 10) || canvas.width;
195393-
// var height = parseInt(canvas.style.height, 10) || canvas.height;
195394-
195395195392
var width = bounds.width;
195396195393
var height = bounds.height;
195397195394

@@ -195406,11 +195403,6 @@ var ScaleManager = new Class({
195406195403
{
195407195404
offsetX = 0;
195408195405
}
195409-
else
195410-
{
195411-
offsetX = 0;
195412-
offsetY = 0;
195413-
}
195414195406

195415195407
style.marginLeft = offsetX + 'px';
195416195408
style.marginTop = offsetY + 'px';

dist/phaser.esm.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/phaser.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -15663,7 +15663,7 @@ var CONST = {
1566315663
* @type {string}
1566415664
* @since 3.0.0
1566515665
*/
15666-
VERSION: '3.88.1',
15666+
VERSION: '3.88.2',
1566715667

1566815668
/**
1566915669
* Phaser Release Version as displayed in the console.log header URL.
@@ -195497,9 +195497,6 @@ var ScaleManager = new Class({
195497195497

195498195498
var bounds = canvas.getBoundingClientRect();
195499195499

195500-
// var width = parseInt(canvas.style.width, 10) || canvas.width;
195501-
// var height = parseInt(canvas.style.height, 10) || canvas.height;
195502-
195503195500
var width = bounds.width;
195504195501
var height = bounds.height;
195505195502

@@ -195514,11 +195511,6 @@ var ScaleManager = new Class({
195514195511
{
195515195512
offsetX = 0;
195516195513
}
195517-
else
195518-
{
195519-
offsetX = 0;
195520-
offsetY = 0;
195521-
}
195522195514

195523195515
style.marginLeft = offsetX + 'px';
195524195516
style.marginTop = offsetY + 'px';

dist/phaser.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "phaser",
3-
"version": "3.89",
4-
"release": "Tsugumi",
3+
"version": "3.88.2",
4+
"release": "Minami",
55
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.",
66
"author": "Richard Davey <[email protected]> (https://www.phaser.io)",
77
"homepage": "https://phaser.io",

src/const.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var CONST = {
2020
* @type {string}
2121
* @since 3.0.0
2222
*/
23-
VERSION: '3.89.0',
23+
VERSION: '3.88.2',
2424

2525
/**
2626
* Phaser Release Version as displayed in the console.log header URL.
@@ -30,7 +30,7 @@ var CONST = {
3030
* @type {string}
3131
* @since 3.87.0
3232
*/
33-
LOG_VERSION: 'v389',
33+
LOG_VERSION: 'v388',
3434

3535
BlendModes: require('./renderer/BlendModes'),
3636

0 commit comments

Comments
 (0)