Direct source refactor (#895)

- Updated mirror selection
- Removed built-in mirror options, users must provide their own
configurations
- Set Universal search to default, added ability to disable direct
source
- Updated documentation
- Updated makefile
This commit is contained in:
Alex
2026-04-15 18:50:13 +01:00
committed by GitHub
parent 18a3f0bf44
commit e35b4c47a7
40 changed files with 2176 additions and 918 deletions
+3
View File
@@ -34,6 +34,7 @@ def get_field_type_name(field: Any) -> str:
OrderableListField,
PasswordField,
SelectField,
TagListField,
TextField,
)
@@ -45,6 +46,8 @@ def get_field_type_name(field: Any) -> str:
return "string (choice)"
if isinstance(field, MultiSelectField):
return "string (comma-separated)"
if isinstance(field, TagListField):
return "string (comma-separated)"
if isinstance(field, OrderableListField):
return "JSON array"
if isinstance(field, PasswordField):