summaryrefslogtreecommitdiffstats
path: root/appinfo/info.xml
blob: 4793915282d6f3bccef73fa9030e6a03e7ca0fb8 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?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>news</id>
    <name>News</name>
    <description>An RSS/Atom feed reader</description>
    <version>9.0.2</version>
    <licence>agpl</licence>
    <author>Bernhard Posselt</author>
    <author>Alessandro Cosentino</author>
    <author>Jan-Christoph Borchardt</author>
    <namespace>News</namespace>
    <documentation>
        <admin>https://github.com/nextcloud/news#readme</admin>
        <developer>https://github.com/nextcloud/news/tree/master/docs</developer>
    </documentation>
    <category>multimedia</category>
    <website>https://github.com/nextcloud/news</website>
    <bugs>https://github.com/nextcloud/news/issues</bugs>
    <repository type="git">https://github.com/nextcloud/news.git</repository>
    <discussion>https://help.nextcloud.com/t/news-app-discussion/1852</discussion>
    <screenshot>https://raw.githubusercontent.com/nextcloud/news/master/screenshots/1.png</screenshot>
    <screenshot>https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2.png</screenshot>
    <dependencies>
        <php min-version="5.6"/>
        <database min-version="9.4">pgsql</database>
        <database>sqlite</database>
        <database min-version="5.5">mysql</database>
        <lib min-version="2.7.8">libxml</lib>
        <lib>curl</lib>
        <lib>SimpleXML</lib>
        <lib>iconv</lib>
        <owncloud min-version="9.1" max-version="9.1"/>
        <nextcloud min-version="10" max-version="10"/>
    </dependencies>

    <!-- navigation -->
    <navigation>
        <route>news.page.index</route>
        <order>10</order>
        <icon>app.svg</icon>
        <name>News</name>
    </navigation>

    <!-- admin -->
    <admin>admin/admin</admin>

    <!-- cron jobs -->
    <cron>
        <job>OCA\News\Cron\Updater</job>
    </cron>

    <!-- hooks -->
    <hooks>
        <hook>
            <channel>OC_User::pre_deleteUser</channel>
            <subscriber>OCA\News\Hooks\User::deleteUser</subscriber>
        </hook>
    </hooks>
    <ocsid>168040</ocsid>
</info>