Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Cannonb4ll committed Aug 20, 2024
1 parent 421f9b2 commit d1139eb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/Concerns/CanShowAnIntro.php
Original file line number Diff line number Diff line change
Expand Up @@ -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('');
}
Expand Down
6 changes: 3 additions & 3 deletions app/Console/Commands/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion resources/views/filament/widgets/system-info.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class="flex flex-col border-t border-b border-gray-100 dark:border-gray-700 p-6
<dt class="order-2 mt-2 text-md leading-6 font-medium text-gray-500">
@if($isOutOfDate)
<a class="border-b border-dotted border-gray-500"
href="https://github.com/ploi-deploy/roadmap/releases/tag/{{ $version['remoteVersion'] }}"
href="https://github.com/ploi/roadmap/releases/tag/{{ $version['remoteVersion'] }}"
target="_blank">
{{ trans( 'system.update-available') }}
</a>
Expand Down

0 comments on commit d1139eb

Please sign in to comment.