Skip to content

Commit

Permalink
Merge pull request #13 from jellyfin/10.7
Browse files Browse the repository at this point in the history
Target 10.7
  • Loading branch information
oddstr13 authored Dec 3, 2020
2 parents 5c0b349 + bf0645d commit 37cdfad
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 16 deletions.
6 changes: 3 additions & 3 deletions Jellyfin.Plugin.ServerWMC/Jellyfin.Plugin.ServerWMC.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.ServerWMC</RootNamespace>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<FileVersion>5.0.0.0</FileVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>6.0.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 0 additions & 3 deletions Jellyfin.Plugin.ServerWMC/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Plugins;
using MediaBrowser.Model.Serialization;
using Microsoft.Extensions.Logging;
using System.IO;
using MediaBrowser.Model.Drawing;

namespace Jellyfin.Plugin.ServerWMC
{
Expand Down
1 change: 0 additions & 1 deletion Jellyfin.Plugin.ServerWMC/RecordingsChannel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Channels;
Expand Down
1 change: 0 additions & 1 deletion Jellyfin.Plugin.ServerWMC/SocketClient.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.Sockets;
Expand Down
1 change: 0 additions & 1 deletion Jellyfin.Plugin.ServerWMC/SocketClientAsync.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.Sockets;
Expand Down
6 changes: 1 addition & 5 deletions Jellyfin.Plugin.ServerWMC/WMCService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,14 @@
using System.Text;
using System.Threading.Tasks;
using System.IO;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.LiveTv;
using System.Threading;
using System.Reflection;
using System.Diagnostics;
using Microsoft.Extensions.Logging;
using MediaBrowser.Model.Entities;
using MediaBrowser.Controller.Channels;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.Dto;
using System.Net;
using System.Xml.Linq;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.IO;
Expand Down Expand Up @@ -62,7 +58,7 @@ public class WMCService : ILiveTvService, IDisposable
/// <summary>
/// constructor
/// </summary>
public WMCService(IHttpClient httpClient, IFileSystem fileSystem, ILoggerFactory loggerFactory)
public WMCService(IFileSystem fileSystem, ILoggerFactory loggerFactory)
{
Instance = this;
_logger = loggerFactory.CreateLogger<WMCService>(); // start logger
Expand Down
5 changes: 3 additions & 2 deletions build.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
name: "ServerWMC"
guid: "1fc322a1-af2e-49a5-b2eb-a89b4240f700"
version: "5.0.0.0"
targetAbi: "10.6.0.0"
version: "6.0.0.0"
targetAbi: "10.7.0.0"
framework: "net5.0"
overview: "Jellyfin Live TV plugin for Windows MediaCenter with ServerWMC"
description: >
Provides access to Live TV, Program Guide and Recordings from your Windows MediaCenter Server running ServerWMC.
Expand Down

0 comments on commit 37cdfad

Please sign in to comment.