Page 1 of 1

100% project progress!

Posted: Fri Sep 05, 2014 11:17 pm
by kicking jay
Image

Ugg.

Re: 100% project progress!

Posted: Sat Sep 06, 2014 2:04 am
by Addicted
It's actually just under 100% but gets rounded to that on the display. If you look in another place you might see a different number. It's a known bug or issue, hard to fix, documented in a few places on the forum. It happens to us all from time to time.

Re: 100% project progress!

Posted: Sat Sep 06, 2014 2:33 am
by kicking jay
...meh, could we always have it round down?

Re: 100% project progress!

Posted: Sat Sep 06, 2014 5:51 pm
by EchoMan
Then you would whine when you have 0,0% progress after the first turn on the next project. ;)

Re: 100% project progress!

Posted: Sat Sep 06, 2014 6:44 pm
by kicking jay
EchoMan wrote:Then you would whine when you have 0,0% progress after the first turn on the next project. ;)


I sure would.

Re: 100% project progress!

Posted: Tue Sep 09, 2014 1:36 am
by Cdls
Or increase the decimal size to two places.

Re: 100% project progress!

Posted: Tue Sep 09, 2014 8:54 am
by EchoMan
Then it would still say 100.00%, but a tenth of the times it does now.

Re: 100% project progress!

Posted: Tue Sep 09, 2014 10:26 am
by Otherside
You made a good floating point, but I can count the reasons against on my significant digits.

Math Taxi!

Re: 100% project progress!

Posted: Tue Sep 09, 2014 3:51 pm
by Cdls
EchoMan wrote:Then it would still say 100.00%, but a tenth of the times it does now.

Well, I was simply using that as an example. You can also do something like:

$projecttic = //use any float point value here to test
$projecttic = round($projecttic,strlen((string)$projecttic));
echo $projecttic;