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.

[build] Fix static assets not being mapped correctly

+5 -4
+1 -1
Iceshrimp.Build/Iceshrimp.Build.targets
··· 35 35 36 36 <!-- This rewrites the static asset endpoints JSON file to enable transparent decompression. --> 37 37 <Target Name="_RewriteStaticAssetManifest" AfterTargets="KeepOnlyBrotliCompressedStaticAssets"> 38 - <RewriteStaticAssetManifest Manifest="$(StaticWebAssetEndpointsBuildManifestPath)" /> 38 + <RewriteStaticAssetManifest Manifest="$(PublishDir)\Iceshrimp.Backend.staticwebassets.endpoints.json" /> 39 39 </Target> 40 40 41 41 </Project>
+4 -3
Iceshrimp.Build/RewriteStaticAssetManifestTask.cs
··· 123 123 } 124 124 } 125 125 126 - private sealed class StaticAssetSelector(string name, string value) 126 + private sealed class StaticAssetSelector(string name, string value, string quality) 127 127 { 128 - public string Name { get; } = name; 129 - public string Value { get; } = value; 128 + public string Name { get; } = name; 129 + public string Value { get; } = value; 130 + public string Quality { get; } = quality; 130 131 } 131 132 132 133 private sealed class StaticAssetProperty(string name, string value)