OSDN Git Service

Merge pull request #491 from regnarock/master
[mikumikustudio/libgdx-mikumikustudio.git] / CHANGES
1 [0.9.9]
2 - added Bresenham2, for drawing lines on an integer 2D grid
3 - added GridPoint2 and GridPoint3, representing integer points in a 2D or 3D grid
4 - added attribute location caching for VertexData/Mesh. Hand vertex attribs to a ShaderProgram, get back int[], pass that to Mesh
5 - added Android x86 builds, removed libandroidgl20.so, it's now build as part of gdx-core for Android
6 - changed method signature on Box2D World#getBodies and World#getJoints, pass in an Array to fill
7 - removed glGetShaderSource from GL20, use ShaderProgram#getVertexShaderSource/getFragmentShaderSource instead
8 - added reflection api
9 - added AsynchExecutor, execute tasks asynchronously. Used for GWT mainly.
10 - removed FileHandle#file(), has no business in there.
11 - removed box2deditor
12 - removed custom typedarrays in gwt backend
13 - added classpath files support for gwt backend (limited)
14 - moved AndroidWallpaperListener to Android Backend
15 - added new VertexAttribute Usage flags, bone weight, tangent, binormal. previously encoded as Usage.Generic. Also
16   added field "unit" to VertexAttribute, used by texture coordinates and bone weights to specify index/unit.
17 - setup-ui template for iOS disables pngcrush, also updated wiki iOS article
18 - add Pixmap#fillTriangle via jni gdx2d_fill_triangle() to fill a triangle based on its vertices.
19 - add asynchronous download with continuous progress feedback to GWT asset preloader, see https://github.com/libgdx/libgdx/pull/409?w=1
20 - add capability to add/exclude package/classes GWT Reflection system, see https://github.com/libgdx/libgdx/pull/409?w=1
21 - 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
22 - maps API, add new AtlasTiledMapLoader for loading maps produced by the tiled preprocessor tool
23 - ImageProcessor, TexturePacker2 now accepts BufferedImage objects as input
24 - TexturePacker2 now avoids duplicated aliases
25 - Updated to LWJGL 2.9.0
26 - refactored JSON API, see http://www.badlogicgames.com/wordpress/?p=2993
27 - Updated Box2D to the latest trunk. Body#applyXXX methods now take an additional boolean parameter.
28 - TmxMapLoader has a flag in Parameters that lets you specify whether to generate mipmaps
29 - Animation#isAnimationFinished was fixed to behave as per javadocs (ignores looping)
30 - remove GLU interface and implementations. Use Matrix4 et al instead. see http://www.badlogicgames.com/wordpress/?p=2886
31 - new maps API, see http://www.badlogicgames.com/wordpress/?p=2870
32 - removed static public tmp Vector2 instances, manage such temporary vars yourself, see http://www.badlogicgames.com/wordpress/?p=2840
33 - changed Scene2D Group#clear(), see http://www.badlogicgames.com/wordpress/?p=2837
34 - changed the build system, natives are now fetched from the build server, see http://www.badlogicgames.com/wordpress/?p=2821
35 - freetype extension supported on iOS, see http://www.badlogicgames.com/wordpress/?p=2819
36 - changed ShapeRenderer API, see http://www.badlogicgames.com/wordpress/?p=2809
37 - changed Actions.add to addAction, changed parameter order, and added removeAction, addListener, removeListener
38 - Box2d joints now allow for user data
39 - Changes to Intersector, Circle, Rectangle and BoundingBox for consistency in #overlap, #intersect and #contains methods, see https://github.com/libgdx/libgdx/pull/312
40 - Removed LwjglApplicationConfiguration CPU sync. Added foreground and background target framerate.
41 - scene2d, no longer use getters/setters internally for Actor x, y, width, height, scalex, scaley and rotation.
42 - Array, detect nested iterator usage and throw exception.
43 - Added getVolume to Music class and Android, IOS and GWT backends
44 - 1381, fixed JSON parsing of longs. In addition to Float, it now parses Long if no decimal point is found.
45 - Changed Array constructors that took an array to have offset and count
46 - scene2d, Actor parentToLocalCoordinates and localToParentCoordinates refactoring, see http://www.badlogicgames.com/forum/viewtopic.php?p=40441#p40441
47 - 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.
48 - ScrollBar#setForceOverscroll renamed to setForceScroll, as it affects more than just overscroll.
49 - ArrayMap#addAll renamed to putAll to match the other maps.
50 - Added ObjectSet and IntSet.
51 - Added completion listener to Music.
52 - Added Music#setPan.
53 - Sound#play and Sound#loop on Android now return -1 on failure, to match other backends.
54 - DelegateAction subclasses need to implement delegate() instead of act(). http://www.badlogicgames.com/forum/viewtopic.php?p=43576#p43576
55
56 [0.9.8]
57 - see http://www.badlogicgames.com/wordpress/?p=2791
58
59 [0.9.7]
60 - see http://www.badlogicgames.com/wordpress/?p=2664
61
62 [0.9.6]
63 - see http://www.badlogicgames.com/wordpress/?p=2513