mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
community/nextcloud: upgrade to 28.0.0
This commit is contained in:
parent
1d5aa6ebbc
commit
89aad3796e
@ -1,9 +1,9 @@
|
||||
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
||||
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
||||
pkgname=nextcloud
|
||||
pkgver=27.1.4
|
||||
pkgver=28.0.0
|
||||
pkgrel=0
|
||||
_replaced_ver=26
|
||||
_replaced_ver=27
|
||||
pkgdesc="A safe home for all your data"
|
||||
url="https://nextcloud.com/"
|
||||
arch="noarch"
|
||||
@ -73,7 +73,7 @@ _apps="activity
|
||||
federation
|
||||
files_external
|
||||
files_pdfviewer
|
||||
files_rightclick
|
||||
files_reminders
|
||||
files_sharing
|
||||
files_trashbin
|
||||
files_versions
|
||||
@ -254,11 +254,11 @@ _package_app() {
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
18a3beea9668903cc6dd89b31231e4a47f08eb94c136eb94dfe66aaef743dd12ac3c47d2fe99d84034bc097eb63c2dd97de108985c9ce2ae744c866151f800d1 nextcloud-27.1.4.tar.bz2
|
||||
84f543bb73982fe302925837f2def3166e2965c8bccf52650684f6f4c17cd7e009184ce423eb987da181570bcc6cfe80afdb6900cb03d01db03e1c44ecdc8f5b nextcloud-28.0.0.tar.bz2
|
||||
aea0adb2c3a48ec6af2958c6ccfe13adff86316a56084e763b7e6df9e21aa3435b13305b7c15cc2b795e83c9388b05006862f6465c29e3dc2c1fbd8eb8befcb9 nextcloud-dont-chmod.patch
|
||||
aef3c92497d738d6968e0f0b0d415b4953500db24ae14af41ef972665cf7eff00cb6c53dc953845fdbb389c3c965a75b8b14b9247513c05cf4130fe1cfc61731 dont-update-htaccess.patch
|
||||
ccee7b4d2520653dc4584e364f082c7d2c2ebce12642db47ad31bba3aa13fabeb0954876640f6a2854fdf8395b0a305b64b7ef668887a9326a8be0611ebfe008 disable-integrity-check-as-default.patch
|
||||
fa63b5de7e6a44d91af6403bd1f2739f0f785b99a1bd5c978b91d1348fead9059d847c228a90e13844c66be60d4ee9186e4ecb18ac367899a7f153211ac057b4 use-external-docs-if-local-not-avail.patch
|
||||
c0a9b7c31c8beaca711f8e97d98441007b3dca7fb3d316d2eacd28a73b5233def6f846c02d98202f75efb9cb248b8787a80e20b07c32d1c7534a0e54bb20feab use-external-docs-if-local-not-avail.patch
|
||||
5f73cd9399fa484ef15bd47e803c93381deffbc7699eceadbb5c27e43b20156806d74e5021a64d28f0165ef87b519e962780651711a37bceb9f0b04455dfdce1 nextcloud-config.php
|
||||
7388458a9e8b7afd3d3269718306410ffa59c3c23da4bef367a4d7f6d2570136fae9dd421b19c1441e7ffb15a5405e18bb5da67b1a15f9f45e8b98d3fda532ba nextcloud.logrotate
|
||||
dcc57735d7d4af4a7ebbdd1186d301e51d2ae4675022aea6bf1111222dfa188a3a490ebd6e7c8a7ac30046cb7d93f81cec72a51acbc60d0c10b7fb64630c637a nextcloud.confd
|
||||
|
||||
@ -1,23 +1,24 @@
|
||||
From f17c14956c51206ad82acc5d9b66fd752f0e3c03 Mon Sep 17 00:00:00 2001
|
||||
From: Jakub Jirutka <jakub@jirutka.cz>
|
||||
Date: Tue, 27 Jun 2017 02:07:00 +0200
|
||||
Subject: [PATCH] Show link to external docs if local is not installed
|
||||
Date: Tue, 19 Dec 2023 07:53:40 +0000
|
||||
Subject: [PATCH] use external docs if local not available
|
||||
|
||||
---
|
||||
apps/settings/templates/help.php | 11 +++++++++++
|
||||
1 file changed, 11 insertions(+)
|
||||
|
||||
diff --git a/apps/settings/templates/help.php b/apps/settings/templates/help.php
|
||||
index 18cba185..45b5c8d5 100644
|
||||
index 649178c1..29b5ac4c 100644
|
||||
--- a/apps/settings/templates/help.php
|
||||
+++ b/apps/settings/templates/help.php
|
||||
@@ -43,6 +43,17 @@
|
||||
</div>
|
||||
@@ -48,8 +48,19 @@
|
||||
</div>
|
||||
|
||||
<div id="app-content" class="help-includes">
|
||||
+<?php if ($_['localDocs']) { ?>
|
||||
<iframe src="<?php print_unescaped($_['url']); ?>" class="help-iframe" tabindex="0">
|
||||
</iframe>
|
||||
+<?php } else { ?>
|
||||
<div id="app-content" class="help-includes">
|
||||
+ <?php if ($_['localDocs']) { ?>
|
||||
<iframe src="<?php print_unescaped($_['url']); ?>" class="help-iframe" tabindex="0">
|
||||
</iframe>
|
||||
+ <?php } else { ?>
|
||||
+ <div class="section">
|
||||
+ <h2>Local documentation is not installed</h2>
|
||||
+ <p>Please use
|
||||
@ -26,7 +27,10 @@ index 18cba185..45b5c8d5 100644
|
||||
+ </a>
|
||||
+ </p>
|
||||
+ </div>
|
||||
+<?php } ?>
|
||||
</div>
|
||||
+ <?php } ?>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<div id="app-content">
|
||||
--
|
||||
2.37.3
|
||||
2.42.0
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user