-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use cookie for authentication #167
Merged
Merged
Changes from 12 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
1e62797
Use cookie for authentication
nicoinch caf7e9e
Merged changes from nicoinch
Cruguah ff77883
Merge branch 'nicoinch-main'
Cruguah 1e3ecc7
Resolved some warnings
Cruguah c656727
Resolved a spelling error
Cruguah 1d7eae2
Update pre-commit.yml
Cruguah 8188f90
Update pre-commit.yml
Cruguah 5a5f8a1
Update pre-commit.yml
Cruguah 1219049
Update pre-commit.yml
Cruguah 4c0603b
Resolve lint issues
Cruguah c9c29d5
Merge branch 'main' of https://github.com/Cruguah/ha-nest-protect
Cruguah 087d19a
Update pre-commit.yml
Cruguah 52a1f40
processed review comments
Cruguah ffd9bff
Merge branch 'main' of https://github.com/Cruguah/ha-nest-protect
Cruguah fbf9865
Resolved a validation issue
Cruguah 3d83a84
Remove the version number
Cruguah 7ecb075
Added the version tag again
Cruguah 49657a7
Solved multiple issues
Cruguah eac9513
Resolve lint issues
Cruguah 18e0214
Added reconfiguration to the nest integration
Cruguah e7ac358
Resolve pre-commit issue
Cruguah 76ba32f
Try to solve the partial upgrade of isort config
Cruguah 94f3a82
Try to resolve pre-check errors
Cruguah 4cfcc16
Merge branch 'beta' into main
iMicknl ffe7a25
Resolve a conflict
Cruguah 1e19d6e
Merge branch 'main' of https://github.com/Cruguah/ha-nest-protect
Cruguah 9798b60
Revert changes
iMicknl 7221d01
Update settings.json
iMicknl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Linters (flake8, black, isort) | |
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
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,9 +1,30 @@ | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you revert the changes here? They don't seem necessary for this PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"python.linting.pylintEnabled": true, | ||
"python.linting.enabled": true, | ||
"python.pythonPath": "/usr/local/bin/python", | ||
"files.associations": { | ||
"*.yaml": "home-assistant" | ||
}, | ||
"python.formatting.provider": "black" | ||
} | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.enabled": true, | ||
"python.pythonPath": "/usr/local/bin/python", | ||
"files.associations": { | ||
"*.yaml": "home-assistant" | ||
}, | ||
"python.formatting.provider": "black", | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#fcc15a", | ||
"activityBar.background": "#fcc15a", | ||
"activityBar.foreground": "#15202b", | ||
"activityBar.inactiveForeground": "#15202b99", | ||
"activityBarBadge.background": "#039d65", | ||
"activityBarBadge.foreground": "#e7e7e7", | ||
"commandCenter.border": "#15202b99", | ||
"sash.hoverBorder": "#fcc15a", | ||
"statusBar.background": "#fbae28", | ||
"statusBar.foreground": "#15202b", | ||
"statusBarItem.hoverBackground": "#ec9704", | ||
"statusBarItem.remoteBackground": "#fbae28", | ||
"statusBarItem.remoteForeground": "#15202b", | ||
"titleBar.activeBackground": "#fbae28", | ||
"titleBar.activeForeground": "#15202b", | ||
"titleBar.inactiveBackground": "#fbae2899", | ||
"titleBar.inactiveForeground": "#15202b99" | ||
}, | ||
"peacock.color": "#fbae28", | ||
"githubPullRequests.ignoredPullRequestBranches": ["main"] | ||
} |
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
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
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
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
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
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
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
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,18 +1,16 @@ | ||
{ | ||
"domain": "nest_protect", | ||
iMicknl marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"name": "Nest Protect", | ||
"config_flow": true, | ||
"documentation": "https://github.com/imicknl/ha-nest-protect", | ||
"issue_tracker": "https://github.com/imicknl/ha-nest-protect/issues", | ||
"requirements": [], | ||
"codeowners": [ | ||
"@imicknl" | ||
], | ||
"iot_class": "cloud_polling", | ||
"version": "0.3.8", | ||
"dhcp": [ | ||
{ | ||
"macaddress": "CCA7C1*" | ||
} | ||
] | ||
} | ||
"domain": "nest_protect", | ||
"name": "Nest Protect", | ||
"config_flow": true, | ||
"documentation": "https://github.com/imicknl/ha-nest-protect", | ||
"issue_tracker": "https://github.com/imicknl/ha-nest-protect/issues", | ||
"requirements": [], | ||
"codeowners": ["@imicknl"], | ||
"iot_class": "cloud_polling", | ||
"version": "0.4.0", | ||
Cruguah marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"dhcp": [ | ||
{ | ||
"macaddress": "CCA7C1*" | ||
} | ||
] | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.