mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-10-13 07:16:55 +08:00
# Requirements Updated - fastapi==0.116.0 - retrying==1.4.0 - uvicorn==0.35.0 # New Features - **Web UI**: Introduced a new Web UI for configuring and managing qBit Manage. - Visual Configuration Editor for YAML files. - Command Execution directly from the UI. - Undo/Redo History for changes. - Theme Support (light/dark mode). - Responsive Design for desktop and mobile. - Real-time YAML Preview. - Pass skip qbitorrent check as optional parameter to the API (Adds #860)\ **Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.4.0...v4.5.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ineednewpajamas <73252768+ineednewpajamas@users.noreply.github.com>
87 lines
2.6 KiB
JavaScript
87 lines
2.6 KiB
JavaScript
export const commandsSchema = {
|
|
title: 'Commands Configuration',
|
|
description: 'Configure which commands to run',
|
|
fields: [
|
|
{
|
|
name: 'recheck',
|
|
type: 'boolean',
|
|
label: 'Recheck Torrents',
|
|
description: 'Force recheck of all torrents',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'cat_update',
|
|
type: 'boolean',
|
|
label: 'Update Categories',
|
|
description: 'Update torrent categories based on rules',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'tag_update',
|
|
type: 'boolean',
|
|
label: 'Update Tags',
|
|
description: 'Update torrent tags based on rules',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'rem_unregistered',
|
|
type: 'boolean',
|
|
label: 'Remove Unregistered',
|
|
description: 'Remove torrents that are unregistered with tracker',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'rem_orphaned',
|
|
type: 'boolean',
|
|
label: 'Remove Orphaned',
|
|
description: 'Remove orphaned files from filesystem',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'tag_tracker_error',
|
|
type: 'boolean',
|
|
label: 'Tag Tracker Errors',
|
|
description: 'Tag torrents with tracker errors',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'tag_nohardlinks',
|
|
type: 'boolean',
|
|
label: 'Tag No Hard Links',
|
|
description: 'Tag torrents without hard links',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'share_limits',
|
|
type: 'boolean',
|
|
label: 'Apply Share Limits',
|
|
description: 'Apply share ratio and time limits',
|
|
default: false
|
|
},
|
|
{
|
|
type: 'section_header',
|
|
label: 'Execution Options'
|
|
},
|
|
{
|
|
name: 'skip_cleanup',
|
|
type: 'boolean',
|
|
label: 'Skip Cleanup',
|
|
description: 'Skip cleanup operations',
|
|
default: false
|
|
},
|
|
{
|
|
name: 'dry_run',
|
|
type: 'boolean',
|
|
label: 'Dry Run',
|
|
description: 'Simulate command execution without making actual changes.',
|
|
default: true
|
|
},
|
|
{
|
|
name: 'skip_qb_version_check',
|
|
type: 'boolean',
|
|
label: 'Skip qBittorrent Version Check',
|
|
description: 'Skip the qBittorrent version compatibility check.',
|
|
default: false
|
|
}
|
|
]
|
|
};
|