Skip to content

Commit

Permalink
fix a bug?
Browse files Browse the repository at this point in the history
  • Loading branch information
DinoChan committed Dec 15, 2021
1 parent e8101eb commit 4d75d08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Loaf/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Identity
Name="24329C-Soft.Loaf-aWinUI3App"
Publisher="CN=6D7AEB3B-3956-49A6-AD32-C4737FDDCD52"
Version="1.0.8.0" />
Version="1.0.9.0" />

<Properties>
<DisplayName>Loaf - a WinUI3 App</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion Loaf/Windows11UpdateView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private async void Windows11UpdateView_Loaded(object sender, RoutedEventArgs e)
int index = 0;
while (_disposed == false)
{
UpdatingElement.Text = String.Format(ResourceExtensions.GetLocalized("UpdatingText"), index++);
UpdatingElement.Text = String.Format(ResourceExtensions.GetLocalized("UpdatingText"), index++ % 100);
await Task.Delay(TimeSpan.FromSeconds(10));
}
}
Expand Down

0 comments on commit 4d75d08

Please sign in to comment.