Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added "aggregate" function to get statistics about metrics. #18

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3b5229f
Added "aggregate" function to get statistics about metrics.
quentinleguennec Sep 5, 2023
da03ad8
Fixed crash on Android 14.
quentinleguennec Jul 22, 2024
eed3cb4
Upgraded Google Health Connect version.
quentinleguennec Jul 25, 2024
faf464f
Changed max page size to fix a bug.
quentinleguennec Jul 25, 2024
cede058
Updated README.md
quentinleguennec Jul 25, 2024
a177525
Updated example app to detect when the "privacy policy" button is tap…
quentinleguennec Jul 25, 2024
13a040b
Added code analysis.
quentinleguennec Jul 26, 2024
b91e722
Ran dart fix and dart format.
quentinleguennec Jul 26, 2024
2f78f53
Implemented fetching exercise route information for ExerciseSessionRe…
nikolaydymura Jul 27, 2024
d553fc3
Now handling getting data after the Health Connect app is freshly ins…
quentinleguennec Jul 29, 2024
e1d0a18
Fix Zone Offset Parsing
AliakseiT Aug 5, 2024
07ac600
Merge remote-tracking branch 'refs/remotes/quentinleguennec_origin/fe…
nikolaydymura Aug 5, 2024
d0a24eb
Allow records that set HR start/end to the same moment
AliakseiT Aug 5, 2024
e9d9b75
Disabled empty-serialization error
nikolaydymura Aug 15, 2024
8548105
Renamed `onExerciseRoutePermissionCallback` to `onExerciseRouteReques…
nikolaydymura Aug 15, 2024
feb4b78
Added version check guard
nikolaydymura Aug 15, 2024
12bc3d1
Fixed error exceptions
nikolaydymura Aug 15, 2024
0352e92
Fixed error throwing
nikolaydymura Aug 15, 2024
90e82d2
Wrapped exception on new function
nikolaydymura Aug 15, 2024
72e3bbe
Add logging and wrap string parsing in try catch
AliakseiT Aug 19, 2024
273e645
[4.0.0]
quentinleguennec Aug 29, 2024
de0194a
Ran formatting.
quentinleguennec Aug 29, 2024
7a16238
Merge branch 'feature_added_aggregate_function' into test_pr
quentinleguennec Aug 29, 2024
63e227c
[4.1.0]
quentinleguennec Aug 29, 2024
fcba88a
Merge pull request #1 from nikolaydymura/feature_added_aggregate_func…
quentinleguennec Aug 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## [4.1.0]
* Fixed issue with timestamps: [#1](https://github.com/quentinleguennec/flutter_health_connect/pull/1) by [AliakseiT](https://github.com/AliakseiT) and [nikolaydymura](https://github.com/nikolaydymura)
* Added `getRecordById` [#1](https://github.com/quentinleguennec/flutter_health_connect/pull/1) by [AliakseiT](https://github.com/AliakseiT) and [nikolaydymura](https://github.com/nikolaydymura)
* Improved the Example app to add a button for `getRecordById`.

## [4.0.0]
* **BREAKING:** `writeData` now returns a list of the uids of the created Records instead of a boolean.
* Fixed `deleteRecordsByIds`, which would delete the records but then throw an error.
* Fixed `deleteRecordsByTime`, which would delete the records but then throw an error.
* Added documentation.
* Improved the Example app to add a button for each `deleteRecordsByIds` and `deleteRecordsByTime`.

## [3.0.0]
* **BREAKING:** All apps using this plugin must update their AndroidManifest.xml to add the "activity-alias". This will fix the "App update needed" issue when asking for permission.
* Now handling Android 14
* Updated README.md

## [2.1.0]
* Added `aggregate` function to get statistics
* Updated README.md

## [2.0.0]
* Added missing data types
* Added Models for each data type
Expand All @@ -6,18 +27,24 @@
* Added deleteRecords methods
* Upgrade Health Connect API to `1.1.0-alpha2`
* Updated README.md

## [1.2.3]
* Upgrade to `alpha11` [#8](https://github.com/duynguyen242/flutter_health_connect/pull/8) by [aljkor](https://github.com/aljkor)

## [1.2.2]
* getChanges flatten record field on UpsertionChange

## [1.2.1]
* breaking changes for getRecord
* getRecord pagination support
* implement getChanges and getChangesToken
* fix datetime range passed to getRecord

## [1.2.0]
* Upgrade to `alpha10` [#6](https://github.com/duynguyen242/flutter_health_connect/pull/6) by [aljkor](https://github.com/aljkor)

## [1.1.4]
* Update README.md

## [1.0.0]
* Initial release
Loading