-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathio-package.json
116 lines (116 loc) · 4.21 KB
/
io-package.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"common": {
"name": "swiss-weather-api",
"version": "0.9.8",
"news": {
"0.9.8": {
"en": "Bugfix: JsonChart is missing 15h and 16h as x-labels"
},
"0.9.7": {
"en": "Bugfix and RC2 for stable release."
},
"0.9.6": {
"en": "Bugfix and RC for stable release."
},
"0.9.5": {
"en": "Some small improvements "
},
"0.9.4": {
"en": "Bugfix https://github.com/baerengraben/ioBroker.swiss-weather-api/issues/47"
},
"0.9.3": {
"en": "Function Update: Added day_name to identify weekday from \"forecast.day.day0.day_name\" to \"forecast.day.day7.day_name\". Added last_run as Object on swiss-weather-api.0.info.lastrun. Added JsonChart Object on swiss-weather-api.0.forecast.60minutes.day(0-4).JsonChart"
},
"0.9.2": {
"en": "Function Update: The current weather information is provided as a 'Current_Hour' object. Every hour this information is updated. This is done every hour by copying the corresponding values from forecast.day.<current time>. So no new http request will be executed. The values are only copied from the forecast objects. This makes it easier to display the current weather in the visualization."
},
"0.9.1": {
"en": "Minor bugfixing (Handling Adpater State, Handling when no Internet-Connection is available, reduce Rest-Calls."
},
"0.9.0": {
"en": "Update to new SRF Weater API (https://developer.srgssr.ch/apis/srf-weather). Attention: Old Weather-API will be decommissioned on Sept. 2021)"
},
"0.3.2": {
"en": "Fix for https://github.com/baerengraben/iobroker.swiss-weather-api/issues/13"
}
},
"title": "Swiss Weather API (SRF Weather)",
"titleLang": {
"en": "Swiss Weather API (SRF Weather)",
"de": "Schweizer Wetter API (SRF Weather)",
"ru": "Swiss Weather API (SRF Weather)",
"pt": "API do clima suíço (SRF Weather)",
"nl": "Swiss Weather API (SRF Weather)",
"fr": "API Météo Suisse (SRF Weather)",
"it": "API meteorologica svizzera (SRF Weather)",
"es": "API meteorológica suiza (SRF Weather)",
"pl": "Szwajcarski interfejs API pogody (SRF Weather)",
"zh-cn": "瑞士天气API(SRF Weather)"
},
"desc": {
"en": "Connects to SRF Weather API (https://developer.srgssr.ch/apis/srf-weather)",
"de": "Stellt eine Verbindung zur SRF-Wetter-API her (https://developer.srgssr.ch/apis/srf-weather)",
"ru": "Подключается к SRF Weather API (https://developer.srgssr.ch/apis/srf-weather)",
"pt": "Conecta-se à SRF Weather API (https://developer.srgssr.ch/apis/srf-weather)",
"nl": "Maakt verbinding met SRF Weather API (https://developer.srgssr.ch/apis/srf-weather)",
"fr": "Se connecte à l'API Météo SRF (https://developer.srgssr.ch/apis/srf-weather)",
"it": "Si collega all'API Weather SRF (https://developer.srgssr.ch/apis/srf-weather)",
"es": "Se conecta a la API meteorológica de SRF (https://developer.srgssr.ch/apis/srf-weather)",
"pl": "Łączy się z SRF Weather API (https://developer.srgssr.ch/apis/srf-weather)",
"zh-cn": "连接到SRF Weather API(https://developer.srgssr.ch/apis/srf-weather)"
},
"authors": [
"baerengraben <baerengraben@intelli.ch>"
],
"keywords": [
"SRG-SSR",
"Weather API",
"SRF Weather"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"icon": "swiss-weather-api.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/baerengraben/ioBroker.swiss-weather-api/master/admin/swiss-weather-api.png",
"readme": "https://github.com/baerengraben/ioBroker.swiss-weather-api/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "weather",
"connectionType": "cloud",
"dataSource": "poll",
"compact": true,
"materializeTab": true,
"materialize": true,
"dependencies": [
{
"js-controller": ">=1.4.2"
}
]
},
"native": {
"App_Name": "",
"ConsumerKey": "",
"ConsumerSecret": "",
"Latitude": "",
"Longitude": "",
"PollInterval": "30"
},
"objects": [],
"instanceObjects": [
{
"_id": "info.connection",
"type": "state",
"common": {
"name": "SRF Weather connected",
"type": "boolean",
"role": "indicator.connected",
"read": true,
"write": false,
"def": false,
"desc": "Is SRF Weather connected?"
},
"native": {
}
}
]
}