Skip to content

Commit

Permalink
Corrected states selection
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Dec 16, 2024
1 parent 34d5b72 commit 9d6f751
Show file tree
Hide file tree
Showing 69 changed files with 4,516 additions and 3,608 deletions.
8 changes: 4 additions & 4 deletions .releaseconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"plugins": ["iobroker", "license"],
"exec": {
"before_commit": "npm run build"
}
"plugins": ["iobroker", "license"],
"exec": {
"before_commit": "npm run build"
}
}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ This adapter has vis2 widget.
-->

## Changelog
### **WORK IN PROGRESS**
* (bluefox) Corrected states selection

### 1.4.2 (2024-12-06)
* (bluefox) Allowed selection of mixed states

Expand Down
14 changes: 0 additions & 14 deletions admin/asset-manifest.json

This file was deleted.

File renamed without changes
1 change: 1 addition & 0 deletions admin/assets/index-C4QiTaCi.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

716 changes: 716 additions & 0 deletions admin/assets/index-D80GntH_.js

Large diffs are not rendered by default.

22 changes: 21 additions & 1 deletion admin/index_m.html
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="./manifest.json"/><script type="text/javascript" src="./../../lib/js/socket.io.js"></script><title>Scheduler</title><script defer="defer" src="./static/js/main.a460e3d4.js"></script><link href="./static/css/main.83fa2641.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="manifest.json" />
<script type="text/javascript" onerror="setTimeout(function(){window.location.reload()}, 5000)" src="./lib/js/socket.io.js"></script>
<title>Scheduler</title>
<script type="module" crossorigin src="./assets/index-D80GntH_.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-C4QiTaCi.css">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
Expand Down
2 changes: 0 additions & 2 deletions admin/static/css/main.83fa2641.css

This file was deleted.

1 change: 0 additions & 1 deletion admin/static/css/main.83fa2641.css.map

This file was deleted.

3 changes: 0 additions & 3 deletions admin/static/js/main.a460e3d4.js

This file was deleted.

102 changes: 0 additions & 102 deletions admin/static/js/main.a460e3d4.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion admin/static/js/main.a460e3d4.js.map

This file was deleted.

37 changes: 37 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import config from '@iobroker/eslint-config';

export default [
...config,
{
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: ['*.mjs'],
},
tsconfigRootDir: import.meta.dirname,
project: './tsconfig.json',
},
},
},
{
ignores: [
'src-admin/**/*',
'admin/**/*',
'node_modules/**/*',
'test/**/*',
'build/**/*',
'tasks.js',
'tmp/**/*',
'.**/*',
],
},
{
// disable temporary the rule 'jsdoc/require-param' and enable 'jsdoc/require-jsdoc'
rules: {
'jsdoc/require-jsdoc': 'off',
'jsdoc/require-param': 'off',

'@typescript-eslint/no-require-imports': 'off',
},
},
];
Loading

0 comments on commit 9d6f751

Please sign in to comment.