All Versions
3
Latest Version
Avg Release Cycle
3 days
Latest Release
2861 days ago
Changelog History
Changelog History
-
v1.1.0 Changes
November 19, 2016โ Additions
- โ Adding
ListViewCard
and related layouts.
๐ Fixes
- Replaced our
List<Subscription>
with aCompositeSubscription
. It does essentially the same thing, but means there's one less thing to worry about managing. - ๐ Moved layout initialization into
onCreate()
in the example. Originally it was inonResume()
. If you don't do this too you'll get duplicated views and potentially crash. A better, longer term fix is forthcoming.
๐ฅ Breaking Changes
- All layout attributes have been prefixed with
rxw_
to avoid conflicts in consuming projects. So, for example,app:itemsPerRow
becomesapp:rxw_itemsPerRow
. - ๐ Renamed method
setmData()
tosetData()
inExpandableButtonGroup
.
- โ Adding
-
v1.0.1 Changes
November 18, 2016๐ This release tries to make observing and subscribing more efficient.
๐ฅ Breaking Changes
- ExpandableButtonGroup now returns a single
itemClicks
observable. There's no need to have individual subscriptions to each item clicked. YourAction
should remain the same.
- ExpandableButtonGroup now returns a single
-
v1.0.0 Changes
November 14, 2016๐ Initial release. Includes:
- ExpandableButtonGroup