mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 00:18:42 +00:00
71f1e0cb9c
1. Remove hook usage and just provide an initial state 2. Replace jQuery code with modern non-deprecated frontend code Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
- SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
- SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
|
<id>updatenotification</id>
|
|
<name>Update notification</name>
|
|
<summary>Displays update notifications for Nextcloud, app updates, and provides the SSO for the updater.</summary>
|
|
<description>Displays update notifications for Nextcloud, app updates, and provides the SSO for the updater.</description>
|
|
<version>1.21.0</version>
|
|
<licence>agpl</licence>
|
|
<author>Lukas Reschke</author>
|
|
<namespace>UpdateNotification</namespace>
|
|
<category>monitoring</category>
|
|
<bugs>https://github.com/nextcloud/server/issues</bugs>
|
|
<dependencies>
|
|
<nextcloud min-version="31" max-version="31"/>
|
|
</dependencies>
|
|
|
|
<background-jobs>
|
|
<job>OCA\UpdateNotification\BackgroundJob\UpdateAvailableNotifications</job>
|
|
</background-jobs>
|
|
|
|
<commands>
|
|
<command>OCA\UpdateNotification\Command\Check</command>
|
|
</commands>
|
|
|
|
<settings>
|
|
<admin>OCA\UpdateNotification\Settings\Admin</admin>
|
|
</settings>
|
|
</info>
|