From 621c108e78e8160f11578bb06c8f5cbf66a56be9 Mon Sep 17 00:00:00 2001 From: Benjamin Nussbaum Date: Mon, 12 Jan 2026 16:32:26 +0100 Subject: [PATCH 1/3] chore: Alias improve wording --- resources/views/livewire/plugins/recipes/settings.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/plugins/recipes/settings.blade.php b/resources/views/livewire/plugins/recipes/settings.blade.php index d07a243..8ae3d6f 100644 --- a/resources/views/livewire/plugins/recipes/settings.blade.php +++ b/resources/views/livewire/plugins/recipes/settings.blade.php @@ -76,7 +76,7 @@ new class extends Component { - Enable a public alias URL for this recipe. + Enable an Alias URL for this recipe. Your server does not need to be exposed to the internet, but your device must be able to reach the URL. Docs @if($alias) @@ -87,7 +87,7 @@ new class extends Component { readonly copyable /> - Use this URL to access the recipe image directly. Add ?device-model=name to specify a device model. + Copy this URL to your TRMNL Dashboard. By default, image is created for TRMNL OG; use parameter ?device-model= to specify a device model. @endif From f1903bcbe871d28331cf52f4d0d7bcd80b3a82b1 Mon Sep 17 00:00:00 2001 From: Benjamin Nussbaum Date: Mon, 12 Jan 2026 17:42:25 +0100 Subject: [PATCH 2/3] chore: change button variant --- resources/views/livewire/plugins/recipe.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/livewire/plugins/recipe.blade.php b/resources/views/livewire/plugins/recipe.blade.php index c9a1442..1597d5d 100644 --- a/resources/views/livewire/plugins/recipe.blade.php +++ b/resources/views/livewire/plugins/recipe.blade.php @@ -803,7 +803,7 @@ HTML; - + Fetch data now From 3032c09778eff50ad7fa5bbea0f59c1dc984a4c5 Mon Sep 17 00:00:00 2001 From: Benjamin Nussbaum Date: Mon, 12 Jan 2026 17:58:22 +0100 Subject: [PATCH 3/3] fix: markup for recipe 'Zen Quotes' --- resources/views/recipes/zen.blade.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/views/recipes/zen.blade.php b/resources/views/recipes/zen.blade.php index 5e01eac..0ae920f 100644 --- a/resources/views/recipes/zen.blade.php +++ b/resources/views/recipes/zen.blade.php @@ -3,11 +3,11 @@ -
{{$data[0]['a']}}
- @if (strlen($data[0]['q']) < 300 && $size != 'quadrant') -

{{ $data[0]['q'] }}

+
{{$data['data'][0]['a'] ?? ''}}
+ @if (strlen($data['data'][0]['q'] ?? '') < 300 && $size != 'quadrant') +

{{ $data['data'][0]['q'] ?? '' }}

@else -

{{ $data[0]['q'] }}

+

{{ $data['data'][0]['q'] ?? '' }}

@endif