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
2 changes: 1 addition & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pipeline:
image: nextcloudci/php7.0:php7.0-2
environment:
- APP_NAME=files_automatedtagging
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ php:

env:
global:
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- APP_NAME=files_automatedtagging
matrix:
- DB=sqlite
Expand Down
24 changes: 13 additions & 11 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0"?>
<info>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>files_automatedtagging</id>
<name>Files automated tagging</name>
<summary>Automatically assign collaborative tags to files based on conditions</summary>
Expand All @@ -12,31 +13,32 @@ The tags can later be used to control retention, file access, automatic script e
## How it works
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>
<screenshot>https://raw.githubusercontent.com/nextcloud/files_automatedtagging/master/docs/screenshot.png</screenshot>
<licence>AGPL</licence>
<author>Joas Schilling</author>
<version>1.4.0</version>
<licence>agpl</licence>
<author>Joas Schilling</author>
<namespace>FilesAutomatedTagging</namespace>

<types>
<filesystem/>
</types>

<documentation>
<admin>https://docs.nextcloud.com/server/14/go.php?to=admin-files-automated-tagging</admin>
</documentation>

<category>files</category>
<category>organization</category>

<website>https://github.com/nextcloud/files_automatedtagging</website>
<bugs>https://github.com/nextcloud/files_automatedtagging/issues</bugs>
<repository type="git">https://github.com/nextcloud/files_automatedtagging.git</repository>

<types>
<filesystem/>
</types>
<screenshot>https://raw.githubusercontent.com/nextcloud/files_automatedtagging/master/docs/screenshot.png</screenshot>

<dependencies>
<nextcloud min-version="14" max-version="14" />
</dependencies>

<documentation>
<admin>https://docs.nextcloud.com/server/14/go.php?to=admin-files-automated-tagging</admin>
</documentation>

<settings>
<admin>OCA\FilesAutomatedTagging\Settings\Admin</admin>
</settings>
Expand Down