mirror of
https://github.com/NickeManarin/ScreenToGif.git
synced 2026-04-26 07:35:54 +03:00
[GH-ISSUE #270] progress > text > percentage > wrong values #1590
Labels
No labels
copy cats
duplicated
future feature
pull-request
⬜ Accepted
⬜ Completed
⬜ Help Wanted 💪
⬜ In Progress
⬜ Missing Details
⬜ Pending
⬜ Waiting For Answer ⏳
🆕 feature preview
🔷 Bug 🐛
🔷 Out Of Scope
🔷 Out Of Scope
🔷 Question
🔷Enhancement
🔷Enhancement
🔷Invalid / External
🔷Knowledge Base
🔷Won't Fix
🕑 High
🕑 High
🕑 High
🕕 Medium
🕙 Low
🕛 Critical
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ScreenToGif#1590
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Shemesh on GitHub (Feb 14, 2018).
Original GitHub issue: https://github.com/NickeManarin/ScreenToGif/issues/270
Originally assigned to: @NickeManarin on GitHub.
hi,
go to: image > progress > text > percentage > remove the "show total value". and apply.
watch the values, they are wrong, displaying in THOUSANDS.
@NickeManarin commented on GitHub (Feb 14, 2018):
It's assuming the current installed culture of the OS. I need to fix this.
@NickeManarin commented on GitHub (Mar 22, 2018):
With v2.13, can you test if it's displaying the percentage as expected?
@Shemesh commented on GitHub (Mar 23, 2018):
sorry, v2.13, problems remain.
see attached animated gif:
top-left is: percentage > remove the "show total value"
bottom-right is: custom >
$p%plus - ux wise - when showing percentage there is no need to show fractions, e.g. 32.4... 76.9..
it is too much information. showing integers is better.
@ashleedawg commented on GitHub (May 6, 2018):
Hi @NickeManarin - just FYI, there's still the issue of the %progress being out by 100×.
However, I disagree with the suggestion that the value be truncated to zero decimal places, since the fraction is relevant if the project is >100 frames. Perhaps the number format could be
if (frames>100) {"0.0%"} else {"0%"}? (The user could still use the custom format for a truncated value, or vice-versa.)@Shemesh - In the meantime you can also display the progress percentage (without the total) like this:
Alt+K (or click
Image→Progress), and set:TextCustom$p%Then, hit Enter to apply the change (or click
Apply.)Other custom formats can be viewed by hovering your mouse over the Format box.
In case you couldn't tell, I'm just learning (and practicing) GitHub-flavoured markdown... Forgive me! 🤓
@NickeManarin commented on GitHub (May 6, 2018):
Ok, I was able to fix this.