Update CHANGELOG.md and entry.dart

This commit is contained in:
Thibault Deckers 2021-09-10 13:14:12 +09:00
parent 443ea47d41
commit e8a4480884
2 changed files with 3 additions and 0 deletions

View file

@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
### Changed
- upgraded Flutter to stable v2.5.0
- faster collection loading when launching the app
## [v1.5.1] - 2021-09-08
### Added

View file

@ -339,11 +339,13 @@ class AvesEntry {
_bestDate = null;
}
// TODO TLAD cache _monthTaken
DateTime? get monthTaken {
final d = bestDate;
return d == null ? null : DateTime(d.year, d.month);
}
// TODO TLAD cache _dayTaken
DateTime? get dayTaken {
final d = bestDate;
return d == null ? null : DateTime(d.year, d.month, d.day);