Vollständige Implementierung des EngineeringSync-Middleware-Tools: - Windows Service (Kestrel :5050) mit FileSystemWatcher + SignalR - WPF Tray-App mit PendingChanges- und Projektverwaltungs-Fenster - Setup-Wizard (8-Schritte-Installer) - SQLite/EF Core Datenschicht (WAL-Modus) - SHA-256-basiertes Debouncing (2s Fenster) - Backup-System mit konfigurierbarer Aufbewahrung Bugfixes & Verbesserungen: - BUG-1: AppDbContext OnConfiguring invertierte Bedingung behoben - BUG-2: Event-Handler-Leak in TrayApp (Fenster-Singleton-Pattern) - BUG-3: ProjectConfigChanged SignalR-Signal in allen CRUD-Endpoints - BUG-5: Rename-Sync löscht alte Datei im Simulations-Ordner - BUG-6: Doppeltes Dispose von SignalR verhindert - BUG-7: Registry-Deinstallation nur EngineeringSync-Eintrag entfernt - S1: Path-Traversal-Schutz via SafeCombine() im SyncManager - E1: FSW Buffer 64KB + automatischer Re-Scan bei Overflow - E2: Retry-Logik (3x) für gesperrte Dateien mit exponentiellem Backoff - E4: Channel.Writer.TryComplete() beim Shutdown - C2: HubMethodNames-Konstanten statt Magic Strings - E3: Pagination in Changes-API (page/pageSize Query-Parameter) - A1: Fire-and-Forget mit try/catch + Logging Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
63 lines
3.3 KiB
XML
63 lines
3.3 KiB
XML
<local:WizardPageBase x:Class="EngineeringSync.Setup.Views.Pages.CompletionPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:EngineeringSync.Setup.Views.Pages"
|
|
Background="White">
|
|
<Grid>
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center"
|
|
MaxWidth="400" Margin="40">
|
|
|
|
<!-- Großes Erfolgs-Icon -->
|
|
<Border Width="80" Height="80" CornerRadius="40"
|
|
HorizontalAlignment="Center" Margin="0,0,0,24">
|
|
<Border.Background>
|
|
<RadialGradientBrush>
|
|
<GradientStop Color="#E8F5E9" Offset="0"/>
|
|
<GradientStop Color="#C8E6C9" Offset="1"/>
|
|
</RadialGradientBrush>
|
|
</Border.Background>
|
|
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="40"
|
|
Foreground="#107C10" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"/>
|
|
</Border>
|
|
|
|
<TextBlock Text="Installation erfolgreich!"
|
|
FontFamily="Segoe UI" FontSize="22" FontWeight="Light"
|
|
Foreground="#1A1A1A" HorizontalAlignment="Center"
|
|
Margin="0,0,0,12"/>
|
|
|
|
<TextBlock FontFamily="Segoe UI" FontSize="13" Foreground="#5F5F5F"
|
|
TextAlignment="Center" TextWrapping="Wrap" LineHeight="22"
|
|
Margin="0,0,0,32">
|
|
<Run Text="EngineeringSync wurde erfolgreich installiert und konfiguriert."/>
|
|
<LineBreak/>
|
|
<Run Text="Der Windows-Dienst läuft im Hintergrund und überwacht Ihren Engineering-Ordner."/>
|
|
</TextBlock>
|
|
|
|
<!-- Status-Chips -->
|
|
<WrapPanel HorizontalAlignment="Center" Margin="0,0,0,32">
|
|
<Border Background="#E8F5E9" CornerRadius="12" Padding="12,6" Margin="4">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="" FontFamily="Segoe MDL2 Assets"
|
|
FontSize="11" Foreground="#107C10" Margin="0,0,6,0"/>
|
|
<TextBlock Text="Dienst aktiv" FontFamily="Segoe UI"
|
|
FontSize="12" Foreground="#107C10"/>
|
|
</StackPanel>
|
|
</Border>
|
|
<Border Background="#E3F2FD" CornerRadius="12" Padding="12,6" Margin="4">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="" FontFamily="Segoe MDL2 Assets"
|
|
FontSize="11" Foreground="#0078D4" Margin="0,0,6,0"/>
|
|
<TextBlock Text="Tray-App startet" FontFamily="Segoe UI"
|
|
FontSize="12" Foreground="#0078D4"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</WrapPanel>
|
|
|
|
<TextBlock FontFamily="Segoe UI" FontSize="12" Foreground="#888888"
|
|
TextAlignment="Center" TextWrapping="Wrap"
|
|
Text="Klicken Sie auf "Schließen" um den Assistenten zu beenden."/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</local:WizardPageBase>
|