diff --git a/CHANGELOG.md b/CHANGELOG.md index 43d9caa..41e8687 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 5.0.0 + +- Adds compatibility for Nextcloud versions 33 to 35 +- Fixes registration of file action in frontend + - Additional fixes for getting the file action to appear on public shares +- Fixes some deprecated PHP behaviour +- Fixes integration tests not working due to authentication issues +- Dependency updates + ## 4.1.0 ### Added diff --git a/Makefile b/Makefile index df4b93b..5a63f14 100755 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # This file is licensed under the Affero General Public License version 3 or # later. See the COPYING file. -VERSION?=$(shell sed -ne 's/^\s*\(.*\)<\/version>/\1/p' appinfo/info.xml) +VERSION?=$(shell cat package.json | jq -r '.version') composer=$(shell which composer 2> /dev/null) # Internal variables @@ -107,7 +107,7 @@ prepare-build: # Signs the build files sign-build: echo "Signing app files…"; \ - sudo -u \#33 -- $(OCC) integrity:sign-app --privateKey="$(CERT_DIR)/$(APP_NAME).key" \ + $(OCC) integrity:sign-app --privateKey="$(CERT_DIR)/$(APP_NAME).key" \ --certificate="$(CERT_DIR)/$(APP_NAME).crt" \ --path="$(RELEASE_DIR)/$(APP_NAME)"; diff --git a/appinfo/info.xml b/appinfo/info.xml index ddc2567..302f621 100755 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,7 +14,7 @@ Allows administrators to write small scripts which users can run through the fil ⚠️ **Attention** Scripts may modify and delete files permanently. Take care and make sure to read the documentation thoroughly before scripting. ]]> - 4.1.0 + 5.0.0 agpl Raul Ferreira Fuentes @@ -26,6 +26,7 @@ Allows administrators to write small scripts which users can run through the fil files workflow + customization https://github.com/raudius/files_scripts/issues https://github.com/raudius/files_scripts.git diff --git a/package.json b/package.json index c0f2d61..a11009f 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "files_scripts", "description": "Nextcloud app for running custom scripts on files.", - "version": "4.1.0", + "version": "5.0.0", "author": "Raul Ferreira Fuentes ", "homepage": "https://github.com/", "license": "agpl",