From d1139eb40566bf6d40c1c26472d13535be5e8c43 Mon Sep 17 00:00:00 2001 From: Cannonb4ll Date: Tue, 20 Aug 2024 10:54:58 +0200 Subject: [PATCH] wip --- app/Console/Commands/Concerns/CanShowAnIntro.php | 2 +- app/Console/Commands/Install.php | 6 +++--- .../emails/admin/roadmap-version-out-of-date.blade.php | 2 +- resources/views/filament/widgets/system-info.blade.php | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Console/Commands/Concerns/CanShowAnIntro.php b/app/Console/Commands/Concerns/CanShowAnIntro.php index 5319fe04..e8785515 100644 --- a/app/Console/Commands/Concerns/CanShowAnIntro.php +++ b/app/Console/Commands/Concerns/CanShowAnIntro.php @@ -11,7 +11,7 @@ protected function intro(string $type = 'installation'): void $this->line('Laravel version: ' . app()->version()); $this->line('PHP version: ' . trim(phpversion())); $this->line(' '); - $this->line('Github: https://github.com/ploi-deploy/roadmap'); + $this->line('Github: https://github.com/ploi/roadmap'); $this->writeSeparationLine(); $this->line(''); } diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index f9f4f1e1..778d2c35 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -85,13 +85,13 @@ protected function askForStar() { if (User::count() === 1 && $this->confirm('Would you like to show some love by starring the repo?', true)) { if (PHP_OS_FAMILY === 'Darwin') { - exec('open https://github.com/ploi-deploy/roadmap'); + exec('open https://github.com/ploi/roadmap'); } if (PHP_OS_FAMILY === 'Linux') { - exec('xdg-open https://github.com/ploi-deploy/roadmap'); + exec('xdg-open https://github.com/ploi/roadmap'); } if (PHP_OS_FAMILY === 'Windows') { - exec('start https://github.com/ploi-deploy/roadmap'); + exec('start https://github.com/ploi/roadmap'); } } } diff --git a/resources/views/emails/admin/roadmap-version-out-of-date.blade.php b/resources/views/emails/admin/roadmap-version-out-of-date.blade.php index 68e26d70..1b3441d6 100644 --- a/resources/views/emails/admin/roadmap-version-out-of-date.blade.php +++ b/resources/views/emails/admin/roadmap-version-out-of-date.blade.php @@ -3,7 +3,7 @@ A new version of the roadmap software has been releases. -@component('mail::button', ['url' => 'https://github.com/ploi-deploy/roadmap/releases']) +@component('mail::button', ['url' => 'https://github.com/ploi/roadmap/releases']) View releases at GitHub @endcomponent diff --git a/resources/views/filament/widgets/system-info.blade.php b/resources/views/filament/widgets/system-info.blade.php index 1d7acf60..34b4ad2c 100644 --- a/resources/views/filament/widgets/system-info.blade.php +++ b/resources/views/filament/widgets/system-info.blade.php @@ -18,7 +18,7 @@ class="flex flex-col border-t border-b border-gray-100 dark:border-gray-700 p-6
@if($isOutOfDate) {{ trans( 'system.update-available') }}