Merge claude/1

This commit is contained in:
librelad 2026-05-31 00:07:49 +01:00
commit 6c40c01310
11 changed files with 5 additions and 5 deletions

View File

@ -216,7 +216,7 @@ if (typeof window.ConfigManager === 'undefined') {
var catIcon = catMeta.icon || category;
var headerHTML =
'<div class="page-header config-page-header">' +
'<img class="page-header-icon" src="/components/admin/config/icons/config/' + catIcon + '.svg" alt="" onerror="this.style.display=\'none\'">' +
'<img class="page-header-icon" src="/components/admin/config/icons/' + catIcon + '.svg" alt="" onerror="this.style.display=\'none\'">' +
'<div class="page-header-title">' +
'<div class="admin-breadcrumb">Config</div>' +
'<h1>' + catTitle + '</h1>' +

View File

@ -88,7 +88,7 @@ class ConfigSidebar {
// Use correct icon from our new structure
const iconName = category.icon || category.id;
const iconPath = '/components/admin/config/icons/config/' + iconName + '.svg';
const iconPath = '/components/admin/config/icons/' + iconName + '.svg';
categoryItem.innerHTML = '<img src="' + iconPath + '" alt="' + category.title + '" style="width: 20px; height: 20px; margin-right: 8px;"/> ' + category.title;

View File

@ -2,7 +2,7 @@
"id": "borg",
"name": "BorgBackup",
"tagline": "Encrypted, deduplicated, compressed — the original.",
"logo": "/icons/config/backup.svg",
"logo": "/components/admin/config/icons/backup.svg",
"supported_types": ["local", "sftp"],
"properties": [
{"label": "Encryption", "value": "AES-256-CTR + HMAC-SHA-256"},

View File

@ -2,7 +2,7 @@
"id": "kopia",
"name": "Kopia",
"tagline": "Modern fast backup with policies-as-data and built-in maintenance.",
"logo": "/icons/config/backup.svg",
"logo": "/components/admin/config/icons/backup.svg",
"supported_types": ["local", "sftp"],
"properties": [
{"label": "Encryption", "value": "AES-256-GCM or ChaCha20-Poly1305"},

View File

@ -2,7 +2,7 @@
"id": "restic",
"name": "Restic",
"tagline": "Modern encrypted backup with native deduplication.",
"logo": "/icons/config/backup.svg",
"logo": "/components/admin/config/icons/backup.svg",
"supported_types": ["local", "sftp", "rest", "s3", "b2", "gs", "azure", "rclone"],
"properties": [
{"label": "Encryption", "value": "AES-256-CTR + Poly1305-AES authentication"},