Skip to content
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 .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ env:
# Disable sending usage data to Microsoft
DOTNET_CLI_TELEMETRY_OPTOUT: true
PLUGIN_NAME: Lidarr.Plugin.Deemix
PLUGIN_VERSION: 1.0.2.${{ github.run_number }}
MINIMUM_LIDARR_VERSION: 2.9.4.4538
PLUGIN_VERSION: 1.0.3.${{ github.run_number }}
MINIMUM_LIDARR_VERSION: 2.13.0.4664
DOTNET_VERSION: 6.0.427

jobs:
Expand Down
2 changes: 1 addition & 1 deletion src/Lidarr
Submodule Lidarr updated 187 files
4 changes: 3 additions & 1 deletion src/Lidarr.Plugin.Deemix/Download/Clients/Deemix/Deemix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using NzbDrone.Common.Http;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Indexers;
using NzbDrone.Core.Localization;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.RemotePathMappings;
using NzbDrone.Core.Validation;
Expand All @@ -22,8 +23,9 @@ public Deemix(IDeemixProxy proxy,
IConfigService configService,
IDiskProvider diskProvider,
IRemotePathMappingService remotePathMappingService,
ILocalizationService localizationService,
Logger logger)
: base(configService, diskProvider, remotePathMappingService, logger)
: base(configService, diskProvider, remotePathMappingService, localizationService, logger)
{
_proxy = proxy;
}
Expand Down