From a5ee01ea0cb429df13d49f3ceada4bddb40a75b1 Mon Sep 17 00:00:00 2001 From: Brandon Harvey <8107750+bharvey88@users.noreply.github.com> Date: Tue, 7 Jul 2026 13:39:43 -0500 Subject: [PATCH] Rename Firmware Channel option "Main" to "Stable" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Matches the naming used by the AIR-1 firmware channel feature; "Stable" is clearer than "Main" for users who don't know the branch layout. Devices that stored "Main" fall back to the initial option, which is the same channel. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- Integrations/ESPHome/Core.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index 9e34017..bd32e08 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -1,5 +1,5 @@ substitutions: - version: "26.7.7.1" + version: "26.7.7.2" packages: @@ -201,9 +201,9 @@ select: optimistic: true restore_value: true options: - - "Main" + - "Stable" - "Beta" - initial_option: "Main" + initial_option: "Stable" on_value: then: - script.execute: apply_ota_source @@ -356,7 +356,8 @@ media_player: script: - id: apply_ota_source # Sets the OTA source URL from the two selectors: Firmware Type (WiFi/Ethernet) - # x Firmware Channel (Main/Beta). Main = GitHub Pages, Beta = GitHub release assets. + # x Firmware Channel (Stable/Beta). Stable = GitHub Pages (main branch builds), + # Beta = GitHub release assets. then: - lambda: |- const bool eth = id(firmware_selector).current_option() == "Ethernet";