mirror of
https://github.com/jellyfin/jellyfin-plugin-reports.git
synced 2024-11-22 21:29:50 +00:00
minor changes to build metadata
This commit is contained in:
parent
0edd20900f
commit
6c4f951488
@ -2,17 +2,14 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
<AssemblyVersion>6.0.0</AssemblyVersion>
|
||||
<FileVersion>6.0.0</FileVersion>
|
||||
<AssemblyVersion>6.0.0.0</AssemblyVersion>
|
||||
<FileVersion>6.0.0.0</FileVersion>
|
||||
<RootNamespace>Jellyfin.Plugin.Reports</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="Web\reports.html"/>
|
||||
<None Remove="Web\reports.js"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Web\reports.html"/>
|
||||
<EmbeddedResource Include="Web\reports.js"/>
|
||||
</ItemGroup>
|
||||
|
@ -1449,7 +1449,7 @@ define(['jQuery', 'libraryBrowser', 'loading', 'appRouter', 'fnchecked', 'emby-b
|
||||
$('#selectReportGroupingBox', page).show();
|
||||
$('#grpReportsColumns', page).show();
|
||||
|
||||
var initial_state = $('#chkStartCollapsed', page).prop('checked');
|
||||
var initial_state = $('#chkStartCollapsed', page).checked;
|
||||
html += getTable(result, initial_state);
|
||||
|
||||
$('.reporContainer', page).html(html).trigger('create');
|
||||
@ -1582,37 +1582,37 @@ define(['jQuery', 'libraryBrowser', 'loading', 'appRouter', 'fnchecked', 'emby-b
|
||||
|
||||
});
|
||||
|
||||
$('#chk3D', page).checked(query.Is3D == true);
|
||||
$('#chkHD', page).checked(query.IsHD == true);
|
||||
$('#chkSD', page).checked(query.IsHD == false);
|
||||
$('#chk3D', page).checked = query.Is3D == true;
|
||||
$('#chkHD', page).checked = query.IsHD == true;
|
||||
$('#chkSD', page).checked = query.IsHD == false;
|
||||
|
||||
$('#chkSubtitle', page).checked(query.HasSubtitles == true);
|
||||
$('#chkTrailer', page).checked(query.HasTrailer == true);
|
||||
$('#chkMissingTrailer', page).checked(query.HasTrailer == false);
|
||||
$('#chkSpecialFeature', page).checked(query.HasSpecialFeature == true);
|
||||
$('#chkThemeSong', page).checked(query.HasThemeSong == true);
|
||||
$('#chkThemeVideo', page).checked(query.HasThemeVideo == true);
|
||||
$('#chkSubtitle', page).checked = query.HasSubtitles == true;
|
||||
$('#chkTrailer', page).checked = query.HasTrailer == true;
|
||||
$('#chkMissingTrailer', page).checked = query.HasTrailer == false;
|
||||
$('#chkSpecialFeature', page).checked = query.HasSpecialFeature == true;
|
||||
$('#chkThemeSong', page).checked = query.HasThemeSong == true;
|
||||
$('#chkThemeVideo', page).checked = query.HasThemeVideo == true;
|
||||
|
||||
$('#selectPageSize', page).val(query.Limit);
|
||||
|
||||
//Management
|
||||
$('#chkMissingRating', page).checked(query.HasOfficialRating == false);
|
||||
$('#chkMissingOverview', page).checked(query.HasOverview == false);
|
||||
$('#chkIsLocked', page).checked(query.IsLocked == true);
|
||||
$('#chkMissingImdbId', page).checked(query.HasImdbId == false);
|
||||
$('#chkMissingTmdbId', page).checked(query.HasTmdbId == false);
|
||||
$('#chkMissingTvdbId', page).checked(query.HasTvdbId == false);
|
||||
$('#chkMissingRating', page).checked = query.HasOfficialRating == false;
|
||||
$('#chkMissingOverview', page).checked = query.HasOverview == false;
|
||||
$('#chkIsLocked', page).checked = query.IsLocked == true;
|
||||
$('#chkMissingImdbId', page).checked = query.HasImdbId == false;
|
||||
$('#chkMissingTmdbId', page).checked = query.HasTmdbId == false;
|
||||
$('#chkMissingTvdbId', page).checked = query.HasTvdbId == false;
|
||||
|
||||
//Episodes
|
||||
$('#chkSpecialEpisode', page).checked(query.ParentIndexNumber == 0);
|
||||
$('#chkMissingEpisode', page).checked(query.IsMissing == true);
|
||||
$('#chkFutureEpisode', page).checked(query.IsUnaired == true);
|
||||
$('#chkSpecialEpisode', page).checked = query.ParentIndexNumber == 0;
|
||||
$('#chkMissingEpisode', page).checked = query.IsMissing == true;
|
||||
$('#chkFutureEpisode', page).checked = query.IsUnaired == true;
|
||||
|
||||
$('#selectIncludeItemTypes').val(query.IncludeItemTypes);
|
||||
|
||||
// isfavorite
|
||||
$('#isFavorite').checked(query.IsFavorite == true);
|
||||
$('#isNotFavorite').checked(query.IsNotFavorite == true);
|
||||
$('#isFavorite').checked = query.IsFavorite == true;
|
||||
$('#isNotFavorite').checked = query.IsNotFavorite == true;
|
||||
|
||||
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 60 KiB |
@ -1,5 +1,5 @@
|
||||
<h1 align="center">Jellyfin Reports Plugin</h1>
|
||||
<h3 align="center">Part of the <a href="https://jellyfin.org/">Jellyfin Project</a></h3>
|
||||
<h3 align="center">Part of the <a href="https://jellyfin.org">Jellyfin Project</a></h3>
|
||||
|
||||
## About
|
||||
|
||||
@ -10,7 +10,9 @@ These reports can be exported to Excel and CSV formats.
|
||||
## Build & Installation Process
|
||||
|
||||
1. Clone this repository
|
||||
|
||||
2. Ensure you have .NET Core SDK set up and installed
|
||||
|
||||
3. Build the plugin with your favorite IDE or the `dotnet` command:
|
||||
|
||||
```
|
||||
@ -18,7 +20,3 @@ dotnet publish --configuration Release --output bin
|
||||
```
|
||||
|
||||
4. Place the resulting `Jellyfin.Plugin.Reports.dll` file in a folder called `plugins/` inside your Jellyfin data directory
|
||||
|
||||
### Screenshot
|
||||
|
||||
<img src=screenshot.png>
|
||||
|
16
build.yaml
16
build.yaml
@ -1,15 +1,13 @@
|
||||
---
|
||||
name: "jellyfin-plugin-reports"
|
||||
name: "Reports"
|
||||
guid: "d4312cd9-5c90-4f38-82e8-51da566790e8"
|
||||
version: "6"
|
||||
jellyfin_version: "10.5.0"
|
||||
version: "6.0.0.0"
|
||||
targetAbi: "10.5.0.0"
|
||||
owner: "jellyfin"
|
||||
nicename: "Reports"
|
||||
description: "Generate reports of your media library"
|
||||
overview: "Generate reports of your media library"
|
||||
description: "Generate reports of your media library"
|
||||
category: "General"
|
||||
artifacts:
|
||||
- "Jellyfin.Plugin.Reports.dll"
|
||||
build_type: "dotnet"
|
||||
dotnet_configuration: "Release"
|
||||
dotnet_framework: "netstandard2.1"
|
||||
- "Jellyfin.Plugin.Reports.dll"
|
||||
changelog: >
|
||||
changelog
|
||||
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 150 KiB |
Loading…
Reference in New Issue
Block a user