Bump version and add release notes
This commit is contained in:
parent
7201a2130e
commit
3b2f89343b
|
|
@ -68,7 +68,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile 'com.nononsenseapps:filepicker:2.3.1'
|
||||
compile 'com.nononsenseapps:filepicker:2.4.0'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
# Project-wide Gradle settings.
|
||||
|
||||
VERSION_NAME=2.3.1
|
||||
VERSION_CODE=22
|
||||
VERSION_NAME=2.4.0
|
||||
VERSION_CODE=23
|
||||
GROUP=com.nononsenseapps
|
||||
|
||||
PROJECT_NAME=com.nononsenseapps:filepicker
|
||||
|
|
|
|||
|
|
@ -1,3 +1,21 @@
|
|||
# 2.4.0
|
||||
- Added additional methods in AbstractFilePickerFragment to allow more
|
||||
customized behavior. All methods have default behavior, but can be augmented
|
||||
by child classes.:
|
||||
|
||||
goUp, navigates to parent directory.
|
||||
goToDir, navigates to specified directory.
|
||||
onClickOK, handles ok button.
|
||||
onClickCancel, handles cancel button.
|
||||
onClickHeader, handles clicks on "..".
|
||||
onClickDir, handles clicks on non-selectable items (usually directories).
|
||||
onLongClickDir, handles long clicks on non-selectable items.
|
||||
onClickCheckable, handles clicks on selectable items.
|
||||
onLongClickCheckable, handles long clicks on selectable items.
|
||||
onClickCheckBox, handles clicks on the checkbox of selectable items.
|
||||
|
||||
Please see default implementation and docstrings before overriding them.
|
||||
|
||||
# 2.3.1
|
||||
- Library should work correctly with non-touch controls like directional pads
|
||||
or keyboards.
|
||||
|
|
|
|||
Loading…
Reference in New Issue