Georgios Verigakis
Georgios Verigakis
Unfortunately this is not easy to achieve with the current design. The way it works is that it moves the cursor back and overwrites the text on the same line....
Since these days I don't have much time to work on this, I'm generally hesitant merging big changes. If however you think you can pull this off with minimal disruption...
I'm afraid this will break code that has overriden file to something else.
In version 1.6 that I just released you can use the index in spinners. e.g. `Spinner(' %(index)d')`. Does that work for you?
This looks like a very heavy handed approach, the original suggestion on #58 was a one line change. Any other windows people care to comment on this?
Hi, this is very interesting, but the implementation can be simplified a lot. You can implement an `AdaptiveMixin` that overrides `percent` and `progress`. Then `AdaptiveBar` can become a one liner:...
Let's keep working on this one for now and see if we can squash the commits in the end.
Seems to work for me. Can you try this example and let me know if it works? ``` python from progress.spinner import Spinner import time pg = Spinner('中文') for i...
The latest commits caused a conflict to this PR. However it was incomplete as your change would only run on spinners, not bars. You will need to update `writeln` if...
Right, but when you submitted your PR, bars where using `writeln` while spinners etc were using `write`. In any case everything is unified now. However there are still a number...