diff options
author | Josh <josh.t.richards@gmail.com> | 2024-03-18 17:07:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-18 17:07:43 -0400 |
commit | 007da3ce4891f8c5fe3590e6e6d800673468bb8d (patch) | |
tree | 64fc597afb55cb8f4f1cc3a7fcb1252c05a1e453 | |
parent | 05b2ec772a052667bf86d8bc13e534f8a2c697ed (diff) | |
download | nextcloud-server-jr/enh/updates/options-buttons-web-ui.tar.gz nextcloud-server-jr/enh/updates/options-buttons-web-ui.zip |
Update UpdateNotification.vuejr/enh/updates/options-buttons-web-ui
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index e55df3d3e46..292960f36a6 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -53,10 +53,13 @@ @click="clickUpdaterButton">{{ t('updatenotification', 'Update via web') }}</a> <a v-if="updaterEnabled" href="https://docs.nextcloud.com/server/latest/admin_manual/maintenance/update.html#using-the-command-line-based-updater" - class="button primary">{{ t('updatenotification', 'Update via command line`) }}</a> + class="button primary">{{ t('updatenotification', 'Update via command line`) }}</a> + <a v-if="updaterEnabled" + href="https://docs.nextcloud.com/server/latest/admin_manual/maintenance/manual_upgrade.html" + class="button primary">{{ t('updatenotification', 'Update manually`) }}</a> <a v-if="downloadLink && updaterEnabled" :href="downloadLink" - class="button">{{ t('updatenotification', 'Update manually') }}</a> + class="button">{{ t('updatenotification', 'Download the Archive (.zip) file') }}</a> <span v-if="updaterEnabled && !webUpdaterEnabled"> {{ t('updatenotification', 'Web updater is disabled. Please use the command line updater or the appropriate update mechanism for your installation method (e.g. Docker pull) to update.') }} </span> |