Skip to content

Commit

Permalink
chore: release v3.0.13
Browse files Browse the repository at this point in the history
* (arteck) add setBooleanSetting
  • Loading branch information
arteck committed Jan 5, 2025
1 parent 16d1ddc commit f8034f4
Show file tree
Hide file tree
Showing 14 changed files with 166 additions and 142 deletions.
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

42 changes: 0 additions & 42 deletions .eslintrc.json

This file was deleted.

7 changes: 0 additions & 7 deletions .prettierignore

This file was deleted.

9 changes: 0 additions & 9 deletions .prettierrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2024 Arthur Rupp [email protected]
Copyright (c) 2014-2025 Arthur Rupp [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ Many thanks to @Acgua (https://github.com/Acgua) for [ioBroker.fully-mqtt](https
### **WORK IN PROGRESS**
-->



## Changelog
### 3.0.13 (2025-01-05)
* (arteck) add setBooleanSetting

### 3.0.12 (2024-03-05)
* (arteck) set batteryLevel to 0 if tablet is offline is configurable

Expand Down Expand Up @@ -123,7 +124,7 @@ Many thanks to @Acgua (https://github.com/Acgua) for [ioBroker.fully-mqtt](https
## License
The MIT License (MIT)

Copyright (c) 2014-2024 Arthur Rupp [email protected]
Copyright (c) 2014-2025 Arthur Rupp [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
75 changes: 53 additions & 22 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": {
"_tab_Start": {
"type": "panel",
Expand All @@ -14,9 +17,11 @@
"_textStart": {
"type": "staticText",
"text": "A detailed documentation with explanations and all further information can be found on this GitHub page:",
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"md": 6,
"lg": 4,
"xl": 4,
"style": {
"fontSize": 16,
"marginTop": 0
Expand All @@ -27,9 +32,11 @@
"label": "🇩🇪 Deutsche Dokumentation",
"button": true,
"href": "https://github.com/arteck/ioBroker.fullybrowser/blob/master/docs/de/README.md",
"xs": 12,
"sm": 12,
"md": 12,
"lg": 2,
"md": 6,
"lg": 4,
"xl": 4,
"style": {
"fontSize": 16,
"marginTop": 0
Expand All @@ -40,9 +47,11 @@
"label": "🇬🇧 English Documentation",
"button": true,
"href": "https://github.com/arteck/ioBroker.fullybrowser/blob/master/docs/en/README.md",
"xs": 12,
"sm": 12,
"md": 12,
"lg": 2,
"md": 6,
"lg": 4,
"xl": 4,
"style": {
"fontSize": 16,
"marginTop": 0
Expand All @@ -67,9 +76,11 @@
},
"tableDevices": {
"type": "table",
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12,
"items": [
{
"type": "checkbox",
Expand Down Expand Up @@ -214,9 +225,11 @@
"max": 120,
"label": "Do not process published info more than every x seconds",
"help": "in seconds (2-120, default: 30)",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 3
"lg": 4,
"xl": 4
},
"mqttTimeout": {
"type": "number",
Expand All @@ -225,27 +238,33 @@
"label": "MQTT Timeout",
"help": "in seconds (2-120, default: 70)",
"default": 70,
"xs": 12,
"sm": 12,
"md": 6,
"lg": 3
"lg": 4,
"xl": 4
},
"mqttUpdateUnchangedObjects": {
"type": "checkbox",
"label": "Always update info states",
"help": "Always update info objects, even if value did not change",
"default": false,
"xs": 12,
"sm": 12,
"md": 6,
"lg": 3
"lg": 4,
"xl": 4
},
"mqttCreateDefaultEventObjects": {
"type": "checkbox",
"label": "Create default event objects at adapter start",
"help": "Create default event objects (facesDetected, hideKeyboard, etc.) at the first adapter startup",
"default": true,
"xs": 12,
"sm": 12,
"md": 7,
"lg": 5
"md": 6,
"lg": 4,
"xl": 4
},
"header_LOG_MQTT": {
"newLine": true,
Expand All @@ -257,19 +276,23 @@
"label": "Client and Connection errors as info in log",
"help": "Logs client and connection errors as 'info' and not as 'error'",
"default": true,
"xs": 12,
"sm": 12,
"md": 7,
"lg": 5
"md": 6,
"lg": 4,
"xl": 4
},
"messageMQTTAlive": {
"type": "checkbox",
"label": "Show MQTT all connection Messages",
"help": "Show lost/connected/alive as warning",
"default": true,
"hidden": "!data.mqttConnErrorsAsInfo",
"xs": 12,
"sm": 12,
"md": 7,
"lg": 5
"md": 6,
"lg": 4,
"xl": 4
},
"header_RESTAPI": {
"newLine": true,
Expand All @@ -284,9 +307,11 @@
"default": 2000,
"label": "Request Timeout",
"help": "in milliseconds (500-15000, default: 2000)",
"xs": 12,
"sm": 12,
"md": 6,
"lg": 3
"lg": 4,
"xl": 4
},
"restIntervall": {
"type": "number",
Expand All @@ -295,18 +320,22 @@
"default": 60000,
"label": "Request Intervall",
"help": "in milliseconds (10000-99999999, default: 60000 = 1 Min.)",
"xs": 12,
"sm": 12,
"md": 7,
"lg": 3
"md": 6,
"lg": 4,
"xl": 4
},
"restCommandLogAsDebug": {
"type": "checkbox",
"label": "Successful commands as debug in log",
"help": "Log '... Command xxx successfully set to x' as 'debug' and not 'info'",
"default": false,
"xs": 12,
"sm": 12,
"md": 8,
"lg": 5
"md": 6,
"lg": 4,
"xl": 4
},
"header_REST": {
"newLine": true,
Expand All @@ -318,9 +347,11 @@
"label": "Set battery to zero if Tablet is offline",
"help": "",
"default": false,
"xs": 12,
"sm": 12,
"md": 7,
"lg": 5
"md": 6,
"lg": 4,
"xl": 4
}
}
}
Expand Down
Loading

0 comments on commit f8034f4

Please sign in to comment.