info.xml 1.1 KB

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