/dev/null 2>&1
+bash /data/coolify/source/upgrade.sh "${LATEST_VERSION:-latest}" "${LATEST_HELPER_VERSION:-latest}"
echo " - Coolify installed successfully."
rm -f $ENV_FILE-$DATE
diff --git a/other/nightly/versions.json b/other/nightly/versions.json
index c04a3dee6..3ae51e8cb 100644
--- a/other/nightly/versions.json
+++ b/other/nightly/versions.json
@@ -1,16 +1,19 @@
{
"coolify": {
"v4": {
- "version": "4.0.0-beta.354"
+ "version": "4.0.0-beta.362"
},
"nightly": {
- "version": "4.0.0-beta.355"
+ "version": "4.0.0-beta.363"
},
"helper": {
- "version": "1.0.2"
+ "version": "1.0.3"
},
"realtime": {
- "version": "1.0.3"
+ "version": "1.0.4"
+ },
+ "sentinel": {
+ "version": "0.0.15"
}
}
}
diff --git a/public/svgs/firefox.svg b/public/svgs/firefox.svg
new file mode 100644
index 000000000..9a6371d47
--- /dev/null
+++ b/public/svgs/firefox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/svgs/hoarder.svg b/public/svgs/hoarder.svg
new file mode 100644
index 000000000..6215461d2
--- /dev/null
+++ b/public/svgs/hoarder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/svgs/postiz.svg b/public/svgs/postiz.svg
new file mode 100644
index 000000000..6e3baa813
--- /dev/null
+++ b/public/svgs/postiz.svg
@@ -0,0 +1,13 @@
+
+
+
diff --git a/public/svgs/readeck.svg b/public/svgs/readeck.svg
new file mode 100644
index 000000000..07f6e6157
--- /dev/null
+++ b/public/svgs/readeck.svg
@@ -0,0 +1,9 @@
+
+
diff --git a/public/svgs/wikijs.svg b/public/svgs/wikijs.svg
new file mode 100644
index 000000000..52c4a790b
--- /dev/null
+++ b/public/svgs/wikijs.svg
@@ -0,0 +1,119 @@
+
+
+
diff --git a/resources/views/components/forms/checkbox.blade.php b/resources/views/components/forms/checkbox.blade.php
index f5eb5778a..c8c4a499f 100644
--- a/resources/views/components/forms/checkbox.blade.php
+++ b/resources/views/components/forms/checkbox.blade.php
@@ -10,7 +10,7 @@
])
$fullWidth,
])>
@if (!$hideLabel)
diff --git a/resources/views/components/forms/input.blade.php b/resources/views/components/forms/input.blade.php
index fb206fac4..d832cb30d 100644
--- a/resources/views/components/forms/input.blade.php
+++ b/resources/views/components/forms/input.blade.php
@@ -41,8 +41,9 @@
@if ($id !== 'null') wire:model={{ $id }} @endif
wire:dirty.class.remove='dark:focus:ring-coolgray-300 dark:ring-coolgray-300'
wire:dirty.class="dark:focus:ring-warning dark:ring-warning" wire:loading.attr="disabled"
- type="{{ $type }}" @disabled($disabled)
- min="{{ $attributes->get('min') }}" max="{{ $attributes->get('max') }}"
+ type="{{ $type }}" @disabled($disabled) min="{{ $attributes->get('min') }}"
+ max="{{ $attributes->get('max') }}" minlength="{{ $attributes->get('minlength') }}"
+ maxlength="{{ $attributes->get('maxlength') }}"
@if ($id !== 'null') id={{ $id }} @endif name="{{ $name }}"
placeholder="{{ $attributes->get('placeholder') }}">
@endif
diff --git a/resources/views/components/forms/textarea.blade.php b/resources/views/components/forms/textarea.blade.php
index 24226ecdb..b3669e43d 100644
--- a/resources/views/components/forms/textarea.blade.php
+++ b/resources/views/components/forms/textarea.blade.php
@@ -51,8 +51,8 @@
type="{{ $type }}" @readonly($readonly) @disabled($disabled) id="{{ $id }}"
name="{{ $name }}" placeholder="{{ $attributes->get('placeholder') }}"
aria-placeholder="{{ $attributes->get('placeholder') }}">
-
@else
-