summaryrefslogtreecommitdiff
path: root/qmlplugin (follow)
AgeCommit message (Collapse)Author
2023-06-20Add HrDataLoaderArseniy-Movshev
This provides a similar interface to the step data loader, but doesn't have a 'total' function because that's not really that useful.
2023-06-20Move fileNameForDate to a common header fileArseniy-Movshev
This function shows up in quite a few places so this seems justified. Other functions may get this treatment later
2023-06-20StepsDataLoader: Add a way to get the full day's dataArseniy-Movshev
additionally, this renames the current data access function to 'getTotalForDate()' while the new function gets the old name of 'getDataForDate()'. This naming seems more appropriate. This should allow apps using the QML interface to implement their own graphs
2023-06-11Remove HeartrateGraph QML elementArseniy-Movshev
After making several attempts at integrating this element into asteroid-health, I'm still not happy with the heartrate graph code. The issue is that this element doesn't seem to be usable 'as is', and needs some sort of wrapper around it to make it fit with the style of asteroid-health. Effectively this would split the code in half across the two codebases. I also didn't want to specialise this graph code too much for asteroid-health, as I still wanted it to be somewhat generic and reusable. I've decided that I'm going to move this code to asteroid-health. This would allow that graph code to be much more integrated, and would mean that sensorlogd should become much more generic and much easier to use.:q
2023-06-02settings: add step goal targetArseniy-Movshev
currently this doesn't interface with the daemon in any way, this is added for future use
2023-06-02LoggerSettings: fix wrong default sensor intervalsArseniy-Movshev
This inconsistency suggests that these values should be saved somewhere in a common place
2023-05-30Add some useful properties to hrgraphArseniy-Movshev
2023-05-30Make graph points roundArseniy-Movshev
2023-05-30enable antialiasing on itemArseniy-Movshev
2023-05-30Fix incorred height and width usageArseniy-Movshev
2023-05-30Add some more parameters to the heartrate graphArseniy-Movshev
2023-05-30Add heartrate graphArseniy-Movshev
2023-05-29Add a method for daemon recordings to be triggered from qmlArseniy-Movshev
This allows the app to always show an up-to-date value
2023-05-28Make the log path configurableArseniy-Movshev
This also renames it to sensorlogd from the obsolete asteroid-healthtracker and hides it by default
2023-05-28Add a new LoggerSettings typeArseniy-Movshev
this independently accesses the settings file for the logger, and has a call to reinitialise it (which will cause settings to be reread)
2023-05-27fix qml accessor:Arseniy-Movshev
- make sure that the reader doesn't create random files - it is unclear why readwrite was used here in the first place, as readonly access is appropriate. - make sure that `line` always has a value even if file is empty
2023-05-26steps: add more useful data fetch methodArseniy-Movshev
2023-05-26Restructure to split to daemon and qml accessorArseniy-Movshev
- add separate subdirs for daemon and qml - add some generic qml boilerplate - add a really lazy 'last value' loader implementation - license the project as gplv3 (add copyright notices and license text)