1
0

info.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-License-Identifier: AGPL-3.0-or-later
  5. -->
  6. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  7. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  8. <id>theming</id>
  9. <name>Theming</name>
  10. <summary>Adjust the Nextcloud theme</summary>
  11. <description>Adjust the Nextcloud theme</description>
  12. <version>2.6.1</version>
  13. <licence>agpl</licence>
  14. <author>Nextcloud</author>
  15. <namespace>Theming</namespace>
  16. <types>
  17. <logging/>
  18. </types>
  19. <category>customization</category>
  20. <bugs>https://github.com/nextcloud/server/issues</bugs>
  21. <dependencies>
  22. <nextcloud min-version="31" max-version="31"/>
  23. </dependencies>
  24. <repair-steps>
  25. <post-migration>
  26. <step>OCA\Theming\Migration\InitBackgroundImagesMigration</step>
  27. </post-migration>
  28. </repair-steps>
  29. <commands>
  30. <command>OCA\Theming\Command\UpdateConfig</command>
  31. </commands>
  32. <settings>
  33. <admin>OCA\Theming\Settings\Admin</admin>
  34. <admin-section>OCA\Theming\Settings\AdminSection</admin-section>
  35. <personal>OCA\Theming\Settings\Personal</personal>
  36. <personal-section>OCA\Theming\Settings\PersonalSection</personal-section>
  37. </settings>
  38. </info>