Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing attributes #26

Merged
merged 2 commits into from
Jul 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Jellyfin.Plugin.Reports/Jellyfin.Plugin.Reports.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<FileVersion>7.0.0.0</FileVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<FileVersion>8.0.0.0</FileVersion>
<RootNamespace>Jellyfin.Plugin.Reports</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="Web\reports.html"/>
<None Remove="Web\reports.js"/>
<EmbeddedResource Include="Web\reports.html"/>
<EmbeddedResource Include="Web\reports.js"/>
<None Remove="Web\reports.html" />
<None Remove="Web\reports.js" />
<EmbeddedResource Include="Web\reports.html" />
<EmbeddedResource Include="Web\reports.js" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Jellyfin.Data" Version="10.*-*"/>
<PackageReference Include="Jellyfin.Controller" Version="10.*-*"/>
<PackageReference Include="Jellyfin.Data" Version="10.*-*" />
<PackageReference Include="Jellyfin.Controller" Version="10.*-*" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions Jellyfin.Plugin.Reports/Web/reports.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,9 @@ <h2>Episodes</h2>

<input type="checkbox" name="chkMissingEpisode" id="chkMissingEpisode">
<label for="chkMissingEpisode">Missing episodes</label><br />

<input type="checkbox" name="chkFutureEpisode" id="chkFutureEpisode">
<label for="chkFutureEpisode">Future episodes</label><br />
</div>
</div>
<div data-role="collapsible" data-collapsed="true" data-mini="true">
Expand Down
4 changes: 2 additions & 2 deletions Jellyfin.Plugin.Reports/Web/reports.js
Original file line number Diff line number Diff line change
Expand Up @@ -1611,8 +1611,8 @@ define(['jQuery', 'libraryBrowser', 'loading', 'appRouter', 'fnchecked', 'emby-b
$('#selectIncludeItemTypes').val(query.IncludeItemTypes);

// isfavorite
document.getElementById('isFavorite').checked = query.IsFavorite == true;
document.getElementById('isNotFavorite').checked = query.IsNotFavorite == true;
document.getElementById('chkIsFavorite').checked = query.IsFavorite == true;
document.getElementById('chkIsNotFavorite').checked = query.IsNotFavorite == true;


}
Expand Down
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "Reports"
guid: "d4312cd9-5c90-4f38-82e8-51da566790e8"
version: "7.0.0.0"
version: "8.0.0.0"
targetAbi: "10.6.0.0"
owner: "jellyfin"
overview: "Generate reports of your media library"
Expand Down