1
0

info.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. - SPDX-License-Identifier: AGPL-3.0-only
  6. -->
  7. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  9. <id>updatenotification</id>
  10. <name>Update notification</name>
  11. <summary>Displays update notifications for Nextcloud, app updates, and provides the SSO for the updater.</summary>
  12. <description>Displays update notifications for Nextcloud, app updates, and provides the SSO for the updater.</description>
  13. <version>1.20.0</version>
  14. <licence>agpl</licence>
  15. <author>Lukas Reschke</author>
  16. <namespace>UpdateNotification</namespace>
  17. <category>monitoring</category>
  18. <bugs>https://github.com/nextcloud/server/issues</bugs>
  19. <dependencies>
  20. <nextcloud min-version="30" max-version="30"/>
  21. </dependencies>
  22. <background-jobs>
  23. <job>OCA\UpdateNotification\BackgroundJob\UpdateAvailableNotifications</job>
  24. </background-jobs>
  25. <settings>
  26. <admin>OCA\UpdateNotification\Settings\Admin</admin>
  27. </settings>
  28. <commands>
  29. <command>OCA\UpdateNotification\Command\Check</command>
  30. </commands>
  31. </info>