electron-progressbar icon indicating copy to clipboard operation
electron-progressbar copied to clipboard

electron-progressbar provides an easy-to-use and highly customizable API to show and control progress bars on Electron applications.

Results 3 electron-progressbar issues
Sort by recently updated
recently updated
newest added

It's just a suggestion to do a new feature for this library. Queued proccess of many tasks should be shown in one window same time

enhancement

Am I correct that the proper way to trigger the `.on('aborted')` event is to allow the ProgressBar to be closable, like this? ```javascript const progressBar = new ProgressBar( { text:...

``` public ProgressBarIndefinitive(msg = 'Preparing data...', detail = 'Wait...'): any { const progressBar = new ProgressBar({ text: msg, detail: detail, }); progressBar .on('completed', () => { progressBar.detail = 'Task completed....