Skip to content

Commit

Permalink
Merge branch 'release/v1.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
tor4kichi committed Feb 14, 2022
2 parents be16012 + 682d592 commit 3723eaf
Show file tree
Hide file tree
Showing 82 changed files with 499 additions and 698 deletions.
184 changes: 0 additions & 184 deletions Hohoema.Models/FixPrism/BindableBaseWithFix.cs

This file was deleted.

115 changes: 0 additions & 115 deletions Hohoema.Models/FixPrism/DispatchObservableCollection{T}.cs

This file was deleted.

7 changes: 1 addition & 6 deletions Hohoema.Models/Hohoema.Models.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,6 @@
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
</PropertyGroup>
<ItemGroup>
<Compile Include="FixPrism\BindableBaseWithFix.cs" />
<Compile Include="FixPrism\DispatchObservableCollection{T}.cs" />
<Compile Include="IsExternalInit.cs" />
<Compile Include="Models.Domain\Application\AppearanceSettings.cs" />
<Compile Include="Models.Domain\Application\AppFlagsRepository.cs" />
Expand Down Expand Up @@ -207,7 +205,6 @@
<Compile Include="Models.Domain\Notification\InAppNotificationMessage.cs" />
<Compile Include="Models.Domain\Notification\LiteNotificationMessage.cs" />
<Compile Include="Models.Domain\PageNavigation\HohoemaPageType.cs" />
<Compile Include="Models.Domain\PageNavigation\IPageNavigatable.cs" />
<Compile Include="Models.Domain\PageNavigation\IPinablePage.cs" />
<Compile Include="Models.Domain\PageNavigation\ISearchHistory.cs" />
<Compile Include="Models.Domain\PageNavigation\ITitleUpdatablePage.cs" />
Expand Down Expand Up @@ -364,9 +361,6 @@
<PackageReference Include="System.Threading.Tasks.Extensions">
<Version>4.5.4</Version>
</PackageReference>
<PackageReference Include="Uno.Prism.Unity.Uno">
<Version>7.1.0-pre.4</Version>
</PackageReference>
<PackageReference Include="XTSSharp.NetStandard">
<Version>1.0.0</Version>
</PackageReference>
Expand All @@ -380,6 +374,7 @@
<Name>NiconicoToolkit.UWP</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public ElementTheme ApplicationTheme
Save(internal_theme);

_Theme = value;
RaisePropertyChanged();
OnPropertyChanged();
}
}
}
Expand Down Expand Up @@ -121,7 +121,7 @@ public NavigationViewPaneDisplayMode MenuPaneDisplayMode
Save(internal_theme);

_menuPaneDisplayMode = value;
RaisePropertyChanged();
OnPropertyChanged();
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Hohoema.Models/Models.Domain/Application/BackupManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Hohoema.FixPrism;
using Microsoft.Toolkit.Mvvm.ComponentModel;
using Hohoema.Models.Domain.Niconico.NicoRepo;
using Hohoema.Models.Domain.Niconico.Video;
using Hohoema.Models.Domain.PageNavigation;
Expand Down
6 changes: 3 additions & 3 deletions Hohoema.Models/Models.Domain/LocalMylist/LocalPlaylist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Microsoft.Toolkit.Mvvm.Messaging;
using Microsoft.Toolkit.Mvvm.Messaging.Messages;
using NiconicoToolkit.Video;
using Prism.Mvvm;
using Microsoft.Toolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
Expand Down Expand Up @@ -56,7 +56,7 @@ public bool Equals(IPlaylistSortOption other)
}
}

public sealed class LocalPlaylist : FixPrism.BindableBase, IUserManagedPlaylist
public sealed class LocalPlaylist : ObservableObject, IUserManagedPlaylist
{
public static LocalPlaylistSortOption[] SortOptions { get; } = new LocalPlaylistSortOption[]
{
Expand Down Expand Up @@ -124,7 +124,7 @@ private set
if (SetProperty(ref _count, value))
{
UpdatePlaylistInfo();
RaisePropertyChanged(nameof(IUserManagedPlaylist.TotalCount));
OnPropertyChanged(nameof(IUserManagedPlaylist.TotalCount));
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Prism.Mvvm;
using Microsoft.Toolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
Loading

0 comments on commit 3723eaf

Please sign in to comment.