├── .devcontainer ├── configuration.yaml └── devcontainer.json ├── .editorconfig ├── .github └── workflows │ ├── cron.yaml │ └── push_pull.yaml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── custom_components └── overwolfstatus │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── strings.json │ └── translations │ ├── de.json │ └── en.json ├── hacs.json ├── info.md └── pyproject.toml /.devcontainer/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.devcontainer/configuration.yaml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.github/workflows/cron.yaml -------------------------------------------------------------------------------- /.github/workflows/push_pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.github/workflows/push_pull.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/overwolfstatus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/custom_components/overwolfstatus/__init__.py -------------------------------------------------------------------------------- /custom_components/overwolfstatus/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/custom_components/overwolfstatus/config_flow.py -------------------------------------------------------------------------------- /custom_components/overwolfstatus/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/custom_components/overwolfstatus/const.py -------------------------------------------------------------------------------- /custom_components/overwolfstatus/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/custom_components/overwolfstatus/manifest.json -------------------------------------------------------------------------------- /custom_components/overwolfstatus/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/custom_components/overwolfstatus/strings.json -------------------------------------------------------------------------------- /custom_components/overwolfstatus/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/custom_components/overwolfstatus/translations/de.json -------------------------------------------------------------------------------- /custom_components/overwolfstatus/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/custom_components/overwolfstatus/translations/en.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Overwolf Webhook" 3 | } 4 | -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lociii/homeassistant-overwolf-status/HEAD/info.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 88 3 | --------------------------------------------------------------------------------