Updated search logic. More UI updates.
All checks were successful
ci / build-test (push) Successful in 2m17s
ci / publish-image (push) Has been skipped

This commit is contained in:
2025-11-17 21:05:55 -05:00
parent 9ef1972472
commit 2418bd0a8f
13 changed files with 430 additions and 108 deletions

View File

@@ -430,7 +430,8 @@ public class VoiceWorkSearchProviderTests(VoiceWorkSearchProviderFixture fixture
{
SortOptions =
[
new(VoiceWorkSortField.ReleaseDate, SortDirection.Ascending)
new(VoiceWorkSortField.AnyReleaseDate, SortDirection.Ascending),
new(VoiceWorkSortField.ProductId, SortDirection.Ascending)
]
};
@@ -448,7 +449,8 @@ public class VoiceWorkSearchProviderTests(VoiceWorkSearchProviderFixture fixture
{
SortOptions =
[
new(VoiceWorkSortField.ReleaseDate, SortDirection.Descending)
new(VoiceWorkSortField.AnyReleaseDate, SortDirection.Descending),
new(VoiceWorkSortField.ProductId, SortDirection.Ascending)
]
};
@@ -466,7 +468,8 @@ public class VoiceWorkSearchProviderTests(VoiceWorkSearchProviderFixture fixture
{
SortOptions =
[
new(VoiceWorkSortField.Downloads, SortDirection.Ascending)
new(VoiceWorkSortField.Downloads, SortDirection.Ascending),
new(VoiceWorkSortField.ProductId, SortDirection.Ascending)
]
};
@@ -484,7 +487,8 @@ public class VoiceWorkSearchProviderTests(VoiceWorkSearchProviderFixture fixture
{
SortOptions =
[
new(VoiceWorkSortField.Downloads, SortDirection.Descending)
new(VoiceWorkSortField.Downloads, SortDirection.Descending),
new(VoiceWorkSortField.ProductId, SortDirection.Ascending)
]
};
@@ -538,7 +542,8 @@ public class VoiceWorkSearchProviderTests(VoiceWorkSearchProviderFixture fixture
{
SortOptions =
[
new(VoiceWorkSortField.StarRating, SortDirection.Ascending)
new(VoiceWorkSortField.StarRating, SortDirection.Ascending),
new(VoiceWorkSortField.ProductId, SortDirection.Ascending)
]
};
@@ -556,7 +561,8 @@ public class VoiceWorkSearchProviderTests(VoiceWorkSearchProviderFixture fixture
{
SortOptions =
[
new(VoiceWorkSortField.StarRating, SortDirection.Descending)
new(VoiceWorkSortField.StarRating, SortDirection.Descending),
new(VoiceWorkSortField.ProductId, SortDirection.Ascending)
]
};