Skip to content

Commit

Permalink
(simatec) Responsive Design added
Browse files Browse the repository at this point in the history
  • Loading branch information
simatec authored Nov 3, 2024
1 parent 40ec243 commit 77e0fbc
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 25 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@
"fileMatch": ["io-package.json"],
"url": "https://json.schemastore.org/io-package"
}
]
],
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
}
}
27 changes: 15 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,28 +82,31 @@ Or you can use the tab **files** to upload the file. (see image below)
<!--
Placeholder for the next version (at the beginning of the line):
### **WORK IN PROGRESS**
-->
-->
### **WORK IN PROGRESS**
* (simatec) Responsive Design added

### 2.0.1 (2024-08-20)
* (bluefox) Fixing encryption of the access token

* (bluefox) Fixing encryption of the access token

### 2.0.0 (2024-08-18)
* (bluefox) BREAKING CHANGE: You must enter your credentials again
* (bluefox) Old code has been removed and GUI has been rewritten
* (bluefox) Dependencies have been updated

* (bluefox) Dependencies have been updated

### 1.2.0 (2024-04-28)
* (mcm1957) Adapter requires node.js >= 18 and js-controller >= 5 now
* (mcm1957) Dependencies have been updated

* (mcm1957) Dependencies have been updated

### 1.1.0 (2023-11-05)
* (Scrounger) Bugfix: objects will be created only if necessary
* (Scrounger) Bugfix for excessive number of warnings has been added
* (Scrounger) Distance calculation between ioBroker and tracker has been added

* (Scrounger) Distance calculation between ioBroker and tracker has been added

### 1.0.0 (2023-11-04)
* (mcm1957) Adapter has been moved into iobroker-community-adapters organisation
* (mcm1957) Dependencies have been updated

* (mcm1957) Dependencies have been updated

## License
MIT License

Expand All @@ -126,4 +129,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
59 changes: 47 additions & 12 deletions admin/jsonConfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"i18n": true,
"type": "tabs",
"tabsStyle": {
"width": "calc(100% - 100px)"
},
"items": {
"_login": {
"label": "settings_login",
Expand All @@ -11,56 +14,76 @@
"type": "header",
"size": 4,
"text": "settings_interval",
"sm": 12
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"interval": {
"type": "number",
"label": "settings_interval",
"min": 1,
"help": "settings_sec",
"tooltip": "settings_interval_tooltip",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 4
"lg": 4,
"xl": 4
},
"_header2": {
"newLine": true,
"type": "header",
"text": "settings_login",
"size": 4,
"sm": 12
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"email": {
"newLine": true,
"label": "emailInput_email",
"type": "text",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 4
"lg": 4,
"xl": 4
},
"password": {
"type": "password",
"label": "settings_password",
"repeat": true,
"xs": 12,
"sm": 12,
"md": 12,
"lg": 8
"lg": 8,
"xl": 8
},
"_header3": {
"newLine": true,
"type": "header",
"text": "settings_token",
"size": 4,
"sm": 12
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"user_id": {
"newLine": true,
"label": "settings_user_id",
"type": "text",
"readOnly": true,
"xs": 12,
"sm": 12,
"md": 6,
"lg": 4
"lg": 4,
"xl": 4
},
"access_token": {
"newLine": true,
Expand All @@ -69,17 +92,21 @@
"repeat": "false",
"visible": true,
"readOnly": true,
"xs": 12,
"sm": 12,
"md": 6,
"lg": 4
"lg": 4,
"xl": 4
},
"expires_at": {
"label": "dateTime_token_expires_tooltip",
"type": "text",
"time": true,
"xs": 12,
"sm": 12,
"md": 6,
"lg": 4
"lg": 4,
"xl": 4
},
"_refreshToken": {
"type": "sendto",
Expand All @@ -91,9 +118,11 @@
"jsonData": "{\"email\": \"${data.email}\", \"password\": \"${data.password}\"}",
"useNative": true,
"title": "apiToken_refresh_description",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 4
"lg": 4,
"xl": 4
}
}
},
Expand All @@ -103,8 +132,14 @@
"items": {
"nameArray": {
"type": "table",
"uniqueColumns": ["id"],
"uniqueColumns": [
"id"
],
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12,
"items": [
{
"attr": "id",
Expand All @@ -124,4 +159,4 @@
}
}
}
}
}

0 comments on commit 77e0fbc

Please sign in to comment.