mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
feat(actions): qBittorrent add first-last piece priority (#1517)
* feat(actions): qBittorrent add first/last piece priority * removed accidental change * fix: scanrow order * fix: spaces vs tabs * bump(deps): upgrade go-qbittorrent to v1.9.0 * fix(test): add missing colon * fix(database): sqlite remove duplicate
This commit is contained in:
parent
7b9993b296
commit
56ef3a5402
11 changed files with 36 additions and 7 deletions
|
@ -197,6 +197,7 @@ CREATE TABLE action
|
|||
save_path TEXT,
|
||||
paused BOOLEAN,
|
||||
ignore_rules BOOLEAN,
|
||||
first_last_piece_prio BOOLEAN DEFAULT false,
|
||||
skip_hash_check BOOLEAN DEFAULT false,
|
||||
content_layout TEXT,
|
||||
limit_upload_speed INT,
|
||||
|
@ -873,5 +874,8 @@ ALTER TABLE filter
|
|||
ELSE name
|
||||
END
|
||||
WHERE server = 'irc.animebytes.tv';
|
||||
`,
|
||||
`ALTER TABLE action
|
||||
ADD COLUMN first_last_piece_prio BOOLEAN DEFAULT false;
|
||||
`,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue