Skip to content

Commit ee49575

Browse files
committed
Preparing for master.
1 parent d8c755a commit ee49575

2 files changed

Lines changed: 13 additions & 6 deletions

File tree

README.md

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

3-
# Phaser 2.0.7-dev
3+
# Phaser 2.0.7
44

55
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.
66

7-
Version: 2.0.7 "Amadicia" - Released: -in development-
7+
Version: 2.0.7 "Amadicia" - Released: 18th July 2014
88

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

@@ -21,9 +21,15 @@ By Richard Davey, [Photon Storm](http://www.photonstorm.com)
2121

2222
![div](http://phaser.io/images/div4.png)
2323

24-
## Welcome to Phaser and What's new in 2.07?
24+
## Welcome to Phaser and What's new in 2.0.7?
2525

26-
Until then happy coding everyone! And we hope to see you on the forums.
26+
We're pleased to announce the release of Phaser 2.0.7. This release comes just a week after 2.0.6 but includes some important fixes. Internally we've updated to Pixi 1.6.1 as lots of the fixes come directly from that upgrade, which in turns restores functionality of things like RenderTextures and Retro Fonts.
27+
28+
There's also a vastly improved SpriteBatch included, which has seen batching speed increases of up to 400% in some cases, which is extremely fun to play with (note: batching is a WebGL feature). Plus we've continued to roll in pull requests from the community and fix issues as quickly as we can. You'll notice a number of input related updates in this release, tidying up the handling of Priority IDs and optimising when pixel perfect checks are run. So if you now use a combination of IDs and pixel perfect checks you can easily speed-up the input loop dramatically.
29+
30+
Again thanks to everyone who helped work on this release. The community for reporting issues and pull requests, the team at Goodboy for responding to major Pixi issues quickly and the team here for rolling out another important upgrade.
31+
32+
Hopefully we can now focus on the 2.1 release and enjoying some of this warm weather outside :) But until then happy coding everyone! And we hope to see you on the forums.
2733

2834
![boogie](http://www.phaser.io/images/spacedancer.gif)
2935

@@ -45,7 +51,7 @@ Finally the list of [community authored Phaser Tutorials](http://www.lessmilk.co
4551

4652
## Change Log
4753

48-
Version 2.0.7 - "Amadicia" - -in development-
54+
Version 2.0.7 - "Amadicia" - 18th July 2014
4955

5056
### Updates
5157

@@ -59,6 +65,7 @@ Version 2.0.7 - "Amadicia" - -in development-
5965
* An editorconfig has been added to the core repo. See http://editorconfig.org (thanks @codevinksy #1027)
6066
* Keyboard.processKeyPress now checks if the Keyboard Input handler is disabled or not before processing the key callbacks.
6167
* Physics.bounds now correctly matches World.bounds on system start (thanks @Dumtard #1028)
68+
* Game._codePaused is now set if the Game is manually paused. See discussion: http://www.html5gamedevs.com/topic/6719-codepaused-property/ (thanks @devinb83 #1017)
6269

6370
### New Features
6471

src/Phaser.js

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

13-
VERSION: '2.0.7-dev',
13+
VERSION: '2.0.7',
1414
GAMES: [],
1515

1616
AUTO: 0,

0 commit comments

Comments
 (0)