Skip to content

Commit

Permalink
Merge pull request #31 from ktwrd/ktwrd-patch-1
Browse files Browse the repository at this point in the history
Show Current and Latest Version when an Update is available.
  • Loading branch information
ktwrd authored Sep 18, 2024
2 parents 6926b0d + 5e8eb96 commit 5081ff7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/wizard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,10 @@ impl WizardContext
if cv < rv
{
println!(
"======== A new update for {} is available! (v{rv}) ========",
av.mod_info.name_stylized
"======== A new update for {} is available! (latest: v{}, current: v{}) ========",
av.mod_info.name_stylized,
rv,
cv
);
}
}
Expand Down

0 comments on commit 5081ff7

Please sign in to comment.