OSDN Git Service

Merge pull request #564 from hneuer/pool
[mikumikustudio/libgdx-mikumikustudio.git] / CHANGES
1 [0.9.9]
2 - added RoboVM backend jar and native libs (libObjectAL, libgdx, in ios/ folder of distribution)
3 - added RoboVM backend to build
4 - changed Bullet wrapper API, see http://www.badlogicgames.com/wordpress/?p=3150
5 - changed MusicLoader and SoundLoader to be asynchronous loaders
6 - changed behaviour of Net#sendHttpRequest() so HttpResponseListener#handleHttpResponse() callback is executed in worker thread instead of main thread
7 - added Bresenham2, for drawing lines on an integer 2D grid
8 - added GridPoint2 and GridPoint3, representing integer points in a 2D or 3D grid
9 - added attribute location caching for VertexData/Mesh. Hand vertex attribs to a ShaderProgram, get back int[], pass that to Mesh
10 - added Android x86 builds, removed libandroidgl20.so, it's now build as part of gdx-core for Android
11 - changed method signature on Box2D World#getBodies and World#getJoints, pass in an Array to fill
12 - removed glGetShaderSource from GL20, use ShaderProgram#getVertexShaderSource/getFragmentShaderSource instead
13 - added reflection api
14 - added AsynchExecutor, execute tasks asynchronously. Used for GWT mainly.
15 - removed FileHandle#file(), has no business in there.
16 - removed box2deditor
17 - removed custom typedarrays in gwt backend
18 - added classpath files support for gwt backend (limited)
19 - moved AndroidWallpaperListener to Android Backend
20 - added new VertexAttribute Usage flags, bone weight, tangent, binormal. previously encoded as Usage.Generic. Also
21   added field "unit" to VertexAttribute, used by texture coordinates and bone weights to specify index/unit.
22 - setup-ui template for iOS disables pngcrush, also updated wiki iOS article
23 - add Pixmap#fillTriangle via jni gdx2d_fill_triangle() to fill a triangle based on its vertices.
24 - add asynchronous download with continuous progress feedback to GWT asset preloader, see https://github.com/libgdx/libgdx/pull/409?w=1
25 - add capability to add/exclude package/classes GWT Reflection system, see https://github.com/libgdx/libgdx/pull/409?w=1
26 - add updated gdx-tiled-preprocessor, generate one single TextureAtlas for all the specified Tiled maps, see http://www.badlogicgames.com/forum/viewtopic.php?f=17&t=8911
27 - maps API, add new AtlasTiledMapLoader for loading maps produced by the tiled preprocessor tool
28 - ImageProcessor, TexturePacker2 now accepts BufferedImage objects as input
29 - TexturePacker2 now avoids duplicated aliases
30 - Updated to LWJGL 2.9.0
31 - refactored JSON API, see http://www.badlogicgames.com/wordpress/?p=2993
32 - Updated Box2D to the latest trunk. Body#applyXXX methods now take an additional boolean parameter.
33 - TmxMapLoader has a flag in Parameters that lets you specify whether to generate mipmaps
34 - Animation#isAnimationFinished was fixed to behave as per javadocs (ignores looping)
35 - remove GLU interface and implementations. Use Matrix4 et al instead. see http://www.badlogicgames.com/wordpress/?p=2886
36 - new maps API, see http://www.badlogicgames.com/wordpress/?p=2870
37 - removed static public tmp Vector2 instances, manage such temporary vars yourself, see http://www.badlogicgames.com/wordpress/?p=2840
38 - changed Scene2D Group#clear(), see http://www.badlogicgames.com/wordpress/?p=2837
39 - changed the build system, natives are now fetched from the build server, see http://www.badlogicgames.com/wordpress/?p=2821
40 - freetype extension supported on iOS, see http://www.badlogicgames.com/wordpress/?p=2819
41 - changed ShapeRenderer API, see http://www.badlogicgames.com/wordpress/?p=2809
42 - changed Actions.add to addAction, changed parameter order, and added removeAction, addListener, removeListener
43 - Box2d joints now allow for user data
44 - Changes to Intersector, Circle, Rectangle and BoundingBox for consistency in #overlap, #intersect and #contains methods, see https://github.com/libgdx/libgdx/pull/312
45 - Removed LwjglApplicationConfiguration CPU sync. Added foreground and background target framerate.
46 - scene2d, no longer use getters/setters internally for Actor x, y, width, height, scalex, scaley and rotation.
47 - Array, detect nested iterator usage and throw exception.
48 - Added getVolume to Music class and Android, IOS and GWT backends
49 - 1381, fixed JSON parsing of longs. In addition to Float, it now parses Long if no decimal point is found.
50 - Changed Array constructors that took an array to have offset and count
51 - scene2d, Actor parentToLocalCoordinates and localToParentCoordinates refactoring, see http://www.badlogicgames.com/forum/viewtopic.php?p=40441#p40441
52 - scene2d, Action#setActor no longer calls reset if the Action has no pool. This allows non-pooled actions to be add and removed from actors, restarted, and reused.
53 - ScrollBar#setForceOverscroll renamed to setForceScroll, as it affects more than just overscroll.
54 - ArrayMap#addAll renamed to putAll to match the other maps.
55 - Added ObjectSet and IntSet.
56 - Added completion listener to Music.
57 - Added Music#setPan.
58 - Sound#play and Sound#loop on Android now return -1 on failure, to match other backends.
59 - DelegateAction subclasses need to implement delegate() instead of act(). http://www.badlogicgames.com/forum/viewtopic.php?p=43576#p43576
60 - Added pause and resume methods to Sound.
61 - Changed AssetErrorListener#error to have AssetDescriptor to enable access to parameters of failed asset.
62 - Changed SelectBoxStyle to have ScrollPaneStyle and ListStyle for fully customizing the drop down list. http://www.badlogicgames.com/wordpress/?p=3110
63 - AssetLoader now takes a FileHandle that is the resolved file name. The AssetLoader no longer has to resolve the file name, so we can prevent it from being resolved twice.
64 - Rewrote EarClippingTriangulator to not allocate (no more Vector2s).
65 - Added ParticleEffectLoader to make AssetManager load ParticleEffects
66 - Added GeometryUtils, more Intersector functions, DelaunayTriangulator, ConvexHull.
67 - EarClippingTriangulator changed to return triangle indices.
68 - PolygonSpriteBatch and friends refactored to use triangle indices.
69 - Added add(T, float), remove(int), remove(T) and clear() methods to BinaryHeap
70
71 [0.9.8]
72 - see http://www.badlogicgames.com/wordpress/?p=2791
73
74 [0.9.7]
75 - see http://www.badlogicgames.com/wordpress/?p=2664
76
77 [0.9.6]
78 - see http://www.badlogicgames.com/wordpress/?p=2513