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: remove fnchecked #27

Merged
merged 4 commits into from
Oct 16, 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
4 changes: 2 additions & 2 deletions Jellyfin.Plugin.Reports/Jellyfin.Plugin.Reports.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

Expand Down
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.Reports/Web/reports.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div id="libraryReportManagerPage" data-role="page" class="page type-interior reportsPage pluginConfigurationPage data-require="emby-input,emby-button,emby-checkbox,emby-select"" data-title="Reports" data-controller="__plugin/reportsjs">
<div id="libraryReportManagerPage" data-role="page" class="page type-interior reportsPage pluginConfigurationPage" data-title="Reports" data-controller="__plugin/reportsjs">
<style>

/* "page" containers - full-screen views, one should always be in view post-pageload */
Expand Down
4 changes: 2 additions & 2 deletions Jellyfin.Plugin.Reports/Web/reports.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(['jQuery', 'libraryBrowser', 'loading', 'appRouter', 'fnchecked', 'emby-button', 'paper-icon-button-light', 'detailtablecss'], function ($, libraryBrowser, loading, appRouter) {
define(['jQuery', 'libraryBrowser', 'loading', 'appRouter', 'emby-button', 'paper-icon-button-light', 'detailtablecss'], function ($, libraryBrowser, loading, appRouter) {
'use strict';

if (!jQuery.mobile || !$.mobile.widgets) {
Expand Down Expand Up @@ -1256,7 +1256,7 @@ define(['jQuery', 'libraryBrowser', 'loading', 'appRouter', 'fnchecked', 'emby-b
html += rItem.Name;
break;
case "Detail":
html += '<a target="_blank" class="button-link" href="index.html#!/edititemmetadata.html?' + appRouter.getRouteUrl({ Id: id, ServerId: serverId }) + '"><i class="material-icons mode_edit"></i></a> <a target="_blank" class="button-link" href="index.html#!/' + appRouter.getRouteUrl({ Id: id, ServerId: serverId }) + '">' + rItem.Name + '</a>';
html += '<a is="emby-linkbutton" class="button-link" href="' + appRouter.getRouteUrl({ Id: id, ServerId: serverId }) + '">' + rItem.Name + '</a>';
break;
case "Edit":
html += '<a is="emby-button" class="button-link" href="edititemmetadata.html?id=' + rRow.Id + '">' + rItem.Name + '</a>';
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: "8.0.0.0"
version: "9.0.0.0"
targetAbi: "10.6.0.0"
owner: "jellyfin"
overview: "Generate reports of your media library"
Expand Down