iobroker.staticsfilefolder 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/io-package.json +32 -2
- package/package.json +1 -1
package/io-package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "staticsfilefolder",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.0.4": {
|
|
7
|
+
"en": "Defined latest_file_url and latest_file_path states in instanceObjects so they are created automatically upon installation."
|
|
8
|
+
},
|
|
6
9
|
"0.0.3": {
|
|
7
10
|
"en": "Fixed UI theme button visibility in dark mode and resolved PDF opening issue."
|
|
8
11
|
},
|
|
@@ -95,5 +98,32 @@
|
|
|
95
98
|
"webInstance": "*"
|
|
96
99
|
},
|
|
97
100
|
"objects": [],
|
|
98
|
-
"instanceObjects": [
|
|
101
|
+
"instanceObjects": [
|
|
102
|
+
{
|
|
103
|
+
"_id": "latest_file_url",
|
|
104
|
+
"type": "state",
|
|
105
|
+
"common": {
|
|
106
|
+
"name": "Latest File URL",
|
|
107
|
+
"type": "string",
|
|
108
|
+
"role": "url",
|
|
109
|
+
"read": true,
|
|
110
|
+
"write": false,
|
|
111
|
+
"def": ""
|
|
112
|
+
},
|
|
113
|
+
"native": {}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"_id": "latest_file_path",
|
|
117
|
+
"type": "state",
|
|
118
|
+
"common": {
|
|
119
|
+
"name": "Latest File Path",
|
|
120
|
+
"type": "string",
|
|
121
|
+
"role": "value",
|
|
122
|
+
"read": true,
|
|
123
|
+
"write": false,
|
|
124
|
+
"def": ""
|
|
125
|
+
},
|
|
126
|
+
"native": {}
|
|
127
|
+
}
|
|
128
|
+
]
|
|
99
129
|
}
|