From 6b81f30c6c4042d36d0678deb331ea38c4e70b01 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 1 Apr 2022 20:11:34 +0200 Subject: [PATCH] Rename current_version to installed_version in Update platform (#1271) --- docs/core/entity/update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/entity/update.md b/docs/core/entity/update.md index bf302235..2fec0cc1 100644 --- a/docs/core/entity/update.md +++ b/docs/core/entity/update.md @@ -24,8 +24,8 @@ Properties should always only return information from memory and not do I/O (lik | Name | Type | Default | Description | ---- | ---- | ------- | ----------- | auto_update | bool | `False` | The device or service that the entity represent have auto update logic, when this is set you can not skip updates. -| current_version | str | `None` | The current version of the software installed. | in_progress | bool, int | `None` | Update installation progress. Can either return a boolean (True if in progress, False if not) or an integer to indicate the progress from 0 to 100%. +| installed_version | str | `None` | The currently installed and used version of the software. | latest_version | str | `None` | The latest version of the software available. | release_summary | str | `None` | Summary of the release notes or changelog. This is not suitable for long changelogs but merely suitable for a short excerpt update description of max 255 characters. | release_url | str | `None` | URL to the full release notes of the latest version available.