Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd2bf25d92 | ||
|
|
5f31f40700 | ||
|
|
a26110a15e | ||
|
|
2a2859bc16 | ||
|
|
b72546b3eb | ||
|
|
84c4462648 | ||
|
|
a970349a1f | ||
|
|
deeb8976f6 | ||
|
|
a00e8b6352 | ||
|
|
4b63aa0c8c |
@@ -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";
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
|
||||
1301
skins-3.0.json
1301
skins-3.0.json
File diff suppressed because it is too large
Load Diff
BIN
src/img/thumb.png
Normal file
BIN
src/img/thumb.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 84 KiB |
Reference in New Issue
Block a user