Add ESPHome version to generated platformio.ini (#4443)

* Add ESPHome version to generated platformio.ini

* Move description to platformio section
This commit is contained in:
Jesse Hills 2023-02-16 13:27:32 +13:00 committed by GitHub
parent 30eec5adee
commit dbe5587806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -142,7 +142,10 @@ def get_ini_content():
# Sort to avoid changing build flags order
CORE.add_platformio_option("build_flags", sorted(CORE.build_flags))
content = f"[env:{CORE.name}]\n"
content = "[platformio]\n"
content += f"description = ESPHome {__version__}\n"
content += f"[env:{CORE.name}]\n"
content += format_ini(CORE.platformio_options)
return content