├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── ha_cloud_music │ ├── __init__.py │ ├── browse_media.py │ ├── cloud_music.py │ ├── config_flow.py │ ├── const.py │ ├── http.py │ ├── http_api.py │ ├── manifest.json │ ├── manifest.py │ ├── media_player.py │ ├── models │ └── music_info.py │ ├── translations │ └── en.json │ └── utils.py └── hacs.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/__init__.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/browse_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/browse_media.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/cloud_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/cloud_music.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/config_flow.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/const.py: -------------------------------------------------------------------------------- 1 | PLATFORMS = ["media_player"] -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/http.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/http_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/http_api.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/manifest.json -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/manifest.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/media_player.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/models/music_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/models/music_info.py -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/translations/en.json -------------------------------------------------------------------------------- /custom_components/ha_cloud_music/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/custom_components/ha_cloud_music/utils.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_cloud_music/HEAD/hacs.json --------------------------------------------------------------------------------