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

info.xml « appinfo - github.com/nextcloud/previewgenerator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d37a97fa904edb0110dc56340a281baa80e4a621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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>Richard Steinmetz</author>
	<version>5.0.0</version>
	<namespace>PreviewGenerator</namespace>
	<category>multimedia</category>
	<website>https://github.com/nextcloud/previewgenerator</website>
	<bugs>https://github.com/nextcloud/previewgenerator/issues</bugs>
	<repository type="git">https://github.com/nextcloud/previewgenerator.git</repository>
	<types>
		<filesystem/>
	</types>
	<dependencies>
		<php min-version="7.4" max-version="8.1" />
		<nextcloud min-version="23" max-version="25" />
	</dependencies>

	<commands>
		<command>OCA\PreviewGenerator\Command\Generate</command>
		<command>OCA\PreviewGenerator\Command\PreGenerate</command>
	</commands>
</info>