diff options
-rw-r--r-- | docs/Changelog.md | 4 | ||||
-rw-r--r-- | sample/src/main/res/xml/kau_changelog.xml | 6 | ||||
-rw-r--r-- | searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md index accaa0c..0f3a8e5 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -4,6 +4,10 @@ * :imagepicker: Add uri val to ImageModel * :imagepicker: Create bindings and overlay activity * Add showcase app to play store +* Update dependencies +* Update build tools to 26.0.1 +* :adapter: Make KauAnimator extensible +* :imagepicker: Create single image picker counterpart with overlay ## v3.1.0 * :core: Allow for nullable throwables when logging diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml index 7ed2073..14f6c2c 100644 --- a/sample/src/main/res/xml/kau_changelog.xml +++ b/sample/src/main/res/xml/kau_changelog.xml @@ -10,8 +10,10 @@ <item text=":imagepicker: Add uri val to ImageModel" /> <item text=":imagepicker: Create bindings and overlay activity" /> <item text="Add showcase app to play store" /> - <item text="" /> - <item text="" /> + <item text="Update dependencies" /> + <item text="Update build tools to 26.0.1" /> + <item text=":adapter: Make KauAnimator extensible" /> + <item text=":imagepicker: Create single image picker counterpart with overlay" /> <item text="" /> <item text="" /> diff --git a/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt b/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt index 0399883..30e224e 100644 --- a/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt +++ b/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt @@ -246,7 +246,7 @@ class SearchView @JvmOverloads constructor( } }) adapter = this@SearchView.adapter - itemAnimator = NoAnimator() + itemAnimator = null } with(adapter) { withSelectable(true) |