Skip to content

Commit a105bac

Browse files
committed
Merge branch 'main' into pr/762
2 parents dd3b407 + 894f1e0 commit a105bac

33 files changed

+1456
-123
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ composer.lock
66
docs/dist
77
docs/filament
88
docs/node_modules
9+
docs/preserved-dist
910
docs/src/navigation.json
1011
docs/src/pages
1112
docs/torchlight-cache

app/Providers/AppServiceProvider.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ public function boot(): void
4949
'plugin' => Plugin::class,
5050
]);
5151

52-
URL::forceScheme('https');
52+
if ($this->app->environment('production')) {
53+
URL::forceScheme('https');
54+
}
5355

5456
RateLimiter::for('vpn_api', function (CheckIfIpIsVpn $job): Limit {
5557
if (

content/articles/leandrocfe-filament-v4-beta-feature-overview.md

Lines changed: 494 additions & 0 deletions
Large diffs are not rendered by default.

content/plugins/kenneth-sese-advanced-tables.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ description: Supercharge your tables with powerful features like user customizab
99
discord_url: https://discord.com/channels/883083792112300104/1093480983988281394
1010
github_repository: archilex/filament-filter-sets
1111
docs_urls:
12+
v4: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/v4.md
1213
v3: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/README.md
1314
v2: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/v2.md
1415
v1: https://raw.githubusercontent.com/archilex/advanced-tables-docs/main/v1.md
1516
has_dark_theme: true
1617
has_translations: true
17-
versions: [2, 3]
18+
versions: [2, 3, 4]
1819
publish_date: 2023-10-06
1920
---

content/plugins/pxlrbt-activity-log.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ docs_url: https://raw.githubusercontent.com/pxlrbt/filament-activity-log/main/re
99
github_repository: pxlrbt/filament-activity-log
1010
has_dark_theme: true
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2023-07-19
1414
---

content/plugins/pxlrbt-environment-indicator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ docs_url: https://raw.githubusercontent.com/pxlrbt/filament-environment-indicato
99
github_repository: pxlrbt/filament-environment-indicator
1010
has_dark_theme: true
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2022-07-15
1414
---

content/plugins/pxlrbt-excel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ docs_url: https://raw.githubusercontent.com/pxlrbt/filament-excel/main/readme.md
99
github_repository: pxlrbt/filament-excel
1010
has_dark_theme: true
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2022-02-19
1414
---

content/plugins/pxlrbt-spotlight.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ docs_url: https://raw.githubusercontent.com/pxlrbt/filament-spotlight/main/readm
99
github_repository: pxlrbt/filament-spotlight
1010
has_dark_theme: false
1111
has_translations: true
12-
versions: [2, 3]
12+
versions: [2, 3, 4]
1313
publish_date: 2022-03-24
1414
---

docs/bin/checkout-latest-filament

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ DOCS_VERSIONS=(
44
1.x
55
2.x
66
3.x
7+
4.x
78
)
89

910
for v in "${DOCS_VERSIONS[@]}"; do
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
DOCS_VERSIONS=(
4+
1.x
5+
2.x
6+
3.x
7+
)
8+
9+
for v in "${DOCS_VERSIONS[@]}"; do
10+
if [ ! -d "filament/$v" ]; then
11+
echo "Cloning $v..."
12+
git clone --single-branch --branch "$v" [email protected]:filamentphp/filament.git "filament/$v"
13+
fi;
14+
done
15+
16+
rm -rf filament/4.x
17+
ln -sf ../../../filament filament/4.x

0 commit comments

Comments
 (0)