From a4d358d512ea05081b4485d8757877fae1ca7956 Mon Sep 17 00:00:00 2001 From: Seii Date: Mon, 16 Oct 2023 22:11:51 -0600 Subject: [PATCH 1/7] Add Raspbian support to install.sh --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index c6f702c9b..9ea40c8c2 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -18,7 +18,7 @@ if [ $EUID != 0 ]; then echo "Please run as root" exit fi -if [ $OS_TYPE != "ubuntu" ] && [ $OS_TYPE != "debian" ]; then +if [ $OS_TYPE != "ubuntu" ] && [ $OS_TYPE != "debian" ] && [ $OS_TYPE != "raspbian" ]; then echo "This script only supports Ubuntu and Debian for now." exit fi From 36dc4797723c3b8e4180eace397675ee9fc61980 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 17 Oct 2023 10:17:03 +0200 Subject: [PATCH 2/7] fix: service status check is a bit better --- app/Http/Livewire/Project/Service/Navbar.php | 1 + app/Http/Livewire/Project/Service/StackForm.php | 2 +- config/sentry.php | 2 +- config/version.php | 2 +- resources/views/livewire/project/service/navbar.blade.php | 2 +- versions.json | 2 +- 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/Http/Livewire/Project/Service/Navbar.php b/app/Http/Livewire/Project/Service/Navbar.php index d85c6f435..b8e604ad4 100644 --- a/app/Http/Livewire/Project/Service/Navbar.php +++ b/app/Http/Livewire/Project/Service/Navbar.php @@ -34,5 +34,6 @@ class Navbar extends Component StopService::run($this->service); $this->service->refresh(); $this->emit('success', 'Service stopped successfully.'); + $this->checkStatus(); } } diff --git a/app/Http/Livewire/Project/Service/StackForm.php b/app/Http/Livewire/Project/Service/StackForm.php index 1518e3d22..2c1fa5495 100644 --- a/app/Http/Livewire/Project/Service/StackForm.php +++ b/app/Http/Livewire/Project/Service/StackForm.php @@ -6,6 +6,7 @@ use Livewire\Component; class StackForm extends Component { + public $service; protected $listeners = ["saveCompose"]; protected $rules = [ 'service.docker_compose_raw' => 'required', @@ -13,7 +14,6 @@ class StackForm extends Component 'service.name' => 'required', 'service.description' => 'nullable', ]; - public $service; public function saveCompose($raw) { $this->service->docker_compose_raw = $raw; diff --git a/config/sentry.php b/config/sentry.php index 9631be2fd..0436da59d 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.86', + 'release' => '4.0.0-beta.87', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index 86fe50176..58b3026ae 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@ +

Configuration

diff --git a/versions.json b/versions.json index 830ae81a4..aa5dabcd4 100644 --- a/versions.json +++ b/versions.json @@ -4,7 +4,7 @@ "version": "3.12.36" }, "v4": { - "version": "4.0.0-beta.86" + "version": "4.0.0-beta.87" } } } From 16cbca36c167900e634796ebce5d40659de6b9ed Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 17 Oct 2023 10:37:26 +0200 Subject: [PATCH 3/7] add trademark policy --- resources/views/livewire/project/new/select.blade.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/views/livewire/project/new/select.blade.php b/resources/views/livewire/project/new/select.blade.php index 5edd410b5..8d6636fb1 100644 --- a/resources/views/livewire/project/new/select.blade.php +++ b/resources/views/livewire/project/new/select.blade.php @@ -152,6 +152,9 @@ @endforeach @endif
+
Trademarks Policy: The respective trademarks mentioned here are owned by the + respective + companies, and use of them does not imply any affiliation or endorsement.
@endif @if ($current_step === 'servers')