a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[frontend] Update to new PhosphorIcons version

+6 -6
+4 -4
Iceshrimp.Frontend/Components/FollowButton.razor
··· 11 11 { 12 12 case ButtonType.Follow: 13 13 <span class="text">@Loc["Follow"]</span> 14 - <Icon ExtraClasses="icon" Name="Icons.Plus"/> 14 + <Icon Name="Icons.Plus" class="icon"/> 15 15 break; 16 16 case ButtonType.Unfollow: 17 17 <span class="text">@Loc["Unfollow"]</span> 18 - <Icon ExtraClasses="icon" Name="Icons.Minus"/> 18 + <Icon Name="Icons.Minus" class="icon"/> 19 19 break; 20 20 case ButtonType.FollowBack: 21 21 <span class="text">@Loc["Follow back"]</span> 22 - <Icon ExtraClasses="icon" Name="Icons.Plus"/> 22 + <Icon Name="Icons.Plus" class="icon"/> 23 23 break; 24 24 case ButtonType.CancelRequest: 25 25 <span class="text">@Loc["Cancel request"]</span> 26 - <Icon ExtraClasses="icon" Name="Icons.X"/> 26 + <Icon Name="Icons.X" class="icon"/> 27 27 break; 28 28 } 29 29 </button>
+1 -1
Iceshrimp.Frontend/Components/Note/NoteFooter.razor
··· 43 43 } 44 44 else 45 45 { 46 - <Icon ExtraClasses="faded" Name="Icons.Lock" Size="1.3em"/> 46 + <Icon Name="Icons.Lock" Size="1.3em" class="faded"/> 47 47 } 48 48 @if (Renotes > 0) 49 49 {
+1 -1
Iceshrimp.Frontend/Iceshrimp.Frontend.csproj
··· 34 34 <PrivateAssets>all</PrivateAssets> 35 35 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> 36 36 </PackageReference> 37 - <PackageReference Include="Iceshrimp.Assets.PhosphorIcons" Version="2.0.3" /> 37 + <PackageReference Include="Iceshrimp.Assets.PhosphorIcons" Version="2.1.1" /> 38 38 </ItemGroup> 39 39 40 40 <ItemGroup>