Skip to content

Commit 119783d

Browse files
committed
v1.4.2
1 parent af46232 commit 119783d

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
4+
### v1.4.2
5+
6+
* `finishAfterTransition` on activities, instead of `finish`
7+
38
### v1.4.1
49

510
* Update dependencies
@@ -51,4 +56,4 @@
5156
* Works with `RecyclerView` and normal `Activity` layouts
5257
* Custom color support
5358
* Theme support (light, dark, and day/night)
54-
* Hide the toolbar
59+
* Hide the toolbar

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To include it in your project, add this to your module's `build.gradle` file:
1919
```groovy
2020
dependencies {
2121
...
22-
compile 'com.klinkerapps:drag-dismiss-activity:1.4.1'
22+
compile 'com.klinkerapps:drag-dismiss-activity:1.4.2'
2323
}
2424
```
2525

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

43-
// do your normal view setup and Activity#onCreate lifecycle actions here,
43+
// do your normal view setup and Activity#onCreate lifecycle actions here,
4444
// instead of within the Activity#onCreate.
45-
45+
4646
return v;
4747
}
4848
```
@@ -64,7 +64,7 @@ If you are using an `Activity` that just has a `RecyclerView` in it, then this l
6464
protected void setupRecyclerView(RecyclerView recyclerView) {
6565
recyclerView.setLayoutManager(new LinearLayoutManager(this));
6666
recyclerView.setAdapter(new SampleAdapter());
67-
67+
6868
// do any other RecyclerView or Activity setup that needs to be done
6969
}
7070
```

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
#
1616

17-
GRADLE_PLUGIN_VERSION=3.0.0-alpha3
17+
GRADLE_PLUGIN_VERSION=2.3.1
1818
BUILD_TOOLS_VERSION=25.0.2
1919

2020
ANDROID_SUPPORT_VERSION=26.0.0-beta2
@@ -23,7 +23,7 @@ MIN_SDK=15
2323
TARGET_SDK=26
2424
COMPILE_SDK=26
2525

26-
VERSION_NAME=1.4.1
26+
VERSION_NAME=1.4.2
2727
VERSION_CODE=1
2828
GROUP=com.klinkerapps
2929

0 commit comments

Comments
 (0)