Dheepak Krishnamurthy
Dheepak Krishnamurthy
This has been on my list of things to do and I haven't gotten to it yet. But I'll commit to setting up a Linux VM and debugging this this...
I made some changes in this commit that might resolve this issue: https://github.com/kdheepak/TerminalUserInterfaces.jl/commit/4236b4c98bec93081d83603e03219d569e0a243c. I was able to set up a Ubuntu machine as well, so I will be able to...
Are you able to test with the latest version `master` of the package? I was able to run the examples using Julia 1.5.1 and `TerminalUserInterfaces.jl#master`.
Something must have changed in Julia for Windows. I don’t have a Windows machine to test though. If you can, can you share the output of `@show stdin stdout` on...
Thanks for reporting. I’ll take a look at this over the weekend.
The progress bar widget hard codes the background to be black: https://github.com/kdheepak/TerminalUserInterfaces.jl/blob/3e095ff933ddbfb70a6055e2b83b51447c587506/src/widgets/progressbar.jl#L17 I think that’s what is going on here.
Can you try the most recent commit? https://github.com/kdheepak/TerminalUserInterfaces.jl/blob/e1946a7e106dd4563e57e04a878c04909d96861a/src/widgets/progressbar.jl#L17
I seem to have changed it from using `:white` and `:black` to hardcoded values a while ago, but I can't remember why: https://github.com/kdheepak/TerminalUserInterfaces.jl/commit/3e095ff933ddbfb70a6055e2b83b51447c587506#diff-d4c1b4784a623b4120fc107f6e6e18d0d7fe3149ed1494add012bce57463fa67 Anyway, let me know whether it works....
Can you run `using Crayons; Crayons.test_system_colors()`?
I've made a new change (see https://github.com/kdheepak/TerminalUserInterfaces.jl/commit/72c64dd074e7c833151e6607a00022e85ef5807f) where you can pass in the colors as a crayon to the ProgressBar struct. You can change the colors now from the user...