Skip to content

Commit 86f059a

Browse files
authored
Merge pull request #533 from photonstorm/release/v2.8.4
Phaser CE Version 2.10.4
2 parents 0bda2f0 + bc61e33 commit 86f059a

File tree

222 files changed

+10243
-8962
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

222 files changed

+10243
-8962
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,43 @@
44

55
See [README: Change Log: Unreleased](README.md#unreleased).
66

7+
## Version 2.10.4 - 3rd May 2018
8+
9+
### New Features
10+
11+
* Phaser.Text#testString is the character string used to calculate the text's width and height.
12+
* Ellipse#centerX
13+
* Ellipse#centerY
14+
15+
### Updates
16+
17+
* Callbacks added with Phaser.Input#addMoveCallback receive an `event` parameter.
18+
19+
### Bug Fixes
20+
21+
* Fixed a bogus warning when selecting tilemap layer 0 (#511).
22+
* Fixed wrong position in Ellipse#random (#522).
23+
* Fixed an Animation skipping the final frame in low-FPS situations (#524).
24+
* Fixed wrong ellipse position in Debug#geom (#526).
25+
* Fixed `forceType` failing to override some geometry types in Debug#geom.
26+
* Fixed unnecessary text updates when using Text#setText with `immediate=true` (#525).
27+
* Fixed issues restarting a Sound in Firefox (#530).
28+
* Fixed an IndexSizeError in Edge/Firefox when a very small texture crop rectangle is used (#532).
29+
30+
### TypeScript definitions
31+
32+
* Corrected definitions for ContactMaterial#frictionStiffness, Convex (#513).
33+
34+
### Documentation
35+
36+
* Fixed typos (#517, #521).
37+
* The Tilemap methods fill, random, replace, shuffle, and swap modify the tile index only (#484).
38+
* The special GameConfig.transparent value 'notMultiplied' disables the WebGL context attribute `premultipliedAlpha`.
39+
40+
### Thanks
41+
42+
@budda, @Hagisus, @HaoboZ, @hardylr, @intersrc, @jamesjsewell, @josalmi, @joshlory, @melissaelopez, @mickeyren, @photonstorm, @samme, @tobspr
43+
744
## Version 2.10.3 - 21st March 2018
845

946
### Bug Fixes

README.md

+9-19
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Thousands of developers worldwide use Phaser. From indies and multi-national dig
88

99
Phaser v2 was built and maintained by [Photon Storm](http://www.photonstorm.com) and turned over to the community (as Phaser CE) in November 2016. [Phaser v3](http://phaser.io/phaser3) is in active development.
1010

11-
The [current Phaser CE release is 2.10.3](https://github.com/photonstorm/phaser-ce/releases/tag/v2.10.3).
11+
The [current Phaser CE release is 2.10.4](https://github.com/photonstorm/phaser-ce/releases/tag/v2.10.4).
1212

1313
- **Visit:** The [Phaser website](http://phaser.io) and follow on [Twitter](https://twitter.com/photonstorm) (#[phaserjs](https://twitter.com/hashtag/phaserjs))
1414
- **Learn:** [API Docs](https://photonstorm.github.io/phaser-ce/), [Support Forum][forum] and [StackOverflow](https://stackoverflow.com/questions/tagged/phaser-framework)
@@ -128,16 +128,16 @@ Please see additional steps for [Browserify/CommonJS](#browserify) and [Webpack]
128128
[Phaser CE is on jsDelivr](http://www.jsdelivr.com/projects/phaser-ce), a "super-fast CDN for developers". Include the following in your html:
129129

130130
```html
131-
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.10.3/build/phaser.js"></script>
131+
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.10.4/build/phaser.js"></script>
132132
```
133133

134134
or the minified version:
135135

136136
```html
137-
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.10.3"></script>
137+
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.10.4"></script>
138138
```
139139

140-
[Custom builds](https://cdn.jsdelivr.net/npm/phaser-ce@2.10.3/build/custom/) are available too.
140+
[Custom builds](https://cdn.jsdelivr.net/npm/phaser-ce@2.10.4/build/custom/) are available too.
141141

142142
<a name="getting-started"></a>
143143

@@ -328,7 +328,7 @@ Written something cool in Phaser? Please tell us about it in the [forum][forum],
328328

329329
# Change Log
330330

331-
## Unreleased
331+
## Version 2.10.4 - 3rd May 2018
332332

333333
### New Features
334334

@@ -365,16 +365,6 @@ Written something cool in Phaser? Please tell us about it in the [forum][forum],
365365

366366
@budda, @Hagisus, @HaoboZ, @hardylr, @intersrc, @jamesjsewell, @josalmi, @joshlory, @melissaelopez, @mickeyren, @photonstorm, @samme, @tobspr
367367

368-
## Version 2.10.3 - 21st March 2018
369-
370-
### Bug Fixes
371-
372-
* Fixed an error when activating a Cocoon application (#506).
373-
374-
### Thanks
375-
376-
@KIVassilev, @photonstorm, @samme
377-
378368
For changes in previous releases please see the extensive [Change Log](https://github.com/photonstorm/phaser-ce/blob/master/CHANGELOG.md).
379369

380370
# License
@@ -397,10 +387,10 @@ All rights reserved.
397387

398388
[![Analytics](https://ga-beacon.appspot.com/UA-44006568-2/phaser/index)](https://github.com/igrigorik/ga-beacon)
399389

400-
[get-js]: https://github.com/photonstorm/phaser-ce/releases/download/v2.10.3/phaser.js
401-
[get-minjs]: https://github.com/photonstorm/phaser-ce/releases/download/v2.10.3/phaser.min.js
402-
[get-zip]: https://github.com/photonstorm/phaser-ce/archive/v2.10.3.zip
403-
[get-tgz]: https://github.com/photonstorm/phaser-ce/archive/v2.10.3.tar.gz
390+
[get-js]: https://github.com/photonstorm/phaser-ce/releases/download/v2.10.4/phaser.js
391+
[get-minjs]: https://github.com/photonstorm/phaser-ce/releases/download/v2.10.4/phaser.min.js
392+
[get-zip]: https://github.com/photonstorm/phaser-ce/archive/v2.10.4.zip
393+
[get-tgz]: https://github.com/photonstorm/phaser-ce/archive/v2.10.4.tar.gz
404394
[clone-http]: https://github.com/photonstorm/phaser.git
405395
[clone-ssh]: ssh://git@github.com:photonstorm/phaser.git
406396
[clone-svn]: https://github.com/photonstorm/phaser

build/custom/creature.min.js

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

build/custom/p2.min.js

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

0 commit comments

Comments
 (0)