Skip to content

Commit

Permalink
Merge pull request #1801 from nextcloud/docker-devel
Browse files Browse the repository at this point in the history
Prepare v1.51.6
  • Loading branch information
theCalcaholic authored Jul 26, 2023
2 parents 008dd8e + 71c11bd commit c8bb4cf
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/ncp-check-version
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TMPDIR="$( mktemp -d /tmp/ncp-check.XXXXXX || ( echo "Failed to create temp dir.
trap "rm -rf \"${TMPDIR}\"; exit 0" 0 1 2 3 15

BRANCH="master"
is_docker && BRANCH="docker-stable"
{ [[ -f /.dockerenv ]] || [[ -f /.docker-image ]] || [[ "$DOCKERBUILD" == 1 ]]; } && BRANCH="docker-stable"

git clone -b "$BRANCH" --depth 20 -q --bare https://github.com/nextcloud/nextcloudpi.git "$TMPDIR" || {
echo "The git clone command failed: No connectivity to https://github.com ?" >&2
Expand Down
2 changes: 2 additions & 0 deletions bin/ncp-test-updates
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

NEED_UPDATE=false
VERFILE=/var/run/.ncp-latest-version
# Disable internal updater on docker
{ [[ -f /.dockerenv ]] || [[ -f /.docker-image ]] || [[ "$DOCKERBUILD" == 1 ]]; } && exit 1

[[ $( cat $VERFILE 2>/dev/null | wc -c ) -eq 0 ]] && ncp-check-version

Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# NextcloudPi Changelog

## [v1.51.6](https://github.com/nextcloud/nextcloudpi/tree/v1.51.6) (2023-07-26) Minor fixes and NC update

### Changes

Add support for Nextcloud 25.0.9

### Fixes

- Disable internal updater altogether for NCP docker

## [v1.51.5](https://github.com/nextcloud/nextcloudpi/tree/v1.51.5) (2023-07-16) Minor fixes and NC update

### Changes
Expand Down
2 changes: 1 addition & 1 deletion etc/ncp-config.d/nc-nextcloud.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"id": "VER",
"name": "Version",
"value": "25.0.8"
"value": "25.0.9"
},
{
"id": "MAXFILESIZE",
Expand Down
2 changes: 1 addition & 1 deletion etc/ncp.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"nextcloud_version": "25.0.8",
"nextcloud_version": "25.0.9",
"php_version": "8.1",
"release": "bullseye"
}

0 comments on commit c8bb4cf

Please sign in to comment.