Skip to content

Commit

Permalink
Prepare for release v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saket committed Apr 1, 2021
1 parent 73ca938 commit 90a5cea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
`InboxRecyclerView` is a library for building expandable descendant navigation inspired by [Google Inbox](http://androidniceties.tumblr.com/post/100872004063/inbox-by-gmail-google-play-link) and [Reply](https://material.io/design/material-studies/reply.html), and is an easy drop-in into existing projects. You can take a look at the [sample app](https://github.com/saket/InboxRecyclerView/tree/master/sample) for best practices or [download its APK](https://github.com/saket/InboxRecyclerView/releases) for trying it out on your phone. If you're interested in learning how it was created, [here's an in-depth blog post](https://saket.me/inbox-recyclerview).

```groovy
implementation 'me.saket:inboxrecyclerview:2.3.0'
implementation 'me.saket:inboxrecyclerview:3.0.0'
```

### Usage
Expand Down Expand Up @@ -37,6 +37,7 @@ recyclerView.apply {

expandablePage = findViewById(...).also {
it.pushParentToolbarOnExpand(toolbar)
it.addOnPullListener(PageCollapseEligibilityHapticFeedback(it))
}
}

Expand All @@ -52,6 +53,7 @@ recyclerViewAdapter.onItemClick = { clickedItem ->
- [control the pull-to-collapse gesture?](docs/pull_to_collapse.md)
- [change background dimming?](docs/background_dim.md)
- [listen to state changes?](docs/page_callbacks.md)
- [expand items without using `Long` based adapter IDs?](https://github.com/saket/InboxRecyclerView/wiki/Custom-expansion-keys)

### Pull collapsible activities

Expand Down
2 changes: 1 addition & 1 deletion inboxrecyclerview/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=2.4.0-SNAPSHOT
VERSION_NAME=3.0.0
GROUP=me.saket

POM_ARTIFACT_ID=inboxrecyclerview
Expand Down

0 comments on commit 90a5cea

Please sign in to comment.