Skip to content

Commit

Permalink
Update version + fix title
Browse files Browse the repository at this point in the history
  • Loading branch information
JimGeersinga committed Nov 12, 2024
1 parent a9f4b13 commit 20ad68a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions NED.WoT.BattleResults.Client/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ public App()
InitializeComponent();
}

protected override Window CreateWindow(IActivationState? activationState)
protected override Window CreateWindow(IActivationState activationState)
{
return new Window(new MainPage()) { Title = "test" };
return new Window(new MainPage()) { Title = $"V{AppInfo.VersionString}" };
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
clan = $"[{SettingService.Settings.ClanAbbreviation}] ";
}
}
<MudText Typo="Typo.h6">@(clan)WoT Gevecht Statistieken <span style="color: var(--mud-palette-grey-dark)">V@(AppInfo.VersionString)</span></MudText>
<MudText Typo="Typo.h6">@(clan)WoT Gevecht Statistieken</MudText>
<MudSpacer />
<MudIconButton Icon="@Icons.Material.Filled.Refresh" Color="Color.Inherit" OnClick="Refresh" />
<MudIconButton Icon="@(_isDarkMode ? Icons.Material.Filled.LightMode: Icons.Material.Filled.DarkMode)" Color="Color.Inherit" @onclick="() => _isDarkMode = !_isDarkMode" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">

<Identity Name="maui-package-name-placeholder" Publisher="CN=JimG" Version="1.11.0.0" />
<Identity Name="maui-package-name-placeholder" Publisher="CN=JimG" Version="1.11.1.0" />

<mp:PhoneIdentity PhoneProductId="3DAE7680-3F65-440F-908F-252D648F20FC" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down

0 comments on commit 20ad68a

Please sign in to comment.