Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2021-01-01 23:56:35 +0300
committernachoparker <nacho@ownyourbits.com>2021-01-01 23:56:35 +0300
commitec428a288f1f3ed7addd76e3b9ffb4fe9cfef6fe (patch)
tree9d0e46aee0eb2a5e3190ede2d251a379f182e5f8
parent82d00c8a61ec25314e24da715c54990471fc119b (diff)
upgrade to NC20.0.4v1.34.0
Signed-off-by: nachoparker <nacho@ownyourbits.com>
-rw-r--r--README.md2
-rwxr-xr-xbin/ncp-update-nc8
-rw-r--r--changelog.md6
-rw-r--r--etc/ncp-config.d/nc-nextcloud.cfg2
-rw-r--r--etc/ncp.cfg2
5 files changed, 12 insertions, 8 deletions
diff --git a/README.md b/README.md
index 3750472b..e4e466a9 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Find the full documentation at [docs.nextcloudpi.com](http://docs.nextcloudpi.co
## Features
* Debian/Raspbian 10 Buster
- * Nextcloud 20.0.3
+ * Nextcloud 20.0.4
* Apache 2.4.25, with HTTP2 enabled
* PHP 7.3
* MariaDB 10
diff --git a/bin/ncp-update-nc b/bin/ncp-update-nc
index 2f41d4a3..2103dbdd 100755
--- a/bin/ncp-update-nc
+++ b/bin/ncp-update-nc
@@ -181,10 +181,10 @@ find nextcloud/ -type f -exec chmod 640 {} \;
echo "Upgrade..."
ncc='sudo -u www-data php nextcloud/occ'
$ncc upgrade # && false # test point
-$ncc | grep -q db:add-missing-indices && $ncc db:add-missing-indices
-$ncc | grep -q db:add-missing-columns && $ncc db:add-missing-columns
-$ncc | grep -q db:add-missing-primary-keys && $ncc db:add-missing-primary-keys
-$ncc | grep -q db:convert-filecache-bigint && $ncc db:convert-filecache-bigint
+$ncc | grep -q db:add-missing-indices && $ncc db:add-missing-indices -n
+$ncc | grep -q db:add-missing-columns && $ncc db:add-missing-columns -n
+$ncc | grep -q db:add-missing-primary-keys && $ncc db:add-missing-primary-keys -n
+$ncc | grep -q db:convert-filecache-bigint && $ncc db:convert-filecache-bigint -n
# done
####################
diff --git a/changelog.md b/changelog.md
index 30c3f3ee..4e344d1a 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,9 @@
-[v1.33.1](https://github.com/nextcloud/nextcloudpi/commit/6891f49) (2020-12-12) nc-update-nc: improve error messages
+[v1.34.0](https://github.com/nextcloud/nextcloudpi/commit/68181eb) (2021-01-01) upgrade to NC20.0.4
+
+[v1.33.2](https://github.com/nextcloud/nextcloudpi/commit/08e5a36) (2021-01-01) ncp-config: fix empty values
+
+[v1.33.1 ](https://github.com/nextcloud/nextcloudpi/commit/42fd597) (2020-12-12) nc-update-nc: improve error messages
[v1.33.0](https://github.com/nextcloud/nextcloudpi/commit/ffd0b44) (2020-12-10) upgrade to NC20.0.3
diff --git a/etc/ncp-config.d/nc-nextcloud.cfg b/etc/ncp-config.d/nc-nextcloud.cfg
index f9a71dfd..49ff85a9 100644
--- a/etc/ncp-config.d/nc-nextcloud.cfg
+++ b/etc/ncp-config.d/nc-nextcloud.cfg
@@ -9,7 +9,7 @@
{
"id": "VER",
"name": "Version",
- "value": "20.0.3"
+ "value": "20.0.4"
},
{
"id": "BETA",
diff --git a/etc/ncp.cfg b/etc/ncp.cfg
index aa34892a..60f3f8e3 100644
--- a/etc/ncp.cfg
+++ b/etc/ncp.cfg
@@ -1,5 +1,5 @@
{
- "nextcloud_version": "20.0.3",
+ "nextcloud_version": "20.0.4",
"php_version": "7.3",
"release": "buster"
}