qbit_manage/web-ui/js/config-schemas/settings.js
bobokun 9ee3527853
v4.5.3 (#900)
# Requirements Updated
- "retrying==1.4.2",


# New Features
- **Web UI**: Implement dynamic schedule management via web UI/API
- **Share Limits**: Add limit upload speed when share limits are reached
(New config option: `upload_speed_on_limit_reached`) (Fixes #731, #737,
#703)
- **Share Limits**: Add min/max torrent size filters (New config option:
`min_torrent_size` / `max_torrent_size`) (Fixes #472)
- **Remove Unregistered**: Add grace period for unregistered torrent
removal (New config option: `rem_unregistered_grace_minutes`) (Fixes
#898)
- **Scheduler (Web API)**: Implement dynamic schedule management via web
API

# Improvements
- **Mover Script**: Allow granular control with pause, resume and move
args
- **web UI**: When saving, don’t delete config comments and empty lines
(Fixes #890)

# Bug Fixes
- Fix Error acquiring lock: cannot assign to field '_last_run_start'
(Fixes #895)
- Fix remove_orphaned not working correctly with `remote_dir` and
reporting 0 files removed
- fix(web-ui): prevent XSS vulnerabilities and prototype pollution
- Potential fix for code scanning alert no. 13: Client-side cross-site
scripting (#896)



**Full Changelog**:
https://github.com/StuffAnThings/qbit_manage/compare/v4.5.2...v4.5.3

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2025-08-08 20:57:06 -04:00

133 lines
5.4 KiB
JavaScript

export const settingsSchema = {
title: 'General Settings',
description: 'Configure general application settings and default behaviors.',
fields: [
{
name: 'force_auto_tmm',
type: 'boolean',
label: 'Force Auto TMM',
description: 'Force qBittorrent to enable Automatic Torrent Management (ATM) for each torrent.',
default: false
},
{
name: 'force_auto_tmm_ignore_tags',
type: 'array',
label: 'Force Auto TMM Ignore Tags',
description: 'Torrents with these tags will be ignored when force_auto_tmm is enabled.',
items: { type: 'text' }
},
{
name: 'tracker_error_tag',
type: 'text',
label: 'Tracker Error Tag',
description: 'The tag to apply to torrents that have a tracker error. Used by the `tag_tracker_error` command.',
default: 'issue'
},
{
name: 'nohardlinks_tag',
type: 'text',
label: 'No Hard Links Tag',
description: 'The tag to apply to torrents that do not have any hardlinks. Used by the `tag_nohardlinks` command.',
default: 'noHL'
},
{
name: 'stalled_tag',
type: 'text',
label: 'Stalled Tag',
description: 'The tag to apply to torrents that are stalled during download.',
default: 'stalledDL'
},
{
name: 'share_limits_tag',
type: 'text',
label: 'Share Limits Tag',
description: 'The prefix for tags created by share limit groups. For example, a group named "group1" with priority 1 would get the tag "~share_limit_1.group1".',
default: '~share_limit'
},
{
name: 'share_limits_min_seeding_time_tag',
type: 'text',
label: 'Min Seeding Time Tag',
description: 'The tag to apply to torrents that have not met their minimum seeding time requirement in a share limit group.',
default: 'MinSeedTimeNotReached'
},
{
name: 'share_limits_min_num_seeds_tag',
type: 'text',
label: 'Min Num Seeds Tag',
description: 'The tag to apply to torrents that have not met their minimum number of seeds requirement in a share limit group.',
default: 'MinSeedsNotMet'
},
{
name: 'share_limits_last_active_tag',
type: 'text',
label: 'Last Active Tag',
description: 'The tag to apply to torrents that have not met their last active time requirement in a share limit group.',
default: 'LastActiveLimitNotReached'
},
{
name: 'cat_filter_completed',
type: 'boolean',
label: 'Category Filter Completed',
description: 'If true, the `cat_update` command will only process completed torrents.',
default: true
},
{
name: 'share_limits_filter_completed',
type: 'boolean',
label: 'Share Limits Filter Completed',
description: 'If true, the `share_limits` command will only process completed torrents.',
default: true
},
{
name: 'tag_nohardlinks_filter_completed',
type: 'boolean',
label: 'Tag No Hardlinks Filter Completed',
description: 'If true, the `tag_nohardlinks` command will only process completed torrents.',
default: true
},
{
name: 'rem_unregistered_filter_completed',
type: 'boolean',
label: 'Remove Unregistered Filter Completed',
description: 'If true, the `rem_unregistered` command will only process completed torrents.',
default: false
},
{
name: 'cat_update_all',
type: 'boolean',
label: 'Category Update All',
description: 'If true, `cat_update` will update all torrents; otherwise, it will only update uncategorized torrents.',
default: true
},
{
name: 'disable_qbt_default_share_limits',
type: 'boolean',
label: 'Disable qBittorrent Default Share Limits',
description: 'If true, qBittorrent\'s default share limits will be disabled, allowing qbit_manage to handle them exclusively.',
default: true
},
{
name: 'tag_stalled_torrents',
type: 'boolean',
label: 'Tag Stalled Torrents',
description: 'If true, the `tag_update` command will tag stalled downloading torrents with the `stalled_tag`.',
default: true
},
{
name: 'rem_unregistered_ignore_list',
type: 'array',
label: 'Remove Unregistered Ignore List',
description: 'A list of keywords. If any of these are found in a tracker\'s status message, the torrent will not be removed by the `rem_unregistered` command.',
items: { type: 'text' }
},
{
name: 'rem_unregistered_grace_minutes',
type: 'number',
label: 'Remove Unregistered Grace Period (minutes)',
description: 'Minimum age in minutes to protect newly added torrents from removal when a tracker reports unregistered. Set to 0 to disable.',
default: 10,
min: 0
}
]
};