Skip to content

Commit

Permalink
Increased version number to 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wdullaer committed Oct 16, 2015
1 parent 6e53735 commit ba9a351
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Date Picker | Time Picker
The easiest way to add the Material DateTime Picker library to your project is by adding it as a dependency to your `build.gradle`
```java
dependencies {
compile 'com.wdullaer:materialdatetimepicker:1.5.3'
compile 'com.wdullaer:materialdatetimepicker:1.5.4'
}
```

Expand Down Expand Up @@ -113,6 +113,9 @@ You can pass a `Calendar[]` to the `DatePickerDialog`. This values in this list
* `setHighlightedDays(Calendar[] days)`
You can pass a `Calendar[]` of days to highlight. They will be rendered in bold. You can tweak the color of the highlighted days by overwriting `mdtp_date_picker_text_highlighted`

* `showYearPickerFirst(boolean yearPicker)`
Show the year picker first, rather than the month and day picker.

* `OnDismissListener` and `OnCancelListener`
Both pickers can be passed a `DialogInterface.OnDismissLisener` or `DialogInterface.OnCancelListener` which allows you to run code when either of these events occur.
```java
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 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=1.5.3
VERSION_CODE=14
VERSION_NAME=1.5.4
VERSION_CODE=15
GROUP=com.wdullaer

ANDROID_BUILD_MIN_SDK_VERSION=14
Expand Down

0 comments on commit ba9a351

Please sign in to comment.