Closed MichaelGrupp closed 1 year ago
Propagate config error instead of panicking in unwrap():
unwrap()
The main function returns a result, so if we return Err it will be printed a bit more pretty than if we panic.
Err
Relax busy wait for transform:
If the transform was not available, termviz used to hang with 100% CPU usage. Added a sleep to quick-fix this until we have a better solution.
Done. Ticket: https://github.com/carzum/termviz/issues/68
Propagate config error instead of panicking in
unwrap()
:The main function returns a result, so if we return
Err
it will be printed a bit more pretty than if we panic.Relax busy wait for transform:
If the transform was not available, termviz used to hang with 100% CPU usage. Added a sleep to quick-fix this until we have a better solution.