Skip to content

Commit

Permalink
Merge remote-tracking branch 'cross-seed/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
BaukeZwart committed Jul 2, 2023
2 parents b32b69d + 984d714 commit 5aab065
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 31 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
ghcr.io/${{ github.repository_owner }}/cross-seed
tags: |
type=semver,pattern=version-{{version}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=ref,event=branch
type=ref,event=pr
Expand Down
54 changes: 27 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cross-seed",
"version": "5.2.0",
"version": "5.3.0",
"description": "Query Jackett for cross-seedable torrents",
"scripts": {
"test": "true",
Expand Down
2 changes: 1 addition & 1 deletion src/cmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function createCommandWithSharedOptions(name, description) {
.option(
"--search-limit <number>",
"The number of searches before stops",
parseFloat,
parseInt,
fallback(fileConfig.searchLimit, 0)
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/config.template.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ module.exports = {

/**
* The number of searches to be done before it stop.
* Combine this with "excludeRecentSearch" and "searchCadence" for better results.
* Combine this with "excludeRecentSearch" and "searchCadence" to smooth long-term API usage patterns.
* Default is no limit.
*/
searchLimit: undefined,
Expand Down
2 changes: 1 addition & 1 deletion src/config.template.docker.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ module.exports = {

/**
* The number of searches to be done before stop.
* Combine this with "excludeRecentSearch" and "searchCadence" for better results.
* Combine this with "excludeRecentSearch" and "searchCadence" to smooth long-term API usage patterns.
* Default is no limit.
*/
searchLimit: undefined,
Expand Down

0 comments on commit 5aab065

Please sign in to comment.