Date: Wed, 27 Nov 2024 14:49:47 +0100
Subject: [PATCH 09/11] Update README.md
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 8f0df0bda..dac48d127 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ Special thanks to our biggest sponsors!
### Special Sponsors
-
+
* [CCCareers](https://cccareers.org/) - A career development platform connecting coding bootcamp graduates with job opportunities in the tech industry.
* [Hetzner](http://htznr.li/CoolifyXHetzner) - A German web hosting company offering affordable dedicated servers, cloud services, and web hosting solutions.
@@ -50,6 +50,7 @@ Special thanks to our biggest sponsors!
* [QuantCDN](https://www.quantcdn.io/?ref=coolify.io) - A content delivery network (CDN) optimizing website performance through global content distribution.
* [Arcjet](https://arcjet.com/?ref=coolify.io) - A cloud-based platform providing real-time protection against API abuse and bot attacks.
* [SupaGuide](https://supa.guide/?ref=coolify.io) - A comprehensive resource hub offering guides and tutorials for web development using Supabase.
+* [GoldenVM](https://billing.goldenvm.com/?ref=coolify.io) - A cloud hosting provider offering scalable infrastructure solutions for businesses of all sizes.
* [Tigris](https://tigrisdata.com/?ref=coolify.io) - A fully managed serverless object storage service compatible with Amazon S3 API. Offers high performance, scalability, and built-in search capabilities for efficient data management.
* [Advin](https://coolify.ad.vin/?ref=coolify.io) - A digital advertising agency specializing in programmatic advertising and data-driven marketing strategies.
* [Treive](https://trieve.ai/?ref=coolify.io) - An AI-powered search and discovery platform for enhancing information retrieval in large datasets.
@@ -90,7 +91,6 @@ Special thanks to our biggest sponsors!
-
From daa2700b1c4679637206f52502476240e79e1c79 Mon Sep 17 00:00:00 2001
From: Luna Midori <118759930+lunamidori5@users.noreply.github.com>
Date: Wed, 27 Nov 2024 22:37:18 -0800
Subject: [PATCH 10/11] Added support for Endeavour OS as arch
---
scripts/install.sh | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/scripts/install.sh b/scripts/install.sh
index 3f1bec0c4..1a039f64f 100755
--- a/scripts/install.sh
+++ b/scripts/install.sh
@@ -83,6 +83,11 @@ if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then
OS_TYPE="arch"
fi
+# Check if the OS is Endeavour OS, if so, change it to arch
+if [ "$OS_TYPE" = "endeavouros" ]; then
+ OS_TYPE="arch"
+fi
+
# Check if the OS is Asahi Linux, if so, change it to fedora
if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then
OS_TYPE="fedora"
From 0bc823108dfd02a0cddc97b46b74a9f5b4c7e8c8 Mon Sep 17 00:00:00 2001
From: kleintonno <116087195+kleintonno@users.noreply.github.com>
Date: Thu, 28 Nov 2024 10:40:44 +0100
Subject: [PATCH 11/11] fix deploy selection in applications source menu
---
resources/views/livewire/project/application/source.blade.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/resources/views/livewire/project/application/source.blade.php b/resources/views/livewire/project/application/source.blade.php
index 4095c63e0..4aab498e9 100644
--- a/resources/views/livewire/project/application/source.blade.php
+++ b/resources/views/livewire/project/application/source.blade.php
@@ -43,7 +43,7 @@
Select another Private Key
@foreach ($privateKeys as $key)
- {{ $key->name }}
+ {{ $key->name }}
@endforeach