Skip to content

Commit cd0915f

Browse files
authored
Release v1.13.0 (alexjustesen#2558)
Co-authored-by: Alex Justesen <[email protected]>
1 parent c7c467f commit cd0915f

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

config/speedtest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
/**
77
* General settings.
88
*/
9-
'build_date' => Carbon::parse('2025-12-15'),
9+
'build_date' => Carbon::parse('2025-12-16'),
1010

11-
'build_version' => 'v1.12.4',
11+
'build_version' => 'v1.13.0',
1212

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

resources/views/filament/pages/dashboard.blade.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
class="col-span-1"
1212
icon="tabler-book"
1313
icon-size="md"
14+
:compact="true"
1415
>
1516
<x-slot name="heading">
1617
{{ __('general.documentation') }}
@@ -35,6 +36,7 @@ class="col-span-1"
3536
class="col-span-1"
3637
icon="tabler-cash-banknote-heart"
3738
icon-size="md"
39+
:compact="true"
3840
>
3941
<x-slot name="heading">
4042
{{ __('general.donations') }}
@@ -59,6 +61,7 @@ class="col-span-1"
5961
class="col-span-1"
6062
icon="tabler-brand-github"
6163
icon-size="md"
64+
:compact="true"
6265
>
6366
<x-slot name="heading">
6467
{{ __('general.speedtest_tracker') }}

resources/views/livewire/latest-result-stats.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</div>
2525
</div>
2626

27-
<x-filament::section class="col-span-1" icon="tabler-download" icon-size="md">
27+
<x-filament::section class="col-span-1" icon="tabler-download" icon-size="md" :compact="true">
2828
<x-slot name="heading">
2929
{{ __('general.download') }}
3030
</x-slot>
@@ -63,7 +63,7 @@
6363
</p>
6464
</x-filament::section>
6565

66-
<x-filament::section class="col-span-1" icon="tabler-upload" icon-size="md">
66+
<x-filament::section class="col-span-1" icon="tabler-upload" icon-size="md" :compact="true">
6767
<x-slot name="heading">
6868
{{ __('general.upload') }}
6969
</x-slot>
@@ -102,7 +102,7 @@
102102
</p>
103103
</x-filament::section>
104104

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

138-
<x-filament::section class="col-span-1" icon="tabler-square-percentage" icon-size="sm">
138+
<x-filament::section class="col-span-1" icon="tabler-square-percentage" icon-size="md" :compact="true">
139139
<x-slot name="heading">
140140
{{ __('results.packet_loss') }}
141141
</x-slot>

resources/views/livewire/platform-stats.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@
2323
</div>
2424
</x-filament::section> --}}
2525

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

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

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

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

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

0 commit comments

Comments
 (0)