Styling progress bars
[?]
Nov 27, 2020, 7:15 PM
K6GWUOD55G377RVEEMMRPZ4EUAHCM2BGXNRJTE5UZJFFMJGFCEZQCDependencies
- [2]
367UBQ6KForwarding SSH stderr, and progress bar for push - [3]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [4]
76PCXGMLPushing to, and pulling from the local repository - [5]
Q45QHPO4Feedback on network stuff - [6]
FBXYP7QMForgot to add remote::http - [7]
UDHP4ZVBFixing SSH asynchronicity issues - [8]
I52XSRUHMassive cleanup, and simplification
Change contents
- replacement in pijul/src/remote/ssh.rs at line 737
progress.println("Downloading changes");progress.set_style(indicatif::ProgressStyle::default_bar().template(" Downloading changes {wide_bar} {pos}/{len}"),); - edit in pijul/src/remote/ssh.rs at line 750
progress.set_style(indicatif::ProgressStyle::default_bar().template("✓ Downloading changes {wide_bar} {pos}/{len}"),); - edit in pijul/src/remote/ssh.rs at line 794
progress.set_style(indicatif::ProgressStyle::default_spinner().template("✓ Cloning channel")); - edit in pijul/src/remote/mod.rs at line 161
let progress = indicatif::ProgressBar::new_spinner();progress.set_style(indicatif::ProgressStyle::default_spinner().template("{spinner} Updating remote changelist"),);progress.enable_steady_tick(100); - edit in pijul/src/remote/mod.rs at line 187
progress.set_style(indicatif::ProgressStyle::default_spinner().template("✓ Updating remote changelist"),);progress.finish(); - replacement in pijul/src/remote/mod.rs at line 456
p.println("Applying changes");p.set_style(indicatif::ProgressStyle::default_bar().template(" Applying changes {wide_bar} {pos}/{len}"),); - edit in pijul/src/remote/mod.rs at line 489
progress.set_style(indicatif::ProgressStyle::default_bar().template("✓ Applying changes {wide_bar} {pos}/{len}"),); - replacement in pijul/src/remote/http.rs at line 24
progress.println("Downloading changes");progress.set_style(indicatif::ProgressStyle::default_bar().template(" Downloading changes {wide_bar} {pos}/{len}"),); - edit in pijul/src/remote/http.rs at line 57
progress.set_style(indicatif::ProgressStyle::default_bar().template("✓ Downloading changes {wide_bar} {pos}/{len}"),); - replacement in pijul/src/remote/http.rs at line 73
progress.println("Uploading changes");progress.set_style(indicatif::ProgressStyle::default_bar().template(" Uploading changes {wide_bar} {pos}/{len}"),); - edit in pijul/src/remote/http.rs at line 98
progress.set_style(indicatif::ProgressStyle::default_bar().template("✓ Uploading changes {wide_bar} {pos}/{len}"),); - edit in pijul/src/commands/pushpull.rs at line 157
let progress = indicatif::ProgressBar::new_spinner();progress.set_style(indicatif::ProgressStyle::default_spinner().template("{spinner} Updating remote changelist"),);progress.enable_steady_tick(100); - edit in pijul/src/commands/pushpull.rs at line 158
progress.finish(); - edit in pijul/src/commands/pushpull.rs at line 299
let progress = indicatif::ProgressBar::new_spinner();progress.set_style(indicatif::ProgressStyle::default_spinner().template("{spinner} Updating remote changelist"),);progress.enable_steady_tick(100); - edit in pijul/src/commands/pushpull.rs at line 300
progress.finish(); - edit in pijul/src/commands/pushpull.rs at line 401
let progress = indicatif::ProgressBar::new_spinner();progress.set_style(indicatif::ProgressStyle::default_spinner().template("{spinner} Outputting repository"),);progress.enable_steady_tick(100); - edit in pijul/src/commands/pushpull.rs at line 413
progress.set_style(indicatif::ProgressStyle::default_spinner().template("✓ Outputting repository"),);progress.finish(); - edit in pijul/src/commands/clone.rs at line 101
progress.set_style(indicatif::ProgressStyle::default_spinner().template("✓ Outputting repository"),);