Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-18 | Further tweaks and fixes to time labelling algorithm | dodoradio | |
2023-08-18 | Fix steps graphs behaviour for less than a week of data | dodoradio | |
Steps graph would previously select wrong day on click if there was less than a week of data. This fixes the issue | |||
2023-08-02 | Add a spacer to the bottom of UISettingPage | dodoradio | |
2023-08-02 | Make sure that time labels label an entire day | dodoradio | |
This still isn't ideal, as it only covers the cases where 8h is the smallest division. | |||
2023-08-02 | lineGraph: add support for floating point values | dodoradio | |
It seems that floats weren't previously supported due to a programming error on my part | |||
2023-08-02 | Add detail view page for weight | Arseniy Movshev | |
2023-08-02 | Add weight graph and preview | Arseniy Movshev | |
The weight data collection is manual, so we need a page for the user to input data, hence this commit isn't sufficient for a weight logging implementation on its own. Weight doesn't have a dataChanged signal in sensorlogd, so that's currently not implemented here either Because weight tracking isn't for everyone, the preview isn't shown by default. | |||
2023-08-02 | Timelabels: format hours/minutes more appropriately | dodoradio | |
- don't bother rendering hours for every label - this isn't useful information and crowds the screen - make sure we 0-pad any numbers below 10 | |||
2023-07-22 | Add current heartrate to heartrate detail page | dodoradio | |
This copies a bit of code from https://github.com/AsteroidOS/asteroid-hrm/blob/master/src/main.qml | |||
2023-07-21 | Implement new dataChanged signal for file updates | dodoradio | |
2023-07-21 | Expand functionality of steps detail page | dodoradio | |
This adds the week graph from the preview page. Tapping on bars allows selecting the day that's currently displayed. | |||
2023-07-21 | Steps: Use new bar graph interactions to open detail page at different dates | dodoradio | |
2023-07-21 | Add interactive functionality to bar graph | dodoradio | |
2023-07-21 | Add steps detail page | dodoradio | |
Currently this is a direct clone of the heartrate detail page, and isn't specialised for steps in any way | |||
2023-07-21 | Add heartrate detail page | dodoradio | |
This currently just allows viewing heartrate over a day, a week or 3 weeks | |||
2023-07-20 | Add start and end values for HrGraph | dodoradio | |
2023-07-20 | Remove fileLoadStatus | dodoradio | |
This was missed when the code was moved from sensorlogd, and caused issues as the bool would arbitrarily be true or false. | |||
2023-07-20 | Remove positioning hints from reusable components | dodoradio | |
2023-07-20 | Make spacings consistent across previews | Arseniy Movshev | |
2023-07-20 | Use VerticalLabels in BarGraph | Arseniy Movshev | |
Currently the width of the labels isn't dynamic as it was before. This will need fixing. | |||
2023-07-20 | Rewrite the labelling system | dodoradio | |
The label code has been split into its own set of components: -TimeLabels: These try to display time labels as best as possible. They can label intervals from a minute to a day, but the code for labelling weeks is still missing. There's also no code protecting against strings overlapping with each other. - VerticalLabels: The code for these is a bit more 'analogue' than that of the time labels, but it's roughly analogous to previous code. These have also been implemented for the heartrate graph. | |||
2023-07-02 | Rename hrgraph to linegraph because it's not actually heartrate specific | Arseniy Movshev | |
2023-07-02 | Add settings for preview display to UI settings page | Arseniy Movshev | |
2023-07-02 | Add settings for which previews are shown on main preview page | Arseniy Movshev | |
2023-07-02 | Make the main preview page more modular | Arseniy Movshev | |
this splits off the graphs for different sensors into separate files which should make maintenance a bit easier | |||
2023-07-02 | Split settings into separate pages in preparation for further customisation ↵ | Arseniy Movshev | |
settings UI page is currently empty | |||
2023-07-02 | Add settings for step goal | Arseniy Movshev | |
2023-07-01 | Add steps goal line indicator to steps graph | Arseniy Movshev | |
the move of loggersettings into main is just done so we don't have a duplicate, since we now need it in main. | |||
2023-06-30 | Reduce the number of divisions if BPM goes over 100 | Arseniy Movshev | |
2023-06-30 | fix graph label positioning and spacing | Arseniy Movshev | |
the labels containers are now inset so they actually align with the values (a small offset would be caused by the way that the graph insets its data) all the code for positioning of the horizontal labels has been redone. This necessitated some changes in the loading code, and a fix to a particularly embarrassing variable duplication. | |||
2023-06-30 | Check for data size before trying to load heartrate data | Arseniy Movshev | |
2023-06-29 | Use todayTotal to make total update live | Arseniy Movshev | |
2023-06-29 | Implement LoadingDone signal | Arseniy Movshev | |
2023-06-29 | Add graph here | Arseniy Movshev | |
2023-06-11 | Add heartrate graph (experimental, slightly broken) | Arseniy Movshev | |
2023-06-08 | Switch to new sensorlogd qml interface | Arseniy Movshev | |
2023-06-07 | Get rid of the blob graph | Arseniy Movshev | |
This fixes an issue where a single bar could fill the entire width of the graph, making a blob shape This is done by setting an effective minimum of the number of bars that the graph sees, so that an individual bar can't be wider than the width seen when there's three bars | |||
2023-06-02 | make the steps graph barely fit on round displays | Arseniy Movshev | |
2023-06-02 | bar graph: tweak anchors to make sure that labels text is never clipped | Arseniy Movshev | |
2023-06-02 | Fix syntax on valuesar.count to make graph show intermediate values correctly | Arseniy Movshev | |
2023-06-02 | Settings: add interval settings for heartrate and step counter | Arseniy Movshev | |
2023-05-30 | Move bar graph into a dedicated component | Arseniy Movshev | |
2023-05-30 | Switch to the colours used in asteroid-hrm | Arseniy Movshev | |
This app should eventually be a drop-in replacement for that, so it seems appropriate to reuse the colours | |||
2023-05-30 | Make steps graph trigger a recording when the app starts | Arseniy Movshev | |
This should mean we always have the most up-to-date data. I am not sure this will work - the daemon may still be taking the reading as the graph draws, so the data still isn't fresh. Frankly, the daemon's recording mechanism needs a rewrite, and this is a stopgap. | |||
2023-05-28 | Add pageheader to settings page | Arseniy Movshev | |
2023-05-28 | Add placeholder message in case of no logged steps | Arseniy Movshev | |
2023-05-28 | Add settings page | Arseniy Movshev | |
This page currently only allows enabling/disabling the two currently supported sensors This also necessitated the addition of a layerstack to allow layer navigation | |||
2023-05-28 | Fix desktop file naming | Arseniy Movshev | |
2023-05-27 | fix pageheader clipping | Arseniy Movshev | |
2023-05-27 | Refine graph code | Arseniy Movshev | |