Skip to content

Commit

Permalink
v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
klinker24 committed Jun 27, 2017
1 parent af46232 commit 119783d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog


### v1.4.2

* `finishAfterTransition` on activities, instead of `finish`

### v1.4.1

* Update dependencies
Expand Down Expand Up @@ -51,4 +56,4 @@
* Works with `RecyclerView` and normal `Activity` layouts
* Custom color support
* Theme support (light, dark, and day/night)
* Hide the toolbar
* Hide the toolbar
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To include it in your project, add this to your module's `build.gradle` file:
```groovy
dependencies {
...
compile 'com.klinkerapps:drag-dismiss-activity:1.4.1'
compile 'com.klinkerapps:drag-dismiss-activity:1.4.2'
}
```

Expand All @@ -40,9 +40,9 @@ This library is meant to replace your `AppCompatActivity`. I will set up all the
protected View onCreateContent(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.activity_scrollable, parent, false);

// do your normal view setup and Activity#onCreate lifecycle actions here,
// do your normal view setup and Activity#onCreate lifecycle actions here,
// instead of within the Activity#onCreate.

return v;
}
```
Expand All @@ -64,7 +64,7 @@ If you are using an `Activity` that just has a `RecyclerView` in it, then this l
protected void setupRecyclerView(RecyclerView recyclerView) {
recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.setAdapter(new SampleAdapter());

// do any other RecyclerView or Activity setup that needs to be done
}
```
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

GRADLE_PLUGIN_VERSION=3.0.0-alpha3
GRADLE_PLUGIN_VERSION=2.3.1
BUILD_TOOLS_VERSION=25.0.2

ANDROID_SUPPORT_VERSION=26.0.0-beta2
Expand All @@ -23,7 +23,7 @@ MIN_SDK=15
TARGET_SDK=26
COMPILE_SDK=26

VERSION_NAME=1.4.1
VERSION_NAME=1.4.2
VERSION_CODE=1
GROUP=com.klinkerapps

Expand Down

0 comments on commit 119783d

Please sign in to comment.