-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #683 - incorrect temperature reversion on window close
- Loading branch information
Jean-Marc Collin
committed
Dec 22, 2024
1 parent
6c5ddc3
commit df41df0
Showing
3 changed files
with
304 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,67 @@ | ||
// See https://aka.ms/vscode-remote/devcontainer.json for format details. | ||
// "image": "ghcr.io/ludeeus/devcontainer/integration:latest", | ||
{ | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"name": "Versatile Thermostat integration", | ||
"appPort": [ | ||
"8123:8123" | ||
], | ||
// "postCreateCommand": "container install", | ||
"postCreateCommand": "./container dev-setup", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"name": "Versatile Thermostat integration", | ||
"appPort": ["8123:8123"], | ||
// "postCreateCommand": "container install", | ||
"postCreateCommand": "./container dev-setup", | ||
|
||
"mounts": [ | ||
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached", | ||
// uncomment this to get the versatile-thermostat-ui-card | ||
"source=${localEnv:HOME}/SugarSync/Projets/home-assistant/versatile-thermostat-ui-card/dist,target=/workspaces/versatile_thermostat/config/www/community/versatile-thermostat-ui-card,type=bind,consistency=cached" | ||
], | ||
|
||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-python.pylint", | ||
// Doesn't work (crash). Default in python is to use Jedi see Settings / Python / Default Language | ||
// "ms-python.vscode-pylance", | ||
"ms-python.isort", | ||
"ms-python.black-formatter", | ||
"visualstudioexptteam.vscodeintellicode", | ||
"redhat.vscode-yaml", | ||
"github.vscode-pull-request-github", | ||
"ryanluker.vscode-coverage-gutters", | ||
"ferrierbenjamin.fold-unfold-all-icone", | ||
"LittleFoxTeam.vscode-python-test-adapter", | ||
"donjayamanne.githistory", | ||
"waderyan.gitblame", | ||
"keesschollaart.vscode-home-assistant", | ||
"vscode.markdown-math", | ||
"yzhang.markdown-all-in-one", | ||
"github.vscode-github-actions", | ||
"azuretools.vscode-docker" | ||
], | ||
"settings": { | ||
"files.eol": "\n", | ||
"editor.tabSize": 4, | ||
"terminal.integrated.profiles.linux": { | ||
"bash": { | ||
"path": "bash", | ||
"args": [] | ||
} | ||
}, | ||
"terminal.integrated.defaultProfile.linux": "bash", | ||
// "terminal.integrated.shell.linux": "/bin/bash", | ||
"python.pythonPath": "/usr/bin/python3", | ||
"python.analysis.autoSearchPaths": true, | ||
"pylint.lintOnChange": false, | ||
"python.formatting.provider": "black", | ||
"python.formatting.blackPath": "/usr/local/py-utils/bin/black", | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true, | ||
"files.trimTrailingWhitespace": true | ||
// "python.experiments.optOutFrom": ["pythonTestAdapter"], | ||
// "python.analysis.logLevel": "Trace" | ||
} | ||
} | ||
} | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-python.pylint", | ||
// Doesn't work (crash). Default in python is to use Jedi see Settings / Python / Default Language | ||
// "ms-python.vscode-pylance", | ||
"ms-python.isort", | ||
"ms-python.black-formatter", | ||
"visualstudioexptteam.vscodeintellicode", | ||
"redhat.vscode-yaml", | ||
"github.vscode-pull-request-github", | ||
"ryanluker.vscode-coverage-gutters", | ||
"ferrierbenjamin.fold-unfold-all-icone", | ||
"LittleFoxTeam.vscode-python-test-adapter", | ||
"donjayamanne.githistory", | ||
"waderyan.gitblame", | ||
"keesschollaart.vscode-home-assistant", | ||
"vscode.markdown-math", | ||
"yzhang.markdown-all-in-one", | ||
"github.vscode-github-actions", | ||
"azuretools.vscode-docker", | ||
"huizhou.githd", | ||
], | ||
"settings": { | ||
"files.eol": "\n", | ||
"editor.tabSize": 4, | ||
"terminal.integrated.profiles.linux": { | ||
"bash": { | ||
"path": "bash", | ||
"args": [] | ||
} | ||
}, | ||
"terminal.integrated.defaultProfile.linux": "bash", | ||
// "terminal.integrated.shell.linux": "/bin/bash", | ||
"python.pythonPath": "/usr/bin/python3", | ||
"python.analysis.autoSearchPaths": true, | ||
"pylint.lintOnChange": false, | ||
"python.formatting.provider": "black", | ||
"python.formatting.blackPath": "/usr/local/py-utils/bin/black", | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true, | ||
"files.trimTrailingWhitespace": true | ||
// "python.experiments.optOutFrom": ["pythonTestAdapter"], | ||
// "python.analysis.logLevel": "Trace" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.