hiyohiyo / CrystalDiskInfo

CrystalDiskInfo
https://github.com/hiyohiyo/CrystalDiskInfo
MIT License
1.59k stars 177 forks source link

Total Host Reads/Writes: Inconsistent unit use #225

Open VolatileCable opened 1 year ago

VolatileCable commented 1 year ago

You are using base10 units to correctly represent the drive size, eg. 1000 GB (1 000 000 000 000 Bytes), but you are using the same unit, "GB", to show the Total Host Reads/Writes when they are in fact base2, eg. 88 981 "GB" (95 543 291 904 000 Bytes). Either keep these value as is but use the correct IEC units (88 981 GiB) or keep the base10 units and do the right calculation, ie. 95 543 GB, for a consistent UI. Right now it's just confusing. I haven't checked if other parts of the program have this issue. I'm using latest version 9.1.1. Related to #193 .

Untitled