Skip to content

Commit 67c1568

Browse files
committed
Merge remote-tracking branch 'origin/main' into pr/921
2 parents cedb9c2 + d05390b commit 67c1568

File tree

82 files changed

+556
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+556
-92
lines changed

app/Enums/Version.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace App\Enums;
4+
5+
enum Version: string
6+
{
7+
case Four = '4.x';
8+
case Three = '3.x';
9+
case Two = '2.x';
10+
case One = '1.x';
11+
12+
public static function getLatest(): self
13+
{
14+
return self::Four;
15+
}
16+
}

app/Support/Markdown.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ protected function convertSpecialBlockquotes(): static
114114
public function absoluteImageUrls(string $baseUrl): static
115115
{
116116
$this->content = preg_replace(
117-
pattern: '/src=["\'](?!https?:\/\/)([^"\']+)["\'][^>]/i',
118-
replacement: 'src="' . $baseUrl . '$1" ',
117+
pattern: '/\b(src|srcset)\s*=\s*(["\'])(?!https?:\/\/|data:|\/\/)([^"\']+)\2/i',
118+
replacement: '$1=$2' . $baseUrl . '$3$2',
119119
subject: $this->content
120120
);
121121

content/authors/alizharb.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
name: Ali Harb
3+
slug: alizharb
4+
github_url: https://github.com/alizharb
5+
sponsor_url: https://github.com/sponsors/AlizHarb
6+
---

content/authors/attargah.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
name: Attargah
33
slug: attargah
44
github_url: https://github.com/attargah
5-
---
5+
sponsor_url: https://github.com/sponsors/attargah
6+
---
7+
I'm a software developer passionate about building open-source tools and solutions that make developers' lives easier.
334 KB
Loading

content/authors/avatars/inerba.jpg

32.5 KB
Loading
178 KB
Loading

content/authors/danharrin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ twitter_url: https://twitter.com/danjharrin
66
sponsor_url: https://github.com/sponsors/danharrin
77
---
88

9-
Dan is a full-stack developer from the Cardiff, UK. He co-created Filament, and continues to lead development of the project. He works for [Kirschbaum](https://kirschbaumdevelopment.com/), a web development agency.
9+
Dan is a full-stack developer from the Cardiff, UK. He co-created Filament, and continues to lead development of the project.

content/authors/inerba.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Francesco Apruzzese
3+
slug: inerba
4+
github_url: https://github.com/inerba
5+
---
6+
7+
Francesco is a freelance web developer specializing in tailor-made software with a strong focus on Laravel and Filament. He prioritizes personalization, efficiency, and human connection in every project, creating solutions that are both functional and meaningful. Francesco has worked across a wide range of technologies and initiatives with social and environmental impact. You can learn more about Francesco on his [website](https://apruzzese.it).

content/authors/tonegabes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Tone Gabes
3+
slug: tonegabes
4+
github_url: https://github.com/tonegabes
5+
twitter_url: https://twitter.com/tonegabes
6+
sponsor_url: https://github.com/sponsors/tonegabes
7+
---
8+
9+
I build interactive platforms with Filament and Livewire.
10+
Passionate about clean code and clean UI

0 commit comments

Comments
 (0)