Skip to content

Commit

Permalink
2.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMorrow committed Jul 7, 2024
1 parent 134c4a6 commit fa36e09
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
4 changes: 2 additions & 2 deletions LiftLog.App/LiftLog.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<ApplicationIdGuid>71733E37-6FDD-4EEF-A0BF-DE32634D58EC</ApplicationIdGuid>

<!-- Versions -->
<ApplicationDisplayVersion>2.11.0</ApplicationDisplayVersion>
<ApplicationVersion>78</ApplicationVersion>
<ApplicationDisplayVersion>2.11.1</ApplicationDisplayVersion>
<ApplicationVersion>79</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">24.0</SupportedOSPlatformVersion>
Expand Down
16 changes: 6 additions & 10 deletions LiftLog.Ui/ThemedWebApplication.razor
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@
string GetColorStr(uint color) => $"{ColorUtils.RedFromArgb(color)} {ColorUtils.GreenFromArgb(color)} {ColorUtils.BlueFromArgb(color)}";


protected override async Task OnInitializedAsync()
{
_scheme = await ThemeProvider.GetColorSchemeAsync();
await base.OnInitializedAsync();
}

protected override void OnAfterRender(bool firstRender)
{
if (firstRender)
Expand All @@ -109,16 +115,6 @@
base.OnAfterRender(firstRender);
}

protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
_scheme = await ThemeProvider.GetColorSchemeAsync();
}

await base.OnAfterRenderAsync(firstRender);
}

public void Dispose()
{
ThemeProvider.SeedChanged -= HandleThemeChange;
Expand Down
2 changes: 1 addition & 1 deletion release_notes/whatsnew-en-AU
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Note can now be added to session plans
You can now add notes to session plans and exercises

0 comments on commit fa36e09

Please sign in to comment.