Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/speedtest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
/**
* General settings.
*/
'build_date' => Carbon::parse('2025-12-15'),
'build_date' => Carbon::parse('2025-12-16'),

'build_version' => 'v1.12.4',
'build_version' => 'v1.13.0',

'content_width' => env('CONTENT_WIDTH', '7xl'),

Expand Down
3 changes: 3 additions & 0 deletions resources/views/filament/pages/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
class="col-span-1"
icon="tabler-book"
icon-size="md"
:compact="true"
>
<x-slot name="heading">
{{ __('general.documentation') }}
Expand All @@ -35,6 +36,7 @@ class="col-span-1"
class="col-span-1"
icon="tabler-cash-banknote-heart"
icon-size="md"
:compact="true"
>
<x-slot name="heading">
{{ __('general.donations') }}
Expand All @@ -59,6 +61,7 @@ class="col-span-1"
class="col-span-1"
icon="tabler-brand-github"
icon-size="md"
:compact="true"
>
<x-slot name="heading">
{{ __('general.speedtest_tracker') }}
Expand Down
8 changes: 4 additions & 4 deletions resources/views/livewire/latest-result-stats.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</div>
</div>

<x-filament::section class="col-span-1" icon="tabler-download" icon-size="md">
<x-filament::section class="col-span-1" icon="tabler-download" icon-size="md" :compact="true">
<x-slot name="heading">
{{ __('general.download') }}
</x-slot>
Expand Down Expand Up @@ -63,7 +63,7 @@
</p>
</x-filament::section>

<x-filament::section class="col-span-1" icon="tabler-upload" icon-size="md">
<x-filament::section class="col-span-1" icon="tabler-upload" icon-size="md" :compact="true">
<x-slot name="heading">
{{ __('general.upload') }}
</x-slot>
Expand Down Expand Up @@ -102,7 +102,7 @@
</p>
</x-filament::section>

<x-filament::section class="col-span-1" icon="tabler-clock-bolt" icon-size="sm">
<x-filament::section class="col-span-1" icon="tabler-clock-bolt" icon-size="md" :compact="true">
<x-slot name="heading">
{{ __('general.ping') }}
</x-slot>
Expand Down Expand Up @@ -135,7 +135,7 @@
</p>
</x-filament::section>

<x-filament::section class="col-span-1" icon="tabler-square-percentage" icon-size="sm">
<x-filament::section class="col-span-1" icon="tabler-square-percentage" icon-size="md" :compact="true">
<x-slot name="heading">
{{ __('results.packet_loss') }}
</x-slot>
Expand Down
6 changes: 3 additions & 3 deletions resources/views/livewire/platform-stats.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@
</div>
</x-filament::section> --}}

<x-filament::section class="col-span-1" icon="tabler-hash">
<x-filament::section class="col-span-1" icon="tabler-hash" icon-size="md" :compact="true">
<x-slot name="heading">
Total tests
</x-slot>

<p class="text-xl font-semibold tracking-tight text-zinc-900 dark:text-zinc-100">{{ $this->platformStats['total'] }}</p>
</x-filament::section>

<x-filament::section class="col-span-1" icon="tabler-circle-check">
<x-filament::section class="col-span-1" icon="tabler-circle-check" icon-size="md" :compact="true">
<x-slot name="heading">
Total completed tests
</x-slot>

<p class="text-xl font-semibold tracking-tight text-zinc-900 dark:text-zinc-100">{{ $this->platformStats['completed'] }}</p>
</x-filament::section>

<x-filament::section class="col-span-1" icon="tabler-alert-circle">
<x-filament::section class="col-span-1" icon="tabler-alert-circle" icon-size="md" :compact="true">
<x-slot name="heading">
Total failed tests
</x-slot>
Expand Down