@php // ── Versions-Erkennung ────────────────────────────────────────── // Scannt public/downloads/de-companion/V1/, V2/, V3/ ... // Höchste V-Nummer = aktuellste Version. $downloadBase = public_path('downloads/de-companion'); $latestVersion = null; $latestFilename = null; $latestSizeMb = null; $downloadAvailable = false; if (is_dir($downloadBase)) { $dirs = array_filter(scandir($downloadBase), fn ($d) => preg_match('/^V(\d+)$/i', $d)); usort($dirs, fn ($a, $b) => (int) substr($b, 1) - (int) substr($a, 1)); if (!empty($dirs)) { $latestVersion = strtoupper($dirs[0]); $vPath = $downloadBase . DIRECTORY_SEPARATOR . $dirs[0]; $exes = glob($vPath . DIRECTORY_SEPARATOR . '*.exe'); if (!empty($exes)) { $downloadAvailable = true; $latestFilename = basename($exes[0]); $latestSizeMb = round(filesize($exes[0]) / 1024 / 1024, 1); } } } // Screenshot-Erkennung (ablegen in public/img/de-companion/screenshots/) $screenshotPath = public_path('img/de-companion/screenshots'); $screenshots = []; if (is_dir($screenshotPath)) { foreach (glob($screenshotPath . '/*.{png,jpg,jpeg,webp}', GLOB_BRACE) as $f) { $screenshots[] = asset('img/de-companion/screenshots/' . basename($f)); } } $hasScreenshots = !empty($screenshots); @endphp @extends('demos.windows.app_layout') @section('title', 'DE Companion | kotsch.tech') @section('meta_description', 'DE Companion – die Windows-App für Digital-Engineering. Begleitet deinen Workflow direkt vom Desktop aus, mit nativem Tooling und schnellem Zugriff auf deine Projekte.') {{-- ── Monitor view: branded splash für Windows-Grid ─────────────── --}} @section('app-ui')
{{-- Subtle grid overlay --}}
{{-- Glow orb --}}
{{-- App icon --}}
DE Companion Icon
{{-- Name --}}
DE Companion
für Windows
{{-- Feature pills --}}
Stundenplan
Mensa
Campus Live
Tray & Autostart
{{-- Version badge --}} @if($latestVersion)
{{ $latestVersion }} · Kostenlos
@else
Demnächst verfügbar
@endif
@endsection {{-- ── Beschreibung (rechts neben dem Monitor-Vorschau) ────────────── --}} @section('app-description')
DE Companion
Windows App
Kostenlos

DE Companion
für Windows.

Dein Digital Engineering Campus direkt auf dem Desktop. Stundenplan, Mensa, Campus Live und System-Benachrichtigungen — als schlanke Tray-App für Windows 10 und 11. Kostenlos.

@if($hasScreenshots) {{-- Echter Screenshot vorhanden → Galerie --}}
@foreach(array_slice($screenshots, 0, 3) as $src) DE Companion Screenshot @endforeach
@endif @endsection {{-- ── Custom CTA: Download statt Lizenz anfragen ─────────────────── --}} @section('app-cta')
@if($downloadAvailable) KOSTENLOS HERUNTERLADEN {{ $latestVersion }} @if($latestSizeMb)
{{ $latestFilename }}  ·  {{ $latestSizeMb }} MB  ·  Windows 10/11  ·  64-bit
@endif @else
Download in Kürze verfügbar
Die Windows-Version befindet sich im letzten Feinschliff. Schreib mir über das Kontaktformular, wenn du benachrichtigt werden möchtest.
@endif
@endsection {{-- ── Specs ────────────────────────────────────────────────────────── --}} @section('app-specs')
  • Version{{ $latestVersion ?? '–' }}
  • Plattform.NET 8.0 · Windows 10/11 · 64-bit
  • PreisKostenlos
  • ZielgruppeDE-Studenten (Campus)
  • FeaturesStundenplan · Mensa · Campus · Tray
  • StatusLive am Campus
  • BesonderheitAutostart · Hell/Dunkel-Modus
  • @endsection