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

info.xml ยซ appinfo - github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e9dbc84d695771607403af8537fabf68ca83ac0 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?>
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
    <id>deck</id>
    <name>Deck</name>
    <summary>Personal planning and team project organization</summary>
    <description>Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.


- ๐Ÿ“ฅ Add your tasks to cards and put them in order
- ๐Ÿ“„ Write down additional notes in Markdown
- ๐Ÿ”– Assign labels for even better organization
- ๐Ÿ‘ฅ Share with your team, friends or family
- ๐Ÿ“Ž Attach files and embed them in your Markdown description
- ๐Ÿ’ฌ Discuss with your team using comments
- โšก Keep track of changes in the activity stream
- ๐Ÿš€ Get your project organized

</description>
    <version>1.8.0-beta.1</version>
    <licence>agpl</licence>
    <author>Julius Hรคrtl</author>
    <namespace>Deck</namespace>
    <types>
        <dav/>
    </types>
    <category>organization</category>
    <category>office</category>
    <website>https://github.com/nextcloud/deck</website>
    <bugs>https://github.com/nextcloud/deck/issues</bugs>
    <repository type="git">https://github.com/nextcloud/deck.git</repository>
    <screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-1.png</screenshot>
    <screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-2.png</screenshot>
    <dependencies>
        <database min-version="9.4">pgsql</database>
        <database>sqlite</database>
        <database min-version="8.0">mysql</database>
        <nextcloud min-version="25" max-version="25"/>
    </dependencies>
    <background-jobs>
        <job>OCA\Deck\Cron\DeleteCron</job>
        <job>OCA\Deck\Cron\ScheduledNotifications</job>
        <job>OCA\Deck\Cron\CardDescriptionActivity</job>
    </background-jobs>
    <commands>
        <command>OCA\Deck\Command\UserExport</command>
        <command>OCA\Deck\Command\BoardImport</command>
        <command>OCA\Deck\Command\TransferOwnership</command>
    </commands>
    <activity>
        <settings>
            <setting>OCA\Deck\Activity\Setting</setting>
            <setting>OCA\Deck\Activity\SettingComment</setting>
            <setting>OCA\Deck\Activity\DescriptionSetting</setting>
        </settings>
        <filters>
            <filter>OCA\Deck\Activity\Filter</filter>
        </filters>
        <providers>
            <provider>OCA\Deck\Activity\DeckProvider</provider>
        </providers>
    </activity>
    <fulltextsearch>
        <provider min-version="16">OCA\Deck\Provider\DeckProvider</provider>
    </fulltextsearch>
    <navigations>
        <navigation>
            <name>Deck</name>
            <route>deck.page.index</route>
            <icon>deck.svg</icon>
            <order>10</order>
        </navigation>
    </navigations>
    <sabre>
        <calendar-plugins>
            <plugin>OCA\Deck\DAV\CalendarPlugin</plugin>
        </calendar-plugins>
    </sabre>
</info>