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

github.com/nextcloud/files_automatedtagging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-09-22 14:24:43 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-22 14:24:43 +0300
commit0c51859b090566da67b4df59bd0ea28d1f8e127b (patch)
tree15679c1136fdc6d13eb2475b4c54c470ef79c1cc
parentf00daa7974d7be81ee1ca13378ab06652d1be54a (diff)
Add Nextcloud 25 support on master
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/update-christophwurst-nextcloud.yml2
-rw-r--r--appinfo/info.xml4
-rw-r--r--package.json2
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/update-christophwurst-nextcloud.yml b/.github/workflows/update-christophwurst-nextcloud.yml
index e2e5f52..50c81c6 100644
--- a/.github/workflows/update-christophwurst-nextcloud.yml
+++ b/.github/workflows/update-christophwurst-nextcloud.yml
@@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- branches: ["master", "stable24", "stable23", "stable22"]
+ branches: ["master", "stable25", "stable24", "stable23"]
name: update-christophwurst-nextcloud-${{ matrix.branches }}
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 47df678..d805b35 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -12,7 +12,7 @@ The tags can later be used to control retention, file access, automatic script e
To define tags, administrators can create and manage a set of rule groups. Each rule group consists of one or more rules combined through operators. Rules can include criteria like file type, size, time and more. A request matches a group if all rules evaluate to true. On uploading a file all defined groups are evaluated and when matching, the given tags are assigned to the file.
</description>
- <version>1.15.0</version>
+ <version>1.16.0</version>
<licence>agpl</licence>
<author>Joas Schilling</author>
<namespace>FilesAutomatedTagging</namespace>
@@ -34,6 +34,6 @@ To define tags, administrators can create and manage a set of rule groups. Each
<repository>https://github.com/nextcloud/files_automatedtagging.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/files_automatedtagging/master/docs/screenshot.png</screenshot>
<dependencies>
- <nextcloud min-version="25" max-version="25" />
+ <nextcloud min-version="26" max-version="26" />
</dependencies>
</info>
diff --git a/package.json b/package.json
index ebd6041..8803162 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "files_automatedtagging",
- "version": "1.15.0",
+ "version": "1.16.0",
"bugs": {
"url": "https://github.com/nextcloud/files_automatedtagging/issues"
},