-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathinfo.xml
More file actions
76 lines (72 loc) · 3.26 KB
/
info.xml
File metadata and controls
76 lines (72 loc) · 3.26 KB
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
<?xml version="1.0" encoding="utf-8"?>
<!--
- SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>tables</id>
<name>Tables</name>
<summary>Manage data the way you need it.</summary>
<description><![CDATA[Manage data the way you need it.
With this app you are able to create your own tables with individual columns. You can start with a template or from scratch and add your wanted columns.
You can choose from the following column types:
- Text line or rich text
- Link to urls or other nextcloud resources
- Numbers
- Progress bar
- Stars rating
- Yes/No tick
- Date and/or time
- (Multi) selection
Share your tables and views with users and groups within your cloud.
Have a good time and manage whatever you want.
]]></description>
<version>0.8.5</version>
<licence>agpl</licence>
<author mail="florian.steffens@nextcloud.com">Florian Steffens</author>
<namespace>Tables</namespace>
<documentation>
<user>https://github.com/nextcloud/tables/wiki</user>
<admin>https://github.com/nextcloud/tables/wiki/Administration</admin>
</documentation>
<category>office</category>
<website>https://github.com/nextcloud/tables</website>
<bugs>https://github.com/nextcloud/tables/issues</bugs>
<screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-1-small.png">https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-1.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-2.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-3.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-4.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-5.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-6.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/tables/main/screenshots/sh-tables-7.png</screenshot>
<dependencies>
<database>pgsql</database>
<database>mysql</database>
<database>sqlite</database>
<nextcloud min-version="27" max-version="31"/>
</dependencies>
<repair-steps>
<post-migration>
<step>OCA\Tables\Migration\NewDbStructureRepairStep</step>
<step>OCA\Tables\Migration\DbRowSleeveSequence</step>
</post-migration>
</repair-steps>
<commands>
<command>OCA\Tables\Command\ListTables</command>
<command>OCA\Tables\Command\AddTable</command>
<command>OCA\Tables\Command\RemoveTable</command>
<command>OCA\Tables\Command\RenameTable</command>
<command>OCA\Tables\Command\ChangeOwnershipTable</command>
<command>OCA\Tables\Command\ListContexts</command>
<command>OCA\Tables\Command\ShowContext</command>
<command>OCA\Tables\Command\Clean</command>
<command>OCA\Tables\Command\CleanLegacy</command>
<command>OCA\Tables\Command\TransferLegacyRows</command>
</commands>
<navigations>
<navigation>
<name>Tables</name>
<route>tables.page.index</route>
</navigation>
</navigations>
</info>