Bump version and add release notes

This commit is contained in:
Jonas Kalderstam 2015-08-25 13:24:23 +02:00
parent 7201a2130e
commit 3b2f89343b
3 changed files with 21 additions and 3 deletions

View File

@ -68,7 +68,7 @@ repositories {
}
dependencies {
compile 'com.nononsenseapps:filepicker:2.3.1'
compile 'com.nononsenseapps:filepicker:2.4.0'
}
```

View File

@ -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

View File

@ -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.