Skip to content

Commit eac02ad

Browse files
committed
Bump the versions
1 parent 26e2e67 commit eac02ad

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ dependencies {
2525
repositories {
2626
mavenCentral()
2727
}
28-
compile 'com.sothree.slidinguppanel:library:3.1.1'
28+
compile 'com.sothree.slidinguppanel:library:3.2.0'
2929
}
3030
```
3131

32-
### Usage
32+
### Usage
3333

3434
* Include `com.sothree.slidinguppanel.SlidingUpPanelLayout` as the root element in your activity layout.
3535
* The layout must have `gravity` set to either `top` or `bottom`.
3636
* Make sure that it has two children. The first child is your main layout. The second child is your layout for the sliding up panel.
3737
* The main layout should have the width and the height set to `match_parent`.
3838
* The sliding layout should have the width set to `match_parent` and the height set to either `match_parent`, `wrap_content` or the max desireable height.
39-
* By default, the whole panel will act as a drag region and will intercept clicks and drag events. You can restrict the drag area to a specific view by using the `setDragView` method or `umanoDragView` attribute.
39+
* By default, the whole panel will act as a drag region and will intercept clicks and drag events. You can restrict the drag area to a specific view by using the `setDragView` method or `umanoDragView` attribute.
4040

4141
For more information, please refer to the sample code.
4242

@@ -83,7 +83,7 @@ or `?attr/actionBarSize` to support older API versions.
8383
* Use `setTouchEnabled(false)` to disables panel's touch responsiveness (drag and click), you can still control the panel programatically
8484
* Use `getPanelState` to get the current panel state
8585
* Use `setPanelState` to set the current panel state
86-
* You can add paralax to the main view by setting `umanoParalaxOffset` attribute (see demo for the example).
86+
* You can add parallax to the main view by setting `umanoParallaxOffset` attribute (see demo for the example).
8787
* You can set a anchor point in the middle of the screen using `setAnchorPoint` to allow an intermediate expanded state for the panel (similar to Google Maps).
8888
* You can set a `PanelSlideListener` to monitor events about sliding panes.
8989
* You can also make the panel slide from the top by changing the `layout_gravity` attribute of the layout to `top`.
@@ -112,6 +112,9 @@ If you have an awesome pull request, send it over!
112112

113113
### Changelog
114114

115+
* 3.2.0
116+
* Rename `umanoParalaxOffset` to `umanoParallaxOffset`
117+
* RecyclerView support.
115118
* 3.1.0
116119
* Added `umanoScrollableView` to supported nested scrolling in children (only ScrollView and ListView are supported for now)
117120
* 3.0.0

demo/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.sothree.slidinguppanel.demo"
4-
android:versionCode="12"
5-
android:versionName="3.1.1">
4+
android:versionCode="13"
5+
android:versionName="3.2.0">
66

77
<uses-sdk
88
android:minSdkVersion="11"

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=3.1.1
2-
VERSION_CODE=12
1+
VERSION_NAME=3.2.0
2+
VERSION_CODE=13
33
GROUP=com.sothree.slidinguppanel
44

55
POM_DESCRIPTION=Android Sliding Up Panel Library

library/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.sothree.slidinguppanel.library"
4-
android:versionCode="12"
5-
android:versionName="3.1.1">
4+
android:versionCode="13"
5+
android:versionName="3.2.0">
66

77
<uses-sdk
88
android:minSdkVersion="8" />

0 commit comments

Comments
 (0)