release: v2.1.12 reliability and security hardening

Verify update artifacts with exact metadata and SHA-512, require host-confirmed upload completion before cleanup, harden credentials and backups, improve queue recovery and skipped-state reporting, expand Windows path coverage, and add CI packaging checks.
This commit is contained in:
Sucukdeluxe
2026-08-11 22:36:20 +02:00
parent 7eec990811
commit 26dcf9c698
47 changed files with 2069 additions and 1192 deletions
+48 -6
View File
@@ -1578,6 +1578,7 @@ select.hs-input { max-width: none; width: auto; min-width: 140px; }
.history-row:hover { background: rgba(255, 255, 255, 0.03); }
.history-row.selected { background: rgba(102, 126, 234, 0.12); }
.history-row.error { color: var(--danger); }
.history-row.skipped { color: var(--warning); }
.history-row td {
padding: 5px 8px;
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
@@ -1639,6 +1640,28 @@ select.hs-input { max-width: none; width: auto; min-width: 140px; }
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.startup-resume-banner {
position: fixed;
left: 50%;
bottom: 26px;
z-index: 2100;
display: flex;
align-items: center;
gap: 12px;
min-height: 42px;
padding: 7px 8px 7px 14px;
border: 1px solid var(--accent);
border-radius: 8px;
background: var(--bg-panel);
color: var(--text);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
transform: translateX(-50%);
}
.startup-resume-banner[hidden] {
display: none;
}
/* Shutdown overlay */
.shutdown-overlay {
position: fixed;
@@ -1873,6 +1896,21 @@ select.hs-input { max-width: none; width: auto; min-width: 140px; }
flex: 0 0 auto;
}
.local-backup-password-row {
margin-bottom: 10px;
}
.local-backup-password-fields {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-bottom: 10px;
}
.local-backup-password-fields[hidden] {
display: none;
}
.upload-speed-sparkline {
width: 208px;
height: 30px;
@@ -3280,6 +3318,16 @@ input[type="checkbox"] {
border-color: var(--danger);
}
.settings-option.credential-fallback-option {
margin-top: 12px;
border-color: color-mix(in srgb, var(--danger) 72%, var(--border));
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--danger) 10%, transparent);
}
.settings-option.credential-fallback-option:focus-within {
border-color: var(--danger);
}
.settings-option-description,
.hint {
color: var(--text-dim);
@@ -3721,12 +3769,6 @@ input[type="checkbox"] {
grid-template-columns: 224px minmax(0, 1fr);
}
.app-brand-name {
max-width: 155px;
overflow: hidden;
text-overflow: ellipsis;
}
.upload-speed-sparkline {
width: 168px;
}