Skip to content

Commit 76c0913

Browse files
committed
Setting up for 2.0.3 development.
1 parent 5b73bb2 commit 76c0913

4 files changed

Lines changed: 13 additions & 25 deletions

File tree

README.md

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
![Phaser 2.0](http://www.phaser.io/images/phaser2-github.png)
22

3-
Phaser 2.0.2
3+
Phaser 2.0.3
44
============
55

66
Phaser is a fast, free and fun open source game framework for making desktop and mobile browser HTML5 games. It uses [Pixi.js](https://github.com/GoodBoyDigital/pixi.js/) internally for fast 2D Canvas and WebGL rendering.
77

8-
Version: 2.0.2 "Ghealdan" - Released: 28th March 2014
8+
Version: 2.0.3 "Allorallen" - Released: -in development-
99

1010
By Richard Davey, [Photon Storm](http://www.photonstorm.com)
1111

@@ -22,12 +22,9 @@ By Richard Davey, [Photon Storm](http://www.photonstorm.com)
2222
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/photonstorm/phaser/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
2323

2424

25-
What's new in 2.0.2?
25+
What's new in 2.0.3?
2626
--------------------
2727

28-
The great thing about running an open source project are all the awesome contributions from the community, and this release reflects that. Aside from a raft of small but important ArcadePhysics fixes we've also had the entirely library jshinted and tidied up by xtian. We have had jshint configs in place for a while now, but he's forced us to make them part of the build process and helped tidy-up a number of things that had crept in.
29-
30-
We've also updated the included tutorial (and the web version) so it's now fully compatible with Phaser 2 and re-published and updated all of the API documentation, which you'll find in the docs folder in this release.
3128

3229

3330
Welcome to Phaser
@@ -61,32 +58,23 @@ There is also an [un-official Getting Started Guide](http://www.antonoffplus.com
6158
Change Log
6259
----------
6360

64-
Version 2.0.2 - "Ghealdan" - 28th March 2014
61+
Version 2.0.3 - "Allorallen" - -in development-
6562

6663
Bug Fixes
6764

68-
* Sprite would glitch if it had an ArcadePhysics Body that was re-positioned out of loop.
69-
* Sprite would "fly off" if it had an ArcadePhysics Body that was re-positioned during an input handler.
70-
* Tween.generateData would enter an eternal loop if the total resulted in a float. Now wrapped in Math.floor.
71-
* ArcadePhysics.Body preUpdate has been modified to stop Sprites with non-1 scaling from gaining delta and moving off the screen (fix #644).
72-
* ArcadePhysics.Body deltaMaxY wasn't being correctly applied.
73-
* P2.World - Removing tilemap layer retrieval for object layers in convertCollisionObjects() (thanks bmceldowney, fix #653)
74-
* Calling Keyboard.stop() wouldn't let you call Keyboard.start() later on in the same game
7565

7666

7767
Updated
7868

79-
* The "Build your First Phaser Game" Tutorial has been updated for Phaser 2
80-
* Line.fromSprite now sets "fromCenter" to false by default as Sprite.center is deprecated in 2.x. Documentation and Examples updated to reflect this.
81-
* All the documentation has been re-published for 2.0.2.
82-
* Lots of ArcadePhysics.World methods have been marked as private where they shouldn't be called directly (separateX, etc)
83-
* xtian jshint fixed nearly every single file in the repository!
8469

8570

8671
New Features
8772

88-
* Sprite.overlap lets you quickly check to see if the bounds of two display objects are intersecting or not, without having to use a physics system.
89-
* Keyboard.destroy will now clear all event listeners and any custom set callbacks or Keys.
73+
74+
ToDo
75+
76+
* Split P2 world bounds into different bodies to help the broad phase.
77+
9078

9179

9280
There is an extensive [Migration Guide](https://github.com/photonstorm/phaser/blob/master/resources/Migration%20Guide.md) available for those converting from Phaser 1.x to 2.x. In the guide we detail the API breaking changes and approach to our new physics system.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phaser",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"homepage": "http://phaser.io",
55
"authors": [
66
"photonstorm <rich@photonstorm.com>"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Phaser",
3-
"version": "2.0.2",
4-
"release": "Ghealdan",
3+
"version": "2.0.3",
4+
"release": "Allorallen",
55
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.",
66
"author": "Richard Davey",
77
"logo": "https://raw.github.com/photonstorm/phaser/master/phaser-logo-small.png",

src/Phaser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
var Phaser = Phaser || {
1212

1313
VERSION: '<%= version %>',
14-
DEV_VERSION: '2.0.2',
14+
DEV_VERSION: '2.0.3',
1515
GAMES: [],
1616

1717
AUTO: 0,

0 commit comments

Comments
 (0)