Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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>\(.*\)<\/version>/\1/p' appinfo/info.xml)
VERSION?=$(shell cat package.json | jq -r '.version')
composer=$(shell which composer 2> /dev/null)

# Internal variables
Expand Down Expand Up @@ -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)";

Expand Down
3 changes: 2 additions & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
]]></description>

<version>4.1.0</version>
<version>5.0.0</version>

<licence>agpl</licence>
<author mail="r.ferreira.fuentes@gmail.com" >Raul Ferreira Fuentes</author>
Expand All @@ -26,6 +26,7 @@ Allows administrators to write small scripts which users can run through the fil

<category>files</category>
<category>workflow</category>
<category>customization</category>

<bugs>https://github.com/raudius/files_scripts/issues</bugs>
<repository>https://github.com/raudius/files_scripts.git</repository>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <r.ferreira.fuentes@gmail.com>",
"homepage": "https://github.com/",
"license": "agpl",
Expand Down
Loading