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.

[backend/razor] Use new favicon

+6 -5
+3 -2
Iceshrimp.Backend/Iceshrimp.Backend.csproj
··· 7 7 <UseCurrentRuntimeIdentifier>true</UseCurrentRuntimeIdentifier> 8 8 </PropertyGroup> 9 9 10 - <Import Project="..\Iceshrimp.Build\Iceshrimp.Build.props"/> 11 - <Import Project="..\Iceshrimp.Build\Iceshrimp.Build.targets"/> 10 + <Import Project="..\Iceshrimp.Build\Iceshrimp.Build.props" /> 11 + <Import Project="..\Iceshrimp.Build\Iceshrimp.Build.targets" /> 12 12 13 13 <ItemGroup> 14 14 <ProjectReference Include="..\Iceshrimp.Build\Iceshrimp.Build.csproj" PrivateAssets="all" Private="false" /> ··· 48 48 <PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> 49 49 <PackageReference Include="System.Text.Json" Version="9.0.0" /> 50 50 <PackageReference Include="Ulid" Version="1.3.4" /> 51 + <PackageReference Include="Iceshrimp.Assets.Branding" Version="1.0.1" /> 51 52 <PackageReference Include="Iceshrimp.AssemblyUtils" Version="1.0.3" /> 52 53 <PackageReference Include="Iceshrimp.MimeTypes" Version="1.0.1" /> 53 54 <PackageReference Include="Iceshrimp.WebPush" Version="2.1.0" />
+1 -1
Iceshrimp.Backend/Pages/Shared/ErrorPage.cshtml
··· 19 19 <link rel="stylesheet" href="~/Iceshrimp.Backend.styles.css"/> 20 20 <link rel="stylesheet" href="~/css/default.css"/> 21 21 @* ReSharper disable once Html.PathError *@ 22 - <link rel="icon" type="image/png" href="~/favicon.png"/> 22 + <link rel="icon" type="image/png" href="~/_content/Iceshrimp.Assets.Branding/favicon.png"/> 23 23 <style> 24 24 .float-right { 25 25 float: right;
+1 -1
Iceshrimp.Backend/Pages/Shared/RootComponent.razor
··· 17 17 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 18 18 <VersionedLink rel="stylesheet" href="/Iceshrimp.Backend.styles.css"/> 19 19 <VersionedLink rel="stylesheet" href="/css/default.css"/> 20 - <VersionedLink rel="icon" type="image/png" href="/favicon.png"/> 20 + <VersionedLink rel="icon" type="image/png" href="/_content/Iceshrimp.Assets.Branding/favicon.png"/> 21 21 <HeadOutlet/> 22 22 <PageTitle>@(_instanceName ?? "Iceshrimp.NET")</PageTitle> 23 23 </head>
+1 -1
Iceshrimp.Backend/Pages/Shared/_Layout.cshtml
··· 12 12 <link rel="stylesheet" href="~/Iceshrimp.Backend.styles.css"/> 13 13 <link rel="stylesheet" href="~/css/default.css"/> 14 14 @* ReSharper disable once Html.PathError *@ 15 - <link rel="icon" type="image/png" href="~/favicon.png"/> 15 + <link rel="icon" type="image/png" href="~/_content/Iceshrimp.Assets.Branding/favicon.png"/> 16 16 @await RenderSectionAsync("styles", false) 17 17 @await RenderSectionAsync("head", false) 18 18 </head>