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

info.xml « appinfo « ncp-previewgenerator - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6e198e4e4cc3db6a8af18f4db7b320cfcafc693 (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
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>NCP Preview Generator</name>
	<summary>A faster 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.
Use this app through ncp-web section 'nc-previews' and 'nc-previews-auto'
The first time you activate this app through 'nc-previews-auto', you properly want to generate all previews via ncp-web, section 'nc-previews', non incremental mode.
**./occ preview:generate-all -vvv**
]]>
	</description>
	<licence>AGPL</licence>
	<author>Roeland Jago Douma and Ignacio Nunez</author>
	<version>2.2.0</version>
	<namespace>PreviewGenerator</namespace>
	<category>multimedia</category>
	<website>https://nextcloudpi.com</website>
    <bugs>https://github.com/nextcloud/nextcloudpi/issues</bugs>
    <repository type="git">https://github.com/nextcloud/nextcloudpi</repository>
	<types>
		<filesystem/>
	</types>
	<dependencies>
		<php min-version="7.0"/>
		<nextcloud min-version="14" max-version="17" />
	</dependencies>

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