forked from rochacbruno/WorldClock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
38 lines (38 loc) · 995 Bytes
/
plugin.json
File metadata and controls
38 lines (38 loc) · 995 Bytes
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
35
36
37
38
{
"id": "worldClock",
"name": "World Clock",
"description": "Multiple timezones display widget",
"version": "1.1.0",
"author": "Bruno Cesar Rocha <rochacbruno>",
"icon": "public",
"component": "./WorldClockWidget.qml",
"settings": "./WorldClockSettings.qml",
"dependencies": {
"moment": {
"url": "https://cdn.jsdelivr.net/npm/moment@2.29.4/moment.min.js",
"optional": true
},
"moment-timezone": {
"url": "https://cdn.jsdelivr.net/npm/moment-timezone@0.5.43/builds/moment-timezone-with-data.min.js",
"optional": true
}
},
"settings_schema": {
"worldClockIconOnly": {
"type": "boolean",
"default": false
},
"worldClockTimezones": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"timezone": { "type": "string" },
"label": { "type": "string" }
}
}
}
},
"permissions": ["settings_read", "settings_write"]
}