Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aneisch committed Dec 22, 2023
1 parent 9d201a6 commit 039702c
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ Also using Grafana/Influx for graphing, both running in Docker containers on NUC
Description | value
-- | --
Lines of ESPHome YAML | 2776
Lines of Home Assistant YAML | 8452
Lines of Home Assistant YAML | 8450
[Integrations](https://www.home-assistant.io/integrations/) in use | 52
Zigbee devices in [`zha`](https://www.home-assistant.io/integrations/zha/) | 26
Z-Wave devices in [`zwave_js`](https://www.home-assistant.io/integrations/zwave_js/) | 37

Description | value
-- | --
Entities in the [`alarm_control_panel`](https://www.home-assistant.io/components/alarm_control_panel) domain | 1
Entities in the [`automation`](https://www.home-assistant.io/components/automation) domain | 114
Entities in the [`automation`](https://www.home-assistant.io/components/automation) domain | 113
Entities in the [`binary_sensor`](https://www.home-assistant.io/components/binary_sensor) domain | 138
Entities in the [`button`](https://www.home-assistant.io/components/button) domain | 14
Entities in the [`camera`](https://www.home-assistant.io/components/camera) domain | 18
Expand Down Expand Up @@ -100,7 +100,7 @@ Entities in the [`update`](https://www.home-assistant.io/components/update) doma
Entities in the [`vacuum`](https://www.home-assistant.io/components/vacuum) domain | 1
Entities in the [`weather`](https://www.home-assistant.io/components/weather) domain | 2
Entities in the [`zone`](https://www.home-assistant.io/components/zone) domain | 6
**Total state objects** | **1160**
**Total state objects** | **1159**
## The HACS integrations/plugins that I use:
**Appdaemon**:<br>
[aneisch/follow_me_appdaemon](https://github.com/aneisch/follow_me_appdaemon)<br>
Expand Down
3 changes: 2 additions & 1 deletion custom_components/alexa_media/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,8 @@ async def update_last_called(login_obj, last_called=None, force=False):
"""
if not last_called or not (last_called and last_called.get("summary")):
try:
last_called = await AlexaAPI.get_last_device_serial(login_obj)
async with async_timeout.timeout(10):
last_called = await AlexaAPI.get_last_device_serial(login_obj)
except TypeError:
_LOGGER.debug(
"%s: Error updating last_called: %s",
Expand Down
2 changes: 1 addition & 1 deletion custom_components/alexa_media/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
PERCENTAGE,
)

__version__ = "4.8.0"
__version__ = "4.8.1"
PROJECT_URL = "https://github.com/alandtse/alexa_media_player/"
ISSUE_URL = f"{PROJECT_URL}issues"
NOTIFY_URL = f"{PROJECT_URL}wiki/Configuration%3A-Notification-Component#use-the-notifyalexa_media-service"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/alexa_media/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"issue_tracker": "https://github.com/alandtse/alexa_media_player/issues",
"loggers": ["alexapy", "authcaptureproxy"],
"requirements": ["alexapy==1.27.10", "packaging>=20.3", "wrapt>=1.14.0"],
"version": "4.8.0"
"version": "4.8.1"
}
3 changes: 3 additions & 0 deletions extras/docker-compose/other/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ services:
- DUO_SKEY=
- DUO_HOST=
- TZ=America/Chicago
- PUSH_ENABLED=true
- PUSH_INSTALLATION_ID=
- PUSH_INSTALLATION_KEY=
#ports:
# - '8777:1024'
# - '3012:3012'
Expand Down
3 changes: 3 additions & 0 deletions extras/docker-compose/unified/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,9 @@ services:
- DUO_SKEY=
- DUO_HOST=
- TZ=America/Chicago
- PUSH_ENABLED=true
- PUSH_INSTALLATION_ID=
- PUSH_INSTALLATION_KEY=
#ports:
# - '8777:1024'
# - '3012:3012'
Expand Down
2 changes: 0 additions & 2 deletions scripts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,6 @@ notify_wrapper:
- service: notify.signal_self
data:
message: "{{ message }}"
data:
priority: 0
else:
# If no internet: send via cellular
- if: '{{ "priority" in data }}'
Expand Down

0 comments on commit 039702c

Please sign in to comment.