Skip to content

Releases: Fueled/reclaim

Reclaim 2.1.1

08 Apr 13:56
8f4761e
Compare
Choose a tag to compare

What's new

  • It's no longer required to override the updateItemViews method when extending AdapterItem.

Reclaim 2.1.0

03 Apr 16:51
Compare
Choose a tag to compare

Breaking Changes

  • ItemsViewAdapter constructor no longer requires a Context object.

Reclaim 2.0.0

12 Mar 12:35
6bf1c28
Compare
Choose a tag to compare

What's new

  • Rewrote the complete library in Kotlin.
  • Started using androidx for dependencies.
  • Renamed BaseItem to AdapterItem.
  • Simplified AdapterItem so it no longer requires data and a handler by default, you can add these as extra parameters if needed.
  • Removed the need to create an item types enum as the unique layout id's can be used as the type instead.
  • The view holder is no longer being stored inside the AdapterItem, if you need to update a specific item after its updateItemViews method has already been called you can call notifyItemChanged(itemPosition) on the adapter.

Reclaim 1.2.2

01 Mar 09:59
6793789
Compare
Choose a tag to compare
Merge pull request #14 from Fueled/feat-all-items

Add method to get all items from adapter

Reclaim 1.2.1

27 Feb 17:08
67b6aea
Compare
Choose a tag to compare

Fix build settings.

Reclaim 1.2.0

27 Feb 16:50
fcadf14
Compare
Choose a tag to compare

Rename ItemHandler to ItemPresenter.

Reclaim 1.1.2

08 Jan 12:28
a638446
Compare
Choose a tag to compare
chore(project): Prep for version 1.1.2

Reclaim 1.1.1

21 Jul 15:02
Compare
Choose a tag to compare

Previously we were relying on onBindViewHolder to be called to update an item position, but there are cases were the item position would change without onBindViewHolder being called especially when using animations. To avoid this, we are now making sure that item positions are updated every time the items list is updated.

Reclaim 1.1.0

20 Jul 20:35
Compare
Choose a tag to compare
  • Implement replaceItems(List) method to avoid having to call clearAllRecyclerItems() and addItemsList(List) when replacing all items inside the ItemsViewAdapter.
  • Add the ability to use the diff check util when replacing a list to only perform required updates.

Reclaim 1.0.2

24 Mar 15:17
Compare
Choose a tag to compare

Fix some typos.