mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-09-11 17:15:49 +08:00
Merge pull request #5203 from nextcloud/enh/noid/install-nc-30-directly
aio-interface: allow to install nc 30 directly
This commit is contained in:
commit
06b1116402
2 changed files with 3 additions and 3 deletions
|
@ -173,7 +173,7 @@ class DockerController
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($request->getParsedBody()['install_latest_major'])) {
|
if (isset($request->getParsedBody()['install_latest_major'])) {
|
||||||
$installLatestMajor = 29;
|
$installLatestMajor = 30;
|
||||||
} else {
|
} else {
|
||||||
$installLatestMajor = "";
|
$installLatestMajor = "";
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
{% set isBackupOrRestoreRunning = false %}
|
{% set isBackupOrRestoreRunning = false %}
|
||||||
{% set isApacheStarting = false %}
|
{% set isApacheStarting = false %}
|
||||||
{# Setting newMajorVersion to '' will hide corresponding options/elements, can be set to an integer like 26 in order to show corresponding elements. If set, also increase installLatestMajor in https://github.com/nextcloud/all-in-one/blob/main/php/src/Controller/DockerController.php #}
|
{# Setting newMajorVersion to '' will hide corresponding options/elements, can be set to an integer like 26 in order to show corresponding elements. If set, also increase installLatestMajor in https://github.com/nextcloud/all-in-one/blob/main/php/src/Controller/DockerController.php #}
|
||||||
{% set newMajorVersion = '' %}
|
{% set newMajorVersion = 30 %}
|
||||||
|
|
||||||
{% if is_backup_container_running == true %}
|
{% if is_backup_container_running == true %}
|
||||||
{% if borg_backup_mode == 'backup' or borg_backup_mode == 'restore' %}
|
{% if borg_backup_mode == 'backup' or borg_backup_mode == 'restore' %}
|
||||||
|
@ -298,7 +298,7 @@
|
||||||
{% if newMajorVersion != '' and isAnyRunning == true and isApacheStarting != true %}
|
{% if newMajorVersion != '' and isAnyRunning == true and isApacheStarting != true %}
|
||||||
<details>
|
<details>
|
||||||
<summary>Note about <strong>Nextcloud {{ newMajorVersion }}</strong></summary>
|
<summary>Note about <strong>Nextcloud {{ newMajorVersion }}</strong></summary>
|
||||||
<p>If you haven't upgraded to Nextcloud {{ newMajorVersion }} yet and want to do that now, feel free to follow <strong><a href="https://github.com/nextcloud/all-in-one/discussions/4542">this documentation</a></strong></p>
|
<p>If you haven't upgraded to Nextcloud {{ newMajorVersion }} yet and want to do that now, feel free to follow <strong><a href="https://github.com/nextcloud/all-in-one/discussions/5133">this documentation</a></strong></p>
|
||||||
</details>
|
</details>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue