Add blu ray discs

Signed-off-by: Chloe Surett <chloe@surett.me>
This commit is contained in:
Chloe Surett 2025-10-01 08:25:15 -04:00 committed by GitHub
parent a8f53d5ef0
commit c0a4fec401
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1040,6 +1040,10 @@ function humansize_fuzzy(b) {
if (b <= 1300000000) return "GD-ROM";
if (b <= 4700000000) return "DVD";
if (b <= 9400000000) return "DVD-DL";
if (b <= 25000000000) return "BD";
if (b <= 50000000000) return "BD-DL";
if (b <= 100000000000) return "BDXL-TL";
if (b <= 128000000000) return "BDXL-QL";
return "LTO";
}
var humansize_fmts = ['0', '1', '2', '2c', '3', '3c', '4', '4c', '5', '5c', 'fuzzy'];