Skip to content

Commit 25976cb

Browse files
committed
Preparing 3.0.0 release
1 parent acd917d commit 25976cb

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
repositories {
2626
mavenCentral()
2727
}
28-
compile 'com.sothree.slidinguppanel:library:2.0.4'
28+
compile 'com.sothree.slidinguppanel:library:3.0.0'
2929
}
3030
```
3131

@@ -108,6 +108,13 @@ If you have an awesome pull request, send it over!
108108

109109
### Changelog
110110

111+
* 3.0.0
112+
* Added `umano` prefix for all attributes
113+
* Added `clipPanel` attribute for supporting transparent panels in non-overlay mode.
114+
* `setEnabled(false)` - now completely disables the sliding panel (touch and programmatic sliding)
115+
* `setTouchEnabled(false)` - disables panel's touch responsiveness (drag and click), you can still control the panel programatically
116+
* `getPanelState` - is now the only method to get the current panel state
117+
* `setPanelState` - is now the only method to modify the panel state from code
111118
* 2.0.2 - Allow `wrap_content` for sliding view height attribute. Bug fixes.
112119
* 2.0.1 - Bug fixes.
113120
* 2.0.0 - Cleaned up various public method calls. Added animated `showPanel`/`hidePanel` methods.

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="9"
5-
android:versionName="2.0.4">
4+
android:versionCode="10"
5+
android:versionName="3.0.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=2.0.4
2-
VERSION_CODE=9
1+
VERSION_NAME=3.0.0
2+
VERSION_CODE=10
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="9"
5-
android:versionName="2.0.4">
4+
android:versionCode="10"
5+
android:versionName="3.0.0">
66

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

0 commit comments

Comments
 (0)