Skip to content

Commit

Permalink
Merge pull request #162 from YBTopaz8/TestingAutoReleases
Browse files Browse the repository at this point in the history
Testing auto releases
  • Loading branch information
YBTopaz8 authored Jan 1, 2025
2 parents bd0f259 + b73e294 commit ddc6c55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dimmer/Platforms/Windows/Package.appxmanifest
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=YvanBrunel" Version="0.7.0.0" />
<Identity Name="maui-package-name-placeholder" Publisher="CN=YvanBrunel" Version="0.9.0.0" />

<mp:PhoneIdentity PhoneProductId="8EA403B0-ABFE-4371-8CD3-4C4A71E7FD9B" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
5 changes: 1 addition & 4 deletions Dimmer/ViewModels/PlaylistSection.HomePageVM.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@



namespace Dimmer_MAUI.ViewModels;
namespace Dimmer_MAUI.ViewModels;
public partial class HomePageVM
{
[ObservableProperty]
Expand Down
4 changes: 2 additions & 2 deletions Dimmer/ViewModels/StatsSection.HomePageVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void ShowTopTenSongsForSpecificDay(DateTimeOffset? selectedDay)
// .Count(d => d.DatePlayed.Date == selectedDay.Value.Date && d.WasPlayCompleted == true)
})
.OrderByDescending(s => s.PlayCount)
.Take(10)
.Take(15)
.ToObservableCollection();


Expand All @@ -70,7 +70,7 @@ void ShowTopTenSongsForSpecificDay(DateTimeOffset? selectedDay)
};

[ObservableProperty]
SingleSongStatistics songPickedForStats;
public partial SingleSongStatistics SongPickedForStats { get; set; }
[ObservableProperty]
int numberOfTimesPlayed;
[ObservableProperty]
Expand Down

0 comments on commit ddc6c55

Please sign in to comment.