Merge branch 'next' into feature/ai-templates
This commit is contained in:
@@ -61,6 +61,7 @@ class Help extends Component
|
|||||||
send_user_an_email($mail, auth()->user()?->email, 'hi@coollabs.io');
|
send_user_an_email($mail, auth()->user()?->email, 'hi@coollabs.io');
|
||||||
}
|
}
|
||||||
$this->dispatch('success', 'Feedback sent.', 'We will get in touch with you as soon as possible.');
|
$this->dispatch('success', 'Feedback sent.', 'We will get in touch with you as soon as possible.');
|
||||||
|
$this->reset('description', 'subject');
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
return handleError($e, $this);
|
return handleError($e, $this);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ return [
|
|||||||
|
|
||||||
// The release version of your application
|
// The release version of your application
|
||||||
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
|
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
|
||||||
'release' => '4.0.0-beta.355',
|
'release' => '4.0.0-beta.356',
|
||||||
// When left empty or `null` the Laravel environment will be used
|
// When left empty or `null` the Laravel environment will be used
|
||||||
'environment' => config('app.env'),
|
'environment' => config('app.env'),
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return '4.0.0-beta.355';
|
return '4.0.0-beta.356';
|
||||||
|
|||||||
@@ -20,18 +20,14 @@
|
|||||||
<div class="w-[500px]">
|
<div class="w-[500px]">
|
||||||
<x-forms.input readonly label="Deploy Webhook URL" id="webhook" />
|
<x-forms.input readonly label="Deploy Webhook URL" id="webhook" />
|
||||||
</div>
|
</div>
|
||||||
<x-modal-confirmation
|
<x-modal-confirmation title="Redeploy all resources with this tag?" isHighlighted
|
||||||
title="Redeploy all resources with this tag?"
|
buttonTitle="Redeploy All" submitAction="redeploy_all" :actions="[
|
||||||
isHighlighted
|
'All resources with this tag will be redeployed.',
|
||||||
buttonTitle="Redeploy All"
|
'During redeploy resources will be temporarily unavailable.',
|
||||||
submitAction="redeploy_all"
|
]"
|
||||||
:actions="['All resources with this tag will be redeployed.', 'During redeploy resources will be temporarily unavailable.']"
|
confirmationText="{{ $tag }}"
|
||||||
confirmationText="{{ $oneTag->name }}"
|
confirmationLabel="Please confirm the execution of the actions by entering the Tag Name below"
|
||||||
confirmationLabel="Please confirm the execution of the actions by entering the Tag Name below"
|
shortConfirmationLabel="Tag Name" :confirmWithPassword="false" step2ButtonText="Redeploy All" />
|
||||||
shortConfirmationLabel="Tag Name"
|
|
||||||
:confirmWithPassword="false"
|
|
||||||
step2ButtonText="Redeploy All"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="grid grid-cols-1 gap-2 pt-4 lg:grid-cols-2 xl:grid-cols-3">
|
<div class="grid grid-cols-1 gap-2 pt-4 lg:grid-cols-2 xl:grid-cols-3">
|
||||||
@foreach ($applications as $application)
|
@foreach ($applications as $application)
|
||||||
|
|||||||
@@ -24,18 +24,13 @@
|
|||||||
<div class="w-[500px]">
|
<div class="w-[500px]">
|
||||||
<x-forms.input readonly label="Deploy Webhook URL" id="webhook" />
|
<x-forms.input readonly label="Deploy Webhook URL" id="webhook" />
|
||||||
</div>
|
</div>
|
||||||
<x-modal-confirmation
|
<x-modal-confirmation title="Redeploy all resources with this tag?" isHighlighted buttonTitle="Redeploy All"
|
||||||
title="Redeploy all resources with this tag?"
|
submitAction="redeploy_all" :actions="[
|
||||||
isHighlighted
|
'All resources with this tag will be redeployed.',
|
||||||
buttonTitle="Redeploy All"
|
'During redeploy resources will be temporarily unavailable.',
|
||||||
submitAction="redeploy_all"
|
]" confirmationText="{{ $tag }}"
|
||||||
:actions="['All resources with this tag will be redeployed.', 'During redeploy resources will be temporarily unavailable.']"
|
confirmationLabel="Please confirm the execution of the actions by entering the Tag Name below"
|
||||||
confirmationText="{{ $oneTag->name }}"
|
shortConfirmationLabel="Tag Name" :confirmWithPassword="false" step2ButtonText="Redeploy All" />
|
||||||
confirmationLabel="Please confirm the execution of the actions by entering the Tag Name below"
|
|
||||||
shortConfirmationLabel="Tag Name"
|
|
||||||
:confirmWithPassword="false"
|
|
||||||
step2ButtonText="Redeploy All"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="grid grid-cols-1 gap-2 pt-4 lg:grid-cols-2 xl:grid-cols-3">
|
<div class="grid grid-cols-1 gap-2 pt-4 lg:grid-cols-2 xl:grid-cols-3">
|
||||||
@foreach ($applications as $application)
|
@foreach ($applications as $application)
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"coolify": {
|
"coolify": {
|
||||||
"v4": {
|
"v4": {
|
||||||
"version": "4.0.0-beta.355"
|
"version": "4.0.0-beta.356"
|
||||||
},
|
},
|
||||||
"nightly": {
|
"nightly": {
|
||||||
"version": "4.0.0-beta.356"
|
"version": "4.0.0-beta.357"
|
||||||
},
|
},
|
||||||
"helper": {
|
"helper": {
|
||||||
"version": "1.0.1"
|
"version": "1.0.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user