Skip to content

Commit e444b7f

Browse files
committed
upgrade to NC20.0.2
Signed-off-by: nachoparker <[email protected]>
1 parent c42baaa commit e444b7f

File tree

7 files changed

+10
-17
lines changed

7 files changed

+10
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Find the full documentation at [docs.nextcloudpi.com](http://docs.nextcloudpi.co
1616
## Features
1717

1818
* Debian/Raspbian 10 Buster
19-
* Nextcloud 19.0.4
19+
* Nextcloud 20.0.2
2020
* Apache 2.4.25, with HTTP2 enabled
2121
* PHP 7.3
2222
* MariaDB 10

bin/ncp-update-nc

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -132,16 +132,6 @@ cp nextcloud-old/config/config.php nextcloud/config/
132132
####################
133133
cp -raT nextcloud-old/themes/ nextcloud/themes/
134134

135-
# copy apps
136-
####################
137-
echo "Restore apps..."
138-
for app in $( ls nextcloud-old/apps/*/ -d ); do
139-
app=$( basename "$app" )
140-
[[ ! -d nextcloud/apps/$app ]] && {
141-
echo " * $app"
142-
cp -r nextcloud-old/apps/$app nextcloud/apps
143-
}
144-
done
145135
#false # test point
146136

147137
# copy data if it was at the default location
@@ -183,6 +173,7 @@ ncc='sudo -u www-data php nextcloud/occ'
183173
$ncc upgrade # && false # test point
184174
$ncc db:add-missing-indices
185175
$ncc | grep -q db:add-missing-columns && $ncc db:add-missing-columns
176+
$ncc | grep -q db:add-missing-primary-keys && $ncc db:add-missing-primary-keys
186177

187178
# done
188179
####################

changelog.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11

2-
[v1.31.0](https://github.com/nextcloud/nextcloudpi/commit/edcfde3) (2020-10-19) upgrade to NC19.0.4
2+
[v1.32.0](https://github.com/nextcloud/nextcloudpi/commit/eb58419) (2020-11-24) upgrade to NC20.0.2
33

4-
[v1.30.1](https://github.com/nextcloud/nextcloudpi/commit/9450613) (2020-10-20) nc-info: fixed api change for portchecker (#1194)
4+
[v1.31.0](https://github.com/nextcloud/nextcloudpi/commit/ab9184c) (2020-10-19) upgrade to NC19.0.4
5+
6+
[v1.30.1 ](https://github.com/nextcloud/nextcloudpi/commit/9450613) (2020-10-20) nc-info: fixed api change for portchecker (#1194)
57

68
[v1.30.0 ](https://github.com/nextcloud/nextcloudpi/commit/f00fe21) (2020-09-19) upgrade to NC19.0.2
79

etc/ncp-config.d/nc-nextcloud.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"id": "VER",
1111
"name": "Version",
12-
"value": "19.0.4"
12+
"value": "20.0.2"
1313
},
1414
{
1515
"id": "BETA",

etc/ncp.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"nextcloud_version": "19.0.4",
2+
"nextcloud_version": "20.0.2",
33
"php_version": "7.3",
44
"release": "buster"
55
}

ncp-app/appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<category>tools</category>
1313
<bugs>https://github.com/nextcloud/nextcloudpi/issues</bugs>
1414
<dependencies>
15-
<nextcloud min-version="14" max-version="19"/>
15+
<nextcloud min-version="14" max-version="20"/>
1616
</dependencies>
1717
<navigations>
1818
<navigation>

ncp-previewgenerator/appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The first time you activate this app through 'nc-previews-auto', you properly wa
2424
</types>
2525
<dependencies>
2626
<php min-version="7.0"/>
27-
<nextcloud min-version="14" max-version="19" />
27+
<nextcloud min-version="14" max-version="20" />
2828
</dependencies>
2929

3030
<commands>

0 commit comments

Comments
 (0)