8000 [breaking] legacy: refactoring of the old `Logger` (part 1 of 2) by cmaglie · Pull Request #1621 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

[breaking] legacy: refactoring of the old Logger (part 1 of 2) #1621

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jan 11, 2022
Merged
Prev Previous commit
Next Next commit
Added 'percent' to TaskProgress gRPC message
  • Loading branch information
cmaglie committed Jan 10, 2022
commit 3a6dbbb4d50b576edc4815a3b6485535a3e3bc90
88 changes: 49 additions & 39 deletions rpc/cc/arduino/cli/commands/v1/common.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions rpc/cc/arduino/cli/commands/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ message TaskProgress {
string message = 2;
// Whether the task is complete.
bool completed = 3;
// Amount in percent of the task completion (optional)
float percent = 4;
}

message Programmer {
Expand Down
0