Skip to content

v2.1.0

Latest
Compare
Choose a tag to compare
@jovandeginste jovandeginste released this 12 Feb 13:45
· 56 commits to master since this release
v2.1.0
29d097b

Breaking change for imperial unit users!

Weights stored in the database since this release are now correctly converted from the user's preferred unit (kilograms or pounds). However, the weights stored before this release were not converted before storing. If you entered "10 pounds", it was stored as "10 kg" but shown as "10 pounds". This means that data entered before this release will be wrong. What was 10 pounds will now show 22 pounds...

If you want to update all weights in the workout table (eg. all your users use pounds), you can run this single query:

update map_data set total_weight = total_weight * 2.20462262;

What's Changed

Full Changelog: v2.0.3...v2.1.0