summaryrefslogtreecommitdiffstats
path: root/appinfo/info.xml
blob: 9d5861cca3568c4abf9895fa7c1b0e2ae0aef05b (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
61
62
63
64
<?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>
    <summary>An RSS/Atom feed reader</summary>
    <description><![CDATA[The News app is an RSS/Atom feed reader for Nextcloud which can be synced with many mobile devices. A list of all clients and requirements can be found [in the README](https://github.com/nextcloud/news)

Before you update to a new version, [check the changelog](https://github.com/nextcloud/news/blob/master/CHANGELOG.md) to avoid surprises.

**Important**: To enable feed updates you will need to enable either [Nextcloud system cron](https://docs.nextcloud.org/server/latest/admin_manual/configuration_server/background_jobs_configuration.html#cron) or use [an updater](https://github.com/nextcloud/news-updater) which uses the built in update API and disable cron updates. More information can be found [in the README](https://github.com/nextcloud/news).]]></description>
    <version>14.0.1</version>
    <licence>agpl</licence>
    <author>Benjamin Brahmer</author>
    <author>Sean Molenaar</author>
    <author>Bernhard Posselt (former)</author>
    <author>Alessandro Cosentino (former)</author>
    <author>Jan-Christoph Borchardt (former)</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>
    <screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/news/master/screenshots/1-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/1.png</screenshot>
    <screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2.png</screenshot>
    <screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/news/master/screenshots/3-small.png">https://raw.githubusercontent.com/nextcloud/news/master/screenshots/3.png</screenshot>
    <dependencies>
        <php min-version="7.1"/>
        <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 max-version="0" min-version="0"/>
        <nextcloud min-version="16" max-version="17"/>
    </dependencies>

    <background-jobs>
        <job>OCA\News\Cron\Updater</job>
    </background-jobs>

    <repair-steps>
        <post-migration>
            <step>OCA\News\Migration\MigrateStatusFlags</step>
        </post-migration>
    </repair-steps>

    <settings>
        <admin>OCA\News\Settings\Admin</admin>
        <admin-section>OCA\News\Settings\Section</admin-section>
    </settings>

    <navigations>
        <navigation>
            <name>News</name>
            <route>news.page.index</route>
        </navigation>
    </navigations>
</info>