Releases: black-roland/homeassistant-gsm-call
Releases · black-roland/homeassistant-gsm-call
v0.3.0
Changes
- New
gsm_call_ended
event is fired, indicating whether a call was declined or answered. - Now a phone call hangs up immediately after the callee has answered.
- Call duration is now counted from the moment the called phone starts ringing.
- Now error messages are displayed when making a phone call from the developer tools UI (in other words, exceptions aren't suppressed).
gsm_call_ended
automation example
automation:
- alias: "Disarm the security alarm when a call is declined"
triggers:
- trigger: event
event_type: gsm_call_ended
event_data:
phone_number: "79999999999"
reason: "declined" # declined/answered/not_answered
actions:
- action: alarm_control_panel.alarm_disarm
target:
entity_id: alarm_control_panel.security
Breaking changes
If you already have v0.3.0-beta.1 installed, please note that gsm_call_completed
was renamed to gsm_call_ended
and call_state
was renamed to reason
. Check out the example above.
Sorry for the inconvenience.
Full Changelog: v0.2.0...v0.3.0
v0.3.0-beta.1
Changes
- New experimental
gsm_call_completed
event is fired after a call is answered or declined. - Now a phone call hangs up automatically when the callee answers.
gsm_call_completed
usage example
automation:
- alias: "Disarm the security alarm when a call is declined"
triggers:
- trigger: event
event_type: "gsm_call_completed"
event_data:
phone_number: "79999999999"
call_state: declined # declined/answered/timedout
actions:
- action: alarm_control_panel.alarm_disarm
target:
entity_id: alarm_control_panel.security
Full Changelog: v0.2.0...v0.3.0-beta.1
v0.2.0
- ZTE MF192 support.
Addhardware: zte
to the integration config. - In this release,
pyserial
was replaced with an asynchronous alternative to improve general stability and compatibility with other integrations. at_command: ATDT
is deprecated and replaced byhardware: atdt
.
But both options are supported, so no need to update your configuration immediately.
Full Changelog: v0.1.4...v0.2.0
v0.2.0-rc.1
- Experimental support for ZTE modems.
Addhardware: zte
to the integraion config.
Full Changelog: v0.1.4...v0.2.0-rc.1
v0.1.4
- This release adds missing HACS manifest, fixing potential installation issues.
- Documentation updates.
- ZIP releases support so HACS shows downloads count.
- No changes to the integration itself.
Full Changelog: v0.1.3...v0.1.4
v0.1.3
- Logging of modem replies was added.
- Logging was improved in general.
Full Changelog: v0.1.2...v0.1.3
v0.1.2
Full Changelog: v0.1.1...v0.1.2
v0.1.1
Some basic README