Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ekchang committed Jun 1, 2016
1 parent 4e0dc75 commit 98262a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ Major Change in 1.4.0
See [CUSTOMIZATION_BUILDER](docs/CUSTOMIZATION_BUILDER.md) for usage details.
* New: `setSelectionMode(SELECTION_MODE_RANGE)` was added to allow 2 dates to be selected and have the entire range of dates selected. Much thanks to [papageorgiouk](https://github.com/papageorgiouk) for his work on this feature.

See other changes in the [CHANGELOG](/CHANGELOG.md).

Major Change in 1.3.0
---------------------
* Breaking change: `getTileSize` is deprecated. Use `getTileWidth` or `getTileHeight`.
Expand All @@ -64,8 +66,6 @@ Major Change in 1.3.0
* Attributes: mcv_tileWidth, mcv_tileHeight, mcv_calendarMode
* TalkBack APIs: `setContentDescriptionArrowPast`, `ArrowFuture`, `Calendar`

See other changes in the [CHANGELOG](/CHANGELOG.md).

Major Change in 1.2.0
---------------------
You can now collapse the calendar view to single week paging by calling
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,9 @@ private void setRangeDates(CalendarDay min, CalendarDay max) {
CalendarDay c = currentMonth;
adapter.setRangeDates(min, max);
currentMonth = c;
if (min != null) {
currentMonth = min.isAfter(currentMonth) ? min : currentMonth;
}
int position = adapter.getIndexForDay(c);
pager.setCurrentItem(position, false);
updateUi();
Expand Down

0 comments on commit 98262a9

Please sign in to comment.