Skip to content

Commit 891369b

Browse files
committed
Preparing for 1.0.6 release, but moving physics changes to dev.
1 parent 5104912 commit 891369b

10 files changed

Lines changed: 798 additions & 287 deletions

File tree

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Phaser 1.0
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: 1.0.5 - Released: September 20th 2013
8+
Version: 1.0.6 - Released: September 24th 2013
99

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

@@ -35,7 +35,16 @@ Phaser is everything we ever wanted from an HTML5 game framework. It will power
3535
Change Log
3636
----------
3737

38-
Version 1.0.6 (in progress)
38+
Version 1.0.7 (in progress in the dev branch)
39+
40+
* Added World.postUpdate - all sprite position changes, as a result of physics, happen here before the render.
41+
* Complete overhaul of Physics.Arcade.Body - now significantly more stable and faster too.
42+
* Updated ArcadePhysics.separateX/Y to use new body system - much better results now.
43+
* QuadTree bug found in 1.0.5 now fixed. The QuadTree is updated properly now using worldTransform values.
44+
* TODO: addMarker hh:mm:ss:ms
45+
* TODO: Direction constants
46+
47+
Version 1.0.6 (September 24th 2013)
3948

4049
* Added check into Pointer.move to always consider a Sprite that has pixelPerfect enabled, regardless of render ID.
4150
* BUG: The pixel perfect click check doesn't work if the sprite is part of a texture atlas yet.
@@ -46,14 +55,10 @@ Version 1.0.6 (in progress)
4655
* New: When loading a Sprite Sheet you can now pass negative values for the frame sizes which specifies the number of rows/columns to load instead (thanks TheJare)
4756
* New: BitmapText now supports anchor and has fixed box dimensions (thanks TheJare)
4857
* Fixed bug where if a State contains an empty Preloader the Update will not be called (thanks TheJare)
49-
* Added World.postUpdate - all sprite position changes, as a result of physics, happen here before the render.
50-
* Complete overhaul of Physics.Arcade.Body - now significantly more stable and faster too.
51-
* Updated ArcadePhysics.separateX/Y to use new body system - much better results now.
52-
* QuadTree bug found in 1.0.5 now fixed. The QuadTree is updated properly now using worldTransform values.
5358
* Several new examples added (cameras, tweens, etc)
54-
* TODO: addMarker hh:mm:ss:ms
55-
* TODO: Direction constants
56-
59+
* Added in extra checks to halt collision if it involves an empty Group (thanks cang)
60+
* Added time smoothing to Animation update to help frames hopefully not get too out of sync during long animations with high frame rates.
61+
* Added frame skip to Animation.update. If it gets too far behind it will now skip frames to try and catch up.
5762

5863
Version 1.0.5 (September 20th 2013)
5964

@@ -213,6 +218,7 @@ The following list is not exhaustive and is subject to change:
213218
* Joypad support.
214219
* Gestures input class.
215220
* Flash CC html output support.
221+
* Game parameters read from Google Docs.
216222

217223
Right now however our main focus is on documentation and examples, we won't be touching any of the above features until the docs are finished.
218224

0 commit comments

Comments
 (0)