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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2021-09-05 09:31:08 +0300
committernachoparker <nacho@ownyourbits.com>2021-09-13 01:55:46 +0300
commitc10d4bd8fb187afe5de8af491a99449594c0767f (patch)
tree4205abcf5a9365a33f4bb83382eb0a7f9aa4c7ce /ncp-previewgenerator/ncp-previewgenerator-nc21/appinfo/info.xml
parent3bf746bad0344c5df8d6324d7d03971b6cc5b3f7 (diff)
upgrade to NC21.0.4v1.39.0
Signed-off-by: nachoparker <nacho@ownyourbits.com>
Diffstat (limited to 'ncp-previewgenerator/ncp-previewgenerator-nc21/appinfo/info.xml')
-rw-r--r--ncp-previewgenerator/ncp-previewgenerator-nc21/appinfo/info.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/ncp-previewgenerator/ncp-previewgenerator-nc21/appinfo/info.xml b/ncp-previewgenerator/ncp-previewgenerator-nc21/appinfo/info.xml
new file mode 100644
index 00000000..db280895
--- /dev/null
+++ b/ncp-previewgenerator/ncp-previewgenerator-nc21/appinfo/info.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
+ <id>previewgenerator</id>
+ <name>Preview Generator</name>
+ <summary>A preview pre-generation app</summary>
+ <description><![CDATA[The Preview Generator app allows admins to pre-generate previews. The app listens to edit events and stores this information. Once a cron job is triggered it will generate start preview generation. This means that you can better utilize your system by pre-generating previews when your system is normally idle and thus putting less load on your machine when the requests are actually served.
+
+The app does not replace on demand preview generation so if a preview is requested before it is pre-generated it will still be shown.
+The first time you install this app, before using a cron job, you properly want to generate all previews via:
+**./occ preview:generate-all -vvv**
+
+**Important**: To enable pre-generation of previews you must add **php /var/www/nextcloud/occ preview:pre-generate** to a system cron job that runs at times of your choosing.]]>
+ </description>
+ <licence>AGPL</licence>
+ <author>Roeland Jago Douma</author>
+ <version>3.1.1</version>
+ <namespace>PreviewGenerator</namespace>
+ <category>multimedia</category>
+ <website>https://github.com/rullzer/previewgenerator</website>
+ <bugs>https://github.com/rullzer/previewgenerator/issues</bugs>
+ <repository type="git">https://github.com/rullzer/previewgenerator.git</repository>
+ <types>
+ <filesystem/>
+ </types>
+ <dependencies>
+ <php min-version="7.2"/>
+ <nextcloud min-version="20" max-version="21" />
+ </dependencies>
+
+ <commands>
+ <command>OCA\PreviewGenerator\Command\Generate</command>
+ <command>OCA\PreviewGenerator\Command\DeleteOld</command>
+ <command>OCA\PreviewGenerator\Command\PreGenerate</command>
+ </commands>
+</info>