-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.xml
34 lines (34 loc) · 1.23 KB
/
manifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0"?>
<!DOCTYPE plugin SYSTEM "manifest.dtd">
<plugin version="2">
<info>
<version>1.1</version>
<name>desktopnotifications</name>
<title>Desktop Notifications Plugin</title>
<author>Saket Patel</author>
<authorURL>https://github.com/silentsakky</authorURL>
<description>Allow the user to Desktop Notifications for different type of actions.</description>
</info>
<config>
<configfile>config.php</configfile>
</config>
<components>
<component>
<files>
<server>
<serverfile>php/plugin.desktopnotifications.php</serverfile>
</server>
<client>
<clientfile load="release">js/desktopnotifications.js</clientfile>
<clientfile load="debug">js/desktopnotifications-debug.js</clientfile>
<clientfile load="source">js/DesktopNotificationsPlugin.js</clientfile>
<clientfile load="source">js/settings/SettingsNotificationsCategory.js</clientfile>
<clientfile load="source">js/settings/SettingsNotificationsWidget.js</clientfile>
<clientfile load="source">js/DesktopNotifications.js</clientfile>
<clientfile load="source">js/DesktopNotifier.js</clientfile>
<clientfile load="source">js/ABOUT.js</clientfile>
</client>
</files>
</component>
</components>
</plugin>