10 Commits

Author SHA1 Message Date
Daniel
fd2bf25d92 Merge pull request #59 from accusitive/patch-1
Update README.md to the new Jellyfin link
2023-09-16 16:41:59 +02:00
accusitive
5f31f40700 Update README.md to the new Jellyfin link
The old link seems to be malicious (or spam)
2023-09-15 22:16:28 -04:00
Daniel
a26110a15e Merge pull request #46 from jenslys/fix-jellyskin-url
Updated JellySkin
2022-08-18 16:06:01 +02:00
Jens
2a2859bc16 updated JellySkin 2022-08-18 15:52:50 +02:00
Daniel
b72546b3eb Added JellyTheme 2022-06-14 19:04:51 +02:00
Daniel
84c4462648 Added ultrachromic and new color picked mode 2022-06-14 17:56:25 +02:00
Mister Rajoy
a970349a1f Fix error 2021-12-06 18:09:21 +01:00
Mister Rajoy
deeb8976f6 Add Dark And Green Skin 2021-12-06 18:02:18 +01:00
Mister Rajoy
a00e8b6352 Update thumb.png 2021-05-15 00:56:51 +02:00
Mister Rajoy
4b63aa0c8c Add thumb 2021-05-14 17:05:14 +02:00
5 changed files with 876 additions and 445 deletions

View File

@@ -433,7 +433,19 @@
for (var i = 0; i < inputs.length; i++) {
var element = inputs[i]
var values = $("#" + element.name).spectrum("get")
var color = "rgba(" + values._r + "," + values._g + "," + values._b + "," + values._a + ")"
var mode = element.getAttribute("data-mode");
var color = "";
switch (mode) {
case "hex":
color = "#" + values.toHex();
break;
case "only_numbers":
color = values._r + "," + values._g + "," + values._b ;
break;
default:
color = "rgba(" + values._r + "," + values._g + "," + values._b + "," + values._a + ")";
break;
}
css += element.getAttribute("data-css").replaceAll("$", color) + "\n";
}

View File

@@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<IsPackable>true</IsPackable>
<AssemblyVersion>1.5.0</AssemblyVersion>
<FileVersion>1.5.0</FileVersion>
<AssemblyVersion>2.0.1</AssemblyVersion>
<FileVersion>2.0.1</FileVersion>
<Authors />
<Company />
</PropertyGroup>

View File

@@ -1,5 +1,5 @@
<h1 align="center">Jellyfin Skin Manager Plugin</h1>
<h3 align="center">Part of the <a href="https://jellyfin.media">Jellyfin Project</a></h3>
<h3 align="center">Part of the <a href="https://jellyfin.org">Jellyfin Project</a></h3>
<p align="center">
Jellyfin Skin Manager is a plugin that helps you to download and install skins;

File diff suppressed because it is too large Load Diff

BIN
src/img/thumb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB