Bond_009
a9a5fcde81
Use ArgumentNullException.ThrowIfNull helper method
...
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)
```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```
```
ArgumentNullException.ThrowIfNull($1);
```
2 years ago
David Ullmer
4ba168c8a1
Add splashscreen builder
3 years ago
MrTimscampi
3b8947aba6
Add using keywords to non-disposed objects in BuildThumbCollageBitmap
4 years ago
MrTimscampi
8a65a6dfc3
Use artist backdrop for generated library image
4 years ago
Cody Robibero
e3f55a0c54
Reduce warnings in MediaBrowser.Controller ( #6006 )
...
Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com>
4 years ago
nyanmisaka
4839c2006b
fix boxes in library name backdrop for CJK character
4 years ago
David
9165dc3b3a
Scale down text if too long
4 years ago
David
d740e7aee6
Increase font size, center text
4 years ago
David
a3020f2917
Use backdrop with library name as library thumbnail
4 years ago
cvium
1dcc678a6a
Fix collages
4 years ago
Erwin de Haan
0f43780c8c
Apply suggestions from code review
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
5 years ago
Erwin de Haan
7ce99aaf78
Update SkiaSharp to 2.80.1 and replace resize code.
...
This fixed the blurry resized images in the Web UI.
5 years ago
Patrick Barron
196e8e131a
Convert to using declarations
5 years ago
Bond_009
2fcbc2a5b8
Enable nullabe reference types for Emby.Drawing and Jellyfin.Drawing.Skia
5 years ago
Mark Monteiro
2c3e1b8562
Enable StyleCop analyzer and fix existing issues
5 years ago
Mark Monteiro
88928118eb
Add missing documentation in Jellyfun.Drawing.Skia
5 years ago
Bond_009
aa30227545
Improve main code flow
...
Improved the way how some parts of the code depend on eachother
Fixed some style issues
6 years ago
dkanada
47095e6cf8
move a variable out of for loop
6 years ago
dkanada
e498e47109
remove mirror images from library thumbnail
6 years ago
Bond_009
a709cbdc64
Fix more analyzer warnings
6 years ago
Bond_009
ce11869a1a
Move Skia back into it's own project
6 years ago