-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathplugin.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathplugin.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"id": "worldClock",
"name": "World Clock",
"description": "Multiple timezones display widget with cycling and 24h format support",
"version": "1.3.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
},
"worldClockShowAll": {
"type": "boolean",
"default": true
},
"worldClockCycleInterval": {
"type": "integer",
"default": 15,
"minimum": 3,
"maximum": 120
},
"worldClockUse24h": {
"type": "boolean",
"default": true
},
"worldClockTimezones": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"timezone": { "type": "string" },
"label": { "type": "string" },
"showOnBar": { "type": "boolean", "default": true }
}
}
}
},
"permissions": ["settings_read", "settings_write"]
}