Skip to content

Commit

Permalink
fix(appinfo): Validate using XSD, reorder tags to match schema
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux committed Nov 27, 2023
1 parent 3cdad4d commit 68f2bf5
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?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>forms</id>
Expand All @@ -13,11 +13,8 @@
- **🙋 Get involved!** We have lots of stuff planned like more question types, collaboration on forms, [and much more](https://github.com/nextcloud/forms/milestones)!
]]></description>

<licence>agpl</licence>
<version>3.4.0</version>
<dependencies>
<nextcloud min-version="26" max-version="27" />
</dependencies>
<licence>agpl</licence>

<author>Affan Hussain</author>
<author>Ajfar Huq</author>
Expand All @@ -36,46 +33,51 @@
<author>Tim Sattizahn</author>
<author>Vinzenz Rosenkranz</author>

<documentation>
<admin>https://github.com/nextcloud/forms/blob/main/README.md</admin>
</documentation>

<category>tools</category>
<category>social</category>
<category>organization</category>

<website>https://github.com/nextcloud/forms</website>
<bugs>https://github.com/nextcloud/forms/issues</bugs>
<repository type="git">https://github.com/nextcloud/forms</repository>
<documentation>
<admin>https://github.com/nextcloud/forms/blob/main/README.md</admin>
</documentation>

<screenshot>https://raw.githubusercontent.com/nextcloud/forms/main/screenshots/forms1.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/forms/main/screenshots/forms2.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/forms/main/screenshots/forms3.png</screenshot>

<navigations>
<navigation>
<name>Forms</name>
<route>forms.page.index</route>
<icon>forms.svg</icon>
<order>77</order>
</navigation>
</navigations>
<dependencies>
<nextcloud min-version="26" max-version="27" />
</dependencies>

<settings>
<admin>OCA\Forms\Settings\Settings</admin>
<admin-section>OCA\Forms\Settings\SettingsSection</admin-section>
</settings>

<activity>
<settings>
<setting>OCA\Forms\Activity\Settings\NewShare</setting>
<setting>OCA\Forms\Activity\Settings\NewSubmission</setting>
<setting>OCA\Forms\Activity\Settings\NewSharedSubmission</setting>
</settings>
<filters>
<filter>OCA\Forms\Activity\Filter</filter>
</filters>
<providers>
<provider>OCA\Forms\Activity\Provider</provider>
</providers>
<settings>
<setting>OCA\Forms\Activity\Settings\NewShare</setting>
<setting>OCA\Forms\Activity\Settings\NewSubmission</setting>
<setting>OCA\Forms\Activity\Settings\NewSharedSubmission</setting>
</settings>
</activity>

<navigations>
<navigation>
<name>Forms</name>
<route>forms.page.index</route>
<icon>forms.svg</icon>
<order>77</order>
</navigation>
</navigations>
</info>

0 comments on commit 68f2bf5

Please sign in to comment.