Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Commit

Permalink
Bump version and add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
spacecowboy committed Aug 25, 2015
1 parent 7201a21 commit 3b2f893
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ repositories {
}
dependencies {
compile 'com.nononsenseapps:filepicker:2.3.1'
compile 'com.nononsenseapps:filepicker:2.4.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 18 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 3b2f893

Please sign in to comment.