Skip to content

Commit

Permalink
Merge pull request #628 from photonstorm/release/v2.12.1
Browse files Browse the repository at this point in the history
Phaser CE Version 2.12.1
  • Loading branch information
photonstorm committed May 7, 2019
2 parents 84b619f + a09bc73 commit d17d49b
Show file tree
Hide file tree
Showing 226 changed files with 8,830 additions and 8,496 deletions.
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# Change Log

## Unreleased
## Version 2.12.1 - 6 May 2019

### New Features

* MSPointer#pointerOutCallback and MSPointer#stopOnGameOut. MSPointer's behavior has been controlled by Mouse#mouseOutCallback and Mouse#stopOnGameOut but in v2.13.0 it will use only the new properties, MSPointer#pointerOutCallback and MSPointer#stopOnGameOut. If you're using Mouse#mouseOutCallback or Mouse#stopOnGameOut you should set the corresponding properties on MSPointer as well. (The input handlers are in `game.input.mouse` and `game.input.mspointer`.)
* ScaleManager#startFullScreen has an `options` argument.
* [ScaleManager#startFullScreen](https://photonstorm.github.io/phaser-ce/Phaser.ScaleManager.html#startFullScreen) has an `options` argument.

### Bug Fixes

* Fixed undefined value in Phaser.BitmapData#smoothed.
* Fixed undefined value in [BitmapData#smoothed](https://photonstorm.github.io/phaser-ce/Phaser.BitmapData.html#smoothed).
* Better tracking of pointer out events (#624).
* Fixed alpha for different Creature regions (#625).

Expand All @@ -21,7 +20,7 @@

### Thanks

@daniel-nth, @highlyinteractive, @mikeks, @ndee85, @samme, @thomasMeynckens
@daniel-nth, @highlyinteractive, @mikeks, @ndee85, @photonstorm, @samme, @thomasMeynckens

## Version 2.12.0 - 6 February 2019

Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = function (grunt) {

grunt.registerTask('default', ['build']);

grunt.registerTask('docs', ['clean:docs', 'clean:out', 'gitclone:plugins', 'jsdoc:html', 'replace:docs', 'clean:out']);
grunt.registerTask('docs', ['clean:docs', 'clean:out', 'gitclone:plugins', 'jsdoc:html', 'clean:out']);
grunt.registerTask('tsdocs', ['ts:defs', 'clean:out', 'gitclone:plugins', 'jsdoc:json', 'buildtsdoc:pixi', 'buildtsdoc:phaser', 'replace:phasertsdefheader']);

grunt.registerTask('custom', 'Build a custom version of Phaser', function () {
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Phaser CE is a fast, free, and fun open source HTML5 game framework. It uses a c

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.

The [current Phaser CE release is 2.12.0](https://github.com/photonstorm/phaser-ce/releases/tag/v2.12.0).
The [current Phaser CE release is 2.12.1](https://github.com/photonstorm/phaser-ce/releases/tag/v2.12.1).

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

```html
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.12.0/build/phaser.js"></script>
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.12.1/build/phaser.js"></script>
```

or the minified version:

```html
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.12.0"></script>
<script src="//cdn.jsdelivr.net/npm/phaser-ce@2.12.1"></script>
```

[Custom builds](https://cdn.jsdelivr.net/npm/phaser-ce@2.12.0/build/custom/) are available too.
[Custom builds](https://cdn.jsdelivr.net/npm/phaser-ce@2.12.1/build/custom/) are available too.

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

Expand Down Expand Up @@ -312,10 +312,10 @@ All rights reserved.

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

[get-js]: https://github.com/photonstorm/phaser-ce/releases/download/v2.12.0/phaser.js
[get-minjs]: https://github.com/photonstorm/phaser-ce/releases/download/v2.12.0/phaser.min.js
[get-zip]: https://github.com/photonstorm/phaser-ce/archive/v2.12.0.zip
[get-tgz]: https://github.com/photonstorm/phaser-ce/archive/v2.12.0.tar.gz
[get-js]: https://github.com/photonstorm/phaser-ce/releases/download/v2.12.1/phaser.js
[get-minjs]: https://github.com/photonstorm/phaser-ce/releases/download/v2.12.1/phaser.min.js
[get-zip]: https://github.com/photonstorm/phaser-ce/archive/v2.12.1.zip
[get-tgz]: https://github.com/photonstorm/phaser-ce/archive/v2.12.1.tar.gz
[clone-http]: https://github.com/photonstorm/phaser.git
[clone-ssh]: ssh://git@github.com:photonstorm/phaser.git
[clone-svn]: https://github.com/photonstorm/phaser
Expand Down
2 changes: 1 addition & 1 deletion build/custom/creature.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/custom/p2.min.js

Large diffs are not rendered by default.

0 comments on commit d17d49b

Please sign in to comment.