Skip to content

Commit

Permalink
Merge pull request #12 from oddstr13/pr-10.6-1
Browse files Browse the repository at this point in the history
Also build against prerelease builds
  • Loading branch information
crobibero authored Jul 16, 2020
2 parents f5a5b5c + d19cd77 commit 5c0b349
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Jellyfin.Plugin.ServerWMC/Jellyfin.Plugin.ServerWMC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>Jellyfin.Plugin.ServerWMC</RootNamespace>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<FileVersion>5.0.0.0</FileVersion>
</PropertyGroup>

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

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Jellyfin.Plugin.ServerWMC/WMCService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class WMCService : ILiveTvService, IDisposable
int _idStreamInt = 0; // use to generate stream Id
string _serverWMC_version = "unknown";
private int _serverWMC_build = 0;
private readonly ILogger _logger;
private readonly ILogger<WMCService> _logger;

private readonly string HTTP = @"http://";

Expand All @@ -65,7 +65,7 @@ public class WMCService : ILiveTvService, IDisposable
public WMCService(IHttpClient httpClient, IFileSystem fileSystem, ILoggerFactory loggerFactory)
{
Instance = this;
_logger = loggerFactory.CreateLogger(GetType().Name); // start logger
_logger = loggerFactory.CreateLogger<WMCService>(); // start logger
_clientVersion = Assembly.GetExecutingAssembly().GetName().Version.ToString();

SocketClientAsync.InitAddress(Plugin.Instance.Configuration.ServerIP, Plugin.Instance.Configuration.ServerPort); // set ip and port
Expand Down
6 changes: 3 additions & 3 deletions build.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: "ServerWMC"
guid: "1fc322a1-af2e-49a5-b2eb-a89b4240f700"
version: "4.0.0.0"
targetAbi: "10.5.0.0"
version: "5.0.0.0"
targetAbi: "10.6.0.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 All @@ -12,4 +12,4 @@ owner: "jellyfin"
artifacts:
- "Jellyfin.Plugin.ServerWMC.dll"
changelog: >
changelog
changelog

0 comments on commit 5c0b349

Please sign in to comment.