qbit_manage/web-ui/js/config-schemas/cat.js
bobokun 3fa5fcee3b
v4.5.0 (#862)
# 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>
2025-07-11 19:13:41 -04:00

23 lines
695 B
JavaScript

export const catSchema = {
title: 'Categories Configuration',
description: 'Configure torrent categories and their rules',
type: 'complex-object',
keyLabel: 'Category Name',
keyDescription: 'category name',
// Special handling for flat string values (category: path format)
flatStringValues: true,
patternProperties: {
".*": {
type: 'string',
label: 'Save Path',
description: 'Directory path for this category',
default: ''
}
},
additionalProperties: {
type: 'string',
label: 'Save Path',
description: 'Directory path for this category',
default: ''
}
};