2026-06-20 00:23:12 +00:00
|
|
|
{{-- MapleDeploy branding: show version without linking to upstream releases.
|
|
|
|
|
CI appends a .YYYYMMDDHHmm build timestamp to the upstream base version;
|
|
|
|
|
display only the base so the top bar doesn't overflow, keep the full
|
|
|
|
|
build string discoverable via the tooltip. --}}
|
2026-08-11 14:11:13 +00:00
|
|
|
@php($version = config('constants.coolify.version'))
|
2026-06-20 00:23:12 +00:00
|
|
|
@php($displayVersion = preg_replace('/\.\d{12}$/', '', $version))
|
2026-08-11 14:11:13 +00:00
|
|
|
|
2026-06-20 00:23:12 +00:00
|
|
|
<span title="v{{ $version }}" {{ $attributes->merge(['class' => 'text-xs opacity-90 dark:text-neutral-500']) }}>v{{ $displayVersion }}</span>
|