janeczku / calibre-web

:books: Web app for browsing, reading and downloading eBooks stored in a Calibre database
GNU General Public License v3.0
12.98k stars 1.39k forks source link

Series Values Truncate #1213

Open adamsih300u opened 4 years ago

adamsih300u commented 4 years ago

Running nightly builds. When setting a series number for magazines (or newspapers, in this case), the value 202002.20 gets truncated to 202002.2. Or, for monthly magazines, the October edition which should be 2019.10 gets truncated to 2019.1.

OzzieIsaacs commented 4 years ago

This is sort of right, from the programming perspective. The values are represented by float numbers, so the right entry would be 202002.02. But I understand the user perspective were 202002.1 would mean 1 and 202002.10 would mean 10 (but mathematically .1 and .10 are equal). It's harder to change than it looks like, because I have to reprogram the number increasing/decreasing stuff, currently it's a web browser feature, which works automatically.

OzzieIsaacs commented 3 months ago

It‘s now fixed in the newest nightly version

lhassell commented 1 month ago

IS this change going to be pushed to the main repo? It does not seem to be represented in the latest version (0.6.23).

OzzieIsaacs commented 1 month ago

Will be in the next release, you also can switch to the nightly version and have it now. Recently I saw I missed it on the overview pages and need to add it there

OzzieIsaacs commented 2 weeks ago

I fixed all remaining problems so the nightly version is now "fixed"