Skip to content

Commit 4bf9b43

Browse files
Merge pull request #72 from jellyfin/meta
Update metadata and remove deprecated checkbox method
2 parents 32d5df4 + 5e82224 commit 4bf9b43

File tree

3 files changed

+18
-23
lines changed

3 files changed

+18
-23
lines changed

Diff for: Jellyfin.Plugin.Anime/Configuration/configPage.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@
7373

7474
$('#titleLanguage', page).val(config.TitlePreference).change();
7575
$('#chkMaxGenres', page).val(config.MaxGenres).change();
76-
$('#chkTidyGenres', page).checked(config.TidyGenreList).checkboxradio("refresh");
77-
$('#chkAddAnimeGenre', page).checked(config.AddAnimeGenre).checkboxradio("refresh");
76+
$('#chkTidyGenres', page).checked = config.TidyGenreList;
77+
$('#chkAddAnimeGenre', page).checked = config.AddAnimeGenre;
7878
$('#chkAniDbWaitTime', page).val(config.AniDbWaitTime).change();
79-
$('#chkAniDbOrderWithSeasons', page).checked(config.AniDbOrderWithSeasons).checkboxradio("refresh");
80-
$('#chkAniDbReplaceGraves', page).checked(config.AniDbReplaceGraves).checkboxradio("refresh");
79+
$('#chkAniDbOrderWithSeasons', page).checked = config.AniDbOrderWithSeasons;
80+
$('#chkAniDbReplaceGraves', page).checked = config.AniDbReplaceGraves;
8181

8282
Dashboard.hideLoadingMsg();
8383
});
@@ -91,11 +91,11 @@
9191

9292
config.TitlePreference = $('#titleLanguage', page).val();
9393
config.MaxGenres = $('#chkMaxGenres').val();
94-
config.TidyGenreList = $('#chkTidyGenres').prop('checked');
95-
config.AddAnimeGenre = $('#chkAddAnimeGenre').prop('checked');
94+
config.TidyGenreList = $('#chkTidyGenres').checked;
95+
config.AddAnimeGenre = $('#chkAddAnimeGenre').checked;
9696
config.AniDbWaitTime = $('#chkAniDbWaitTime').val();
97-
config.AniDbOrderWithSeasons = $('#chkAniDbOrderWithSeasons').prop('checked');
98-
config.AniDbReplaceGraves = $('#chkAniDbReplaceGraves').prop('checked');
97+
config.AniDbOrderWithSeasons = $('#chkAniDbOrderWithSeasons').checked;
98+
config.AniDbReplaceGraves = $('#chkAniDbReplaceGraves').checked;
9999

100100
ApiClient.updatePluginConfiguration(AnimeConfigurationPage.pluginUniqueId, config).then(function (result) {
101101
Dashboard.processPluginConfigurationUpdateResult(result);

Diff for: Jellyfin.Plugin.Anime/Jellyfin.Plugin.Anime.csproj

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<RootNamespace>Jellyfin.Plugin.Anime</RootNamespace>
6-
<AssemblyVersion>8.0.0</AssemblyVersion>
7-
<FileVersion>8.0.0</FileVersion>
6+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
7+
<FileVersion>8.0.0.0</FileVersion>
88
</PropertyGroup>
99

1010
<ItemGroup>
@@ -13,9 +13,6 @@
1313

1414
<ItemGroup>
1515
<None Remove="Configuration\configPage.html" />
16-
</ItemGroup>
17-
18-
<ItemGroup>
1916
<EmbeddedResource Include="Configuration\configPage.html" />
2017
</ItemGroup>
2118

Diff for: build.yaml

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
---
2-
name: "jellyfin-plugin-anime"
2+
name: "Anime"
33
guid: "a4df60c5-6ab4-412a-8f79-2cab93fb2bc5"
4-
version: "8"
5-
jellyfin_version: "10.5.0"
4+
version: "8.0.0.0"
5+
targetAbi: "10.5.0.0"
66
owner: "jellyfin"
7-
nicename: "Anime"
8-
description: "Manage your Anime in Jellyfin"
9-
overview: >
7+
overview: "Manage your anime from Jellyfin"
8+
description: >
109
Manage your anime in Jellyfin. This plugin supports several different metadata providers
1110
and options for organizing your collection.
1211
category: "Metadata"
1312
artifacts:
14-
- "Jellyfin.Plugin.Anime.dll"
15-
build_type: "dotnet"
16-
dotnet_configuration: "Release"
17-
dotnet_framework: "netstandard2.1"
13+
- "Jellyfin.Plugin.Anime.dll"
14+
changelog: >
15+
changelog

0 commit comments

Comments
 (0)