Rx.Widgets v1.1.0 Release Notes

Release Date: 2016-11-19 // over 7 years ago
  • โž• Additions

    • โž• Adding ListViewCard and related layouts.

    ๐Ÿ›  Fixes

    • Replaced our List<Subscription> with a CompositeSubscription. 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 in onResume(). 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 becomes app:rxw_itemsPerRow.
    • ๐Ÿ“‡ Renamed method setmData() to setData() in ExpandableButtonGroup.

Previous changes from v1.0.1

  • ๐Ÿš€ 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. Your Action should remain the same.