diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e79f7aef1..c27e71da5 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -210,4 +210,13 @@ - Fix to GradientDiffuseMethod to stop material from disappearing when no lights are applied - Get rid of compilation warnings in ViewVolume - Fix for incorrect sorting with blended entities (Closes #605) -- Fix to Loader3D when automatically adding root objects to the scene from an AWD file \ No newline at end of file +- Fix to Loader3D when automatically adding root objects to the scene from an AWD file + +4.1.5 +- Fix to SegmentSet bounds calculations. Closes #610 +- Added support for new ATF format. Closes #615 +- Fix to background image when using a scissorRect. Closes #622 +- Optimisation to MD2 parser. Closes #631 +- Fix to pitch/roll/yaw/rotate for scaled objects. Closes #626 +- Fix on filter method for custom filterFunc. Closes #619 +- Added support for 4096x4096 textures. Closes #647 \ No newline at end of file diff --git a/src/away3d/Away3D.as b/src/away3d/Away3D.as index 9d67a9990..a804a81d9 100644 --- a/src/away3d/Away3D.as +++ b/src/away3d/Away3D.as @@ -11,6 +11,6 @@ package away3d public static const MINOR_VERSION:uint = 1; - public static const REVISION:uint = 4; + public static const REVISION:uint = 5; } }