mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-09 16:44:49 -04:00
update image sizes
This commit is contained in:
parent
6c6ea6083c
commit
cb36ebbf93
@ -108,6 +108,7 @@ namespace MediaBrowser.Api.Dlna
|
||||
private readonly IConnectionManager _connectionManager;
|
||||
private readonly IMediaReceiverRegistrar _mediaReceiverRegistrar;
|
||||
|
||||
// TODO: Add utf-8
|
||||
private const string XMLContentType = "text/xml";
|
||||
|
||||
public DlnaServerService(IDlnaManager dlnaManager, IContentDirectory contentDirectory, IConnectionManager connectionManager, IMediaReceiverRegistrar mediaReceiverRegistrar)
|
||||
|
@ -9,6 +9,7 @@ using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WebMarkupMin.Core;
|
||||
using WebMarkupMin.Core.Minifiers;
|
||||
using WebMarkupMin.Core.Settings;
|
||||
|
||||
@ -58,7 +59,7 @@ namespace MediaBrowser.WebDashboard.Api
|
||||
{
|
||||
// Don't apply any caching for html pages
|
||||
// jQuery ajax doesn't seem to handle if-modified-since correctly
|
||||
if (isHtml)
|
||||
if (isHtml && path.IndexOf("cordovaindex.html", StringComparison.OrdinalIgnoreCase) == -1)
|
||||
{
|
||||
resourceStream = await ModifyHtml(resourceStream, mode, localizationCulture, enableMinification).ConfigureAwait(false);
|
||||
}
|
||||
@ -137,7 +138,12 @@ namespace MediaBrowser.WebDashboard.Api
|
||||
{
|
||||
try
|
||||
{
|
||||
var minifier = new HtmlMinifier(new HtmlMinificationSettings());
|
||||
var minifier = new HtmlMinifier(new HtmlMinificationSettings
|
||||
{
|
||||
AttributeQuotesRemovalMode = HtmlAttributeQuotesRemovalMode.KeepQuotes,
|
||||
RemoveOptionalEndTags = false,
|
||||
RemoveTagsWithoutContent = false
|
||||
});
|
||||
var result = minifier.Minify(html, false);
|
||||
|
||||
if (result.Errors.Count > 0)
|
||||
|
@ -213,6 +213,9 @@
|
||||
<Content Include="dashboard-ui\thirdparty\apiclient\connectservice.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\thirdparty\cordova\cordovaindex.html">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\thirdparty\cordova\remotecontrols.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
Loading…
x
Reference in New Issue
Block a user