Einstellungen: Tab «Updates & Support» + Bump auf 0.7.0

Neuer Settings-Tab mit manueller Update-Suche (ignoriert die Skip-
Markierung), Zeitstempel der letzten Prüfung, Link zur Dokumentation
auf rapport.kgva.ch. Update-Helper sind in src/utils/updater.js
zentralisiert; UpdateNotifier schreibt jetzt auch beim Auto-Check
das Datum der letzten Prüfung mit.

Version 0.6.0 → 0.7.0 in package.json, tauri.conf.json, Cargo.toml
und allen UI-Referenzen. Changelog-Eintrag 0.7 mit den drei
Highlights dieses Releases ergänzt.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-16 01:29:49 +02:00
parent 22eb0f3e48
commit cc4f3bb225
8 changed files with 223 additions and 14 deletions
+5
View File
@@ -2,6 +2,7 @@ import React, { useState } from "react";
import { STORAGE_KEY, DEFAULT_ABSENZ_TYPES } from "../constants.js";
import { formatIban, isQRIban, applyProjectNumberFormat, applyProtoNumberFormat, generateId, getFeiertageForYear, getAbsenzTypes } from "../utils.js";
import { Header, FormField, Modal, DateInput, useConfirm } from "../components/UI.jsx";
import UpdatesSupport from "../components/UpdatesSupport.jsx";
const PERMISSION_GROUPS = [
{ label: "Grundmodule", items: [
@@ -37,6 +38,7 @@ const TABS = [
{ id: "team", label: "Team & Rollen" },
{ id: "kalender", label: "Feiertage & Absenzen" },
{ id: "system", label: "System" },
{ id: "support", label: "Updates & Support" },
{ id: "profil", label: "Mein Profil" },
];
@@ -858,6 +860,9 @@ export default function Settings({ data, update, currentUser, uiZoom, setUiZoom
</div>
</div>
)}
{/* ── Tab: Updates & Support ── */}
{tab === "support" && <UpdatesSupport />}
</>}
</div>
);