This repository has been archived by the owner on May 1, 2020. It is now read-only.
Releases: facebookarchive/rebound
Releases · facebookarchive/rebound
v0.3.8
v0.3.7
- new examples in rebound playground and minor fixes
- properly generating sources and javadoc artifacts for maven
- exposing SpringConfig in SpringChain so that consumers can customize SpringChain tension/friction
- adding Origami POPAnimation value support for SpringConfig
v0.3.6
New APIs for creating cascading spring based animation via AnimationQueue and SpringChain.
API improvements and internal cleanup
- Combine SpringClock with looper
- Add SynchronousLooper for doing synchronous simulation
- Add SteppingLooper for doing step by step simulation
- pull in hamcrest for testing and update tests
- activateSpring on velocity or currentValue changed
- Springs with no tension continue to move when velocity is applied until friction causes them to stop if no end value is set.
- setCurrentValue now performs setAtRest by default with a new method signature added to support the uncommon use case of setting current value without setting at rest
Bug fixes
- More accurate timing from Android SystemClock if available
- Fix ConcurrentModificationException when modifying listeners while iterating
use CopyOnWriteArraySet in SpringSystem for better iteration performance
v0.3.3 bump version to 3.3
Adding Origami value mapper to SpringConfig
Adding a helper for constructing spring config values that match up with the Origami design prototyping tool.
SpringConfiguratorView is now packaged in rebound.jar
SpringConfiguratorView is now built programmatically to remove the dependency on Android resources. This means you can now get the SpringConfiguratorView for live tuning spring constants in your application just by including it in the root of an xml layout.
<com.facebook.rebound.ui.SpringConfiguratorView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
/>
v0.3: Project Restructure
- reorganize around a standard gradle directory structure - create gradle build files - separate Android specific utilities from the physics core to allow use on other java platforms (processing) - create a continuous integration build script for travis CI - move to proper semver versioning. The API for rebound is not fully finalized we should be at version 0.3 - API is unchanged TODO: - maven hosting for build artifacts to allow easy integration
Initial public release
This is the initial public release of Rebound. The version number has been updated to 0.2 per semver to represent the fact that the API for Rebound will likely evolve although the current version has been used extensively in several applications at this point.