mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-09 05:22:09 +02:00
Compare commits
7 commits
v2.3.5.532
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
18fe4ec495 | ||
|
|
de8738f1d3 | ||
|
|
46ce8e2701 | ||
|
|
c687bdb1fb | ||
|
|
b2d49164bc | ||
|
|
28bd80d3aa | ||
|
|
0ffcfccf1d |
8 changed files with 10 additions and 8 deletions
|
|
@ -9,7 +9,7 @@ variables:
|
||||||
testsFolder: './_tests'
|
testsFolder: './_tests'
|
||||||
yarnCacheFolder: $(Pipeline.Workspace)/.yarn
|
yarnCacheFolder: $(Pipeline.Workspace)/.yarn
|
||||||
nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages
|
nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages
|
||||||
majorVersion: '2.3.5'
|
majorVersion: '2.3.7'
|
||||||
minorVersion: $[counter('minorVersion', 1)]
|
minorVersion: $[counter('minorVersion', 1)]
|
||||||
prowlarrVersion: '$(majorVersion).$(minorVersion)'
|
prowlarrVersion: '$(majorVersion).$(minorVersion)'
|
||||||
buildName: '$(Build.SourceBranchName).$(prowlarrVersion)'
|
buildName: '$(Build.SourceBranchName).$(prowlarrVersion)'
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,12 @@
|
||||||
"name": "__INSTANCE_NAME__",
|
"name": "__INSTANCE_NAME__",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "android-chrome-192x192.png",
|
"src": "__URL_BASE__/Content/Images/Icons/android-chrome-192x192.png",
|
||||||
"sizes": "192x192",
|
"sizes": "192x192",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "android-chrome-512x512.png",
|
"src": "__URL_BASE__/Content/Images/Icons/android-chrome-512x512.png",
|
||||||
"sizes": "512x512",
|
"sizes": "512x512",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -120,7 +120,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(SearchCriteriaBase searchCr
|
||||||
baseUrl += "&apikey=" + Settings.ApiKey;
|
baseUrl += "&apikey=" + Settings.ApiKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (searchCriteria.Limit.HasValue)
|
if (searchCriteria.Limit is > 0)
|
||||||
{
|
{
|
||||||
parameters.Add("limit", searchCriteria.Limit.ToString());
|
parameters.Add("limit", searchCriteria.Limit.ToString());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -263,7 +263,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(SearchCriteriaBase searchCr
|
||||||
searchUrl += "&apikey=" + Settings.ApiKey;
|
searchUrl += "&apikey=" + Settings.ApiKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (searchCriteria.Limit.HasValue)
|
if (searchCriteria.Limit is > 0)
|
||||||
{
|
{
|
||||||
parameters.Set("limit", searchCriteria.Limit.ToString());
|
parameters.Set("limit", searchCriteria.Limit.ToString());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
namespace NzbDrone.Core.Indexers.Definitions
|
namespace NzbDrone.Core.Indexers.Definitions
|
||||||
{
|
{
|
||||||
|
[Obsolete("Migrated to YAML for Torznab API")]
|
||||||
public class SceneTime : TorrentIndexerBase<SceneTimeSettings>
|
public class SceneTime : TorrentIndexerBase<SceneTimeSettings>
|
||||||
{
|
{
|
||||||
public override string Name => "SceneTime";
|
public override string Name => "SceneTime";
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
namespace NzbDrone.Core.Indexers.Definitions
|
namespace NzbDrone.Core.Indexers.Definitions
|
||||||
{
|
{
|
||||||
|
[Obsolete("Site does not allow automation")]
|
||||||
public class ZonaQ : TorrentIndexerBase<UserPassTorrentBaseSettings>
|
public class ZonaQ : TorrentIndexerBase<UserPassTorrentBaseSettings>
|
||||||
{
|
{
|
||||||
public override string Name => "ZonaQ";
|
public override string Name => "ZonaQ";
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<PackageReference Include="AngleSharp.Xml" Version="1.0.0" />
|
<PackageReference Include="AngleSharp.Xml" Version="1.0.0" />
|
||||||
<PackageReference Include="Dapper" Version="2.1.66" />
|
<PackageReference Include="Dapper" Version="2.1.66" />
|
||||||
<PackageReference Include="Diacritical.Net" Version="1.0.4" />
|
<PackageReference Include="Diacritical.Net" Version="1.0.4" />
|
||||||
<PackageReference Include="MailKit" Version="4.14.0" />
|
<PackageReference Include="MailKit" Version="4.16.0" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="8.0.16" />
|
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="8.0.16" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.16" />
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.16" />
|
||||||
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.1" />
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.1" />
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ public SearchResource()
|
||||||
public string Type { get; set; }
|
public string Type { get; set; }
|
||||||
public List<int> IndexerIds { get; set; }
|
public List<int> IndexerIds { get; set; }
|
||||||
public List<int> Categories { get; set; }
|
public List<int> Categories { get; set; }
|
||||||
public int Limit { get; set; }
|
public int? Limit { get; set; }
|
||||||
public int Offset { get; set; }
|
public int? Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue