Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d740e7aee6582d576c5bc2688df3c356203f5974 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Increase font size, center text

pull/3954/head
David 5 years ago
parent a3020f2917
commit d740e7aee6

@ -123,12 +123,12 @@ namespace Jellyfin.Drawing.Skia
{
Color = SKColors.White,
Style = SKPaintStyle.Fill,
TextSize = 56,
TextSize = 112,
TextAlign = SKTextAlign.Center,
Typeface = SKTypeface.FromFamilyName("sans-serif", SKFontStyleWeight.Bold, SKFontStyleWidth.Normal, SKFontStyleSlant.Upright),
IsAntialias = true
};
canvas.DrawText(libraryName, width / 2f, height / 2f, textPaint);
canvas.DrawText(libraryName, width / 2f, (height / 2f) + (textPaint.FontMetrics.XHeight / 2), textPaint);
return bitmap;
}

Loading…
Cancel
Save