Skip to content

Commit

Permalink
Merge pull request #163 from SSchulze1989/develop
Browse files Browse the repository at this point in the history
Hotfix 0.12.6:
  • Loading branch information
SSchulze1989 authored Nov 10, 2024
2 parents 3ed28bc + 80e9721 commit af5ee1b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<MudNumericField Label="Positions" @bind-Value="Vm.Positions" Variant="Variant.Outlined" />
break;
case PenaltyType.Time:
<MudNumericField Label="Time" @bind-Value="Vm.Points" Variant="Variant.Outlined" Adornment="Adornment.End" AdornmentText="seconds"/>
<MudNumericField Label="Time" @bind-Value="Vm.TimeSeconds" Variant="Variant.Outlined" Adornment="Adornment.End" AdornmentText="seconds"/>
break;
}
</MudStack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
SortOptions.RacePtsDesc,
SortOptions.PenPtsAsc,
SortOptions.BonusPtsDesc,
SortOptions.IntvlDesc,
SortOptions.IntvlAsc,
SortOptions.ComplLapsDesc,
SortOptions.LeadLapsDesc,
SortOptions.IncsAsc,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
TDialog="SortOptionsDialog"
Value="Scoring.PointRule.PointsSortOptions.ToList()"
ValueChanged="@((IList<SortOptions> value) => Scoring.PointRule.PointsSortOptions = value)"
Text="@GetSortingHelperText(Scoring.PointRule.PointsSortOptions)" />
Text="@GetSortingHelperText(Scoring.PointRule.PointsSortOptions)"
Parameters="@(new() {
{x => x.AvailableOptions, [SortOptions.FinPosAsc, SortOptions.IntvlAsc, SortOptions.PenPtsAsc, SortOptions.FastLapAsc, SortOptions.QualLapAsc]}
})" />

<SettingsPromptItem @bind-Value="PointRuleModel"
T="PointRuleModel"
Expand Down
2 changes: 1 addition & 1 deletion src/iRLeagueManager.Web/iRLeagueManager.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Version>0.12.5</Version>
<Version>0.12.6</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-iRLeagueManager.Web-2B05F9DC-55A3-49D1-BD64-31507000EDF3</UserSecretsId>
Expand Down

0 comments on commit af5ee1b

Please sign in to comment.