Skip to content

Commit

Permalink
Remove beta labels for Android December 2024 release (#1145)
Browse files Browse the repository at this point in the history
  • Loading branch information
dshokouhi authored Dec 10, 2024
1 parent 0fcddea commit 166251d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/android-auto/android-auto.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ In order to use the app in your vehicle you will need to be signed in to either
- `alarm_control_panel` If a code is not required will allow for `arm_away` & `disarm` otherwise no action
- `button`
- `cover`
- `fan` <span class='beta'>BETA</span>
- `fan`
- `input_boolean`
- `input_button`
- `light`
Expand Down
4 changes: 2 additions & 2 deletions docs/core/sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ The sensors listed below describe the state of the car for a few different data
| `car_fuel_type` | List of available fuel types for the car. |
| `car_name` | The name of the car. The manufacturer name and manufactured year are in the attributes |
| `car_odometer` | The value of the car odometer in meters |
| `car_range_remaining` | The range remaining for the car in meters <span class='beta'>BETA</span> |
| `car_speed` | The speed of the car in meters per second <span class='beta'>BETA</span> |
| `car_range_remaining` | The range remaining for the car in meters |
| `car_speed` | The speed of the car in meters per second |

## Cellular Provider Sensor
The cellular provider sensor displays information about the user’s cellular service provider, such as its unique identifier and whether it allows VoIP calls on its network. `sensor.sim_1` corresponds to the physical SIM card installed and `sensor.sim_2` corresponds to the eSIM (this is only shown if the eSIM is enabled).
Expand Down
2 changes: 1 addition & 1 deletion docs/notifications/actionable.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Each action may consist of the following keys:
| `action` | **Required**. The identifier passed back in events | When set to `REPLY`, you will be prompted for text to send with the event. |
| `title` | **Required**. The title of the button shown in the notification | |
| `uri` | **Optional**. The URL to open when tapped | ![Android](/assets/android.svg) Android requires setting the `action` to `URI` to use this key. See [notes below](#uri-values). |
| `behavior` | **Optional**. Set to `textInput` to prompt for text to return with the event. This also occurs when setting the action to `REPLY`. | Using this key allows you to use the `action` key to differentiate actions. ![Android](/assets/android.svg) On Android, this is only available when using the <span class='beta'>BETA</span>.|
| `behavior` | **Optional**. Set to `textInput` to prompt for text to return with the event. This also occurs when setting the action to `REPLY`. | Using this key allows you to use the `action` key to differentiate actions. |

### ![Android](/assets/android.svg) Android specific options

Expand Down
2 changes: 0 additions & 2 deletions docs/notifications/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,6 @@ automation:

### Progress Notifications

<span class='beta'>BETA</span>

You can create notifications with a progress bar by passing the `progress` option.

The notification requires constant updates to track the progress. Make sure to use `tag` to [replace](#replacing) the existing notification. Once the process has completed you can remove the progress bar by sending a progress value of `-1`.
Expand Down
6 changes: 2 additions & 4 deletions docs/notifications/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The Companion apps offer a lot of different notification options. In place of po
| `command_beacon_monitor` | Turn Beacon Monitoring on or off. |
| `command_broadcast_intent` | Send a broadcast intent to another app, [see below](#broadcast-intent) for how it works and whats required. |
| `command_dnd` | Control Do Not Disturb mode on the device, [see below](#do-not-disturb) for how it works and whats required. |
| `command_flashlight` | Turn the flashlight LED on or off. <span class='beta'>BETA</span> |
| `command_flashlight` | Turn the flashlight LED on or off. |
| `command_high_accuracy_mode` | Control the high accuracy mode of the background location sensor, [see below](#high-accuracy-mode) for how it works and whats required. |
| `command_launch_app` | Launch an application, [see below](#launch-app) for how it works and whats required. |
| `command_media` | Control media playing on the device, [see below](#media) for how it works and whats required. |
Expand Down Expand Up @@ -231,8 +231,6 @@ automation:
ble_uuid: "b4306bba-0e3a-44df-9518-dc74284e8214"
```

<span class='beta'>BETA</span>

Users can also change the measured power at 1 meter to help improve detection for their devices. This number must be a negative number. The default value `-59` will be set in some cases like junk characters, if data is missing or the number is positive the notification will post as normal on the device.

```yaml
Expand Down Expand Up @@ -456,7 +454,7 @@ automation:

## Flashlight

![Android](/assets/android.svg) <span class='beta'>BETA</span> &nbsp;Android 6+ only
![Android](/assets/android.svg) &nbsp;Android 6+ only

This command allows you to toggle the flashlight on or off directly from a notification, enabling control of the device's flashlight without opening the app. To use it, send `message: command_flashlight` with the `command` parameter set to either `turn_on` or `turn_off` to control the flashlight state.

Expand Down

0 comments on commit 166251d

Please sign in to comment.