-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(processor): improve release comparing (#67)
* refactor(processor): improve release comparing * chore(config): add compareRepackStatus to config * refactor(processor): rewrote release comparer & added more logging * chore(tests): adjust formatting tests * fix(processor): log formatting * fix(release): copy paste error * fix(release): continue after condition not matching * fix(processor): incorrect response codes * chore(processor): clearer logging * chore: add missing license header * chore(processor): improve logging again * feat(config): fuzzyMatching options * chore: remove fuzzy matching debug logging * chore(config): added default value info * docs(readme): added info about fuzzy matching * chore(release): update comments to reflect name changes * fix(release): don't modify slice when comparing * fix(slices): check for empty hdr slice
- Loading branch information
Showing
10 changed files
with
285 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) 2023 - 2024, nuxen and the seasonpackarr contributors. | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
package domain | ||
|
||
import ( | ||
"github.com/autobrr/go-qbittorrent" | ||
"github.com/moistari/rls" | ||
) | ||
|
||
type Entry struct { | ||
T qbittorrent.Torrent | ||
R rls.Release | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.