forbear icon indicating copy to clipboard operation
forbear copied to clipboard

Fortran (progress) B(e)ar envinronment

Results 6 forbear issues
Sort by recently updated
recently updated
newest added

Hi Stefano, Very cool project! I noticed you were interested in adding a spinner (in the README.md TODO list) and I was thinking it would be very nice to have...

enhancement

Projects with awesome bars/spinners from which take inspiration: + https://github.com/sindresorhus/cli-spinners + https://github.com/briandowns/spinner + https://github.com/piotrmurach/tty-spinner + https://github.com/henrik/progress_bar + https://github.com/hfaran/progressive

enhancement

In a long run (7 minutes), instead of one progress bar, 12 appear ![image](https://github.com/szaghi/forbear/assets/71725436/3d89481a-940c-469f-ae0c-9d178d52f168) Actual code: ```Fortran call bar%initialize(filled_char_string='㊂', empty_char_string='●',& suffix_string='| ', add_progress_percent=.true.,prefix_string='Progress |',& scale_bar_color_fg='blue', scale_bar_style='underline_on', spinner_string='( ● )') ```

When Max_value is higher than 99 the bar only shows ***** instead of the actual number ![image](https://github.com/szaghi/forbear/assets/71725436/4db832d7-2bed-4d44-93d3-a2141b205117) Actual code: ```Fortran lt1 = 100 call bar%initialize(filled_char_string='+', prefix_string='Progress |',& suffix_string='| ', add_progress_percent=.true.,&...

I've copied the spinner line from the tests but when I run my code the spinner doesn't overwrite in place so I get a bunch of lines: ![image](https://github.com/szaghi/forbear/assets/24468661/bdb7c397-4fa6-40c4-96c2-294e9f12e181)