mirror of
https://github.com/esphome/esphome.git
synced 2025-07-29 14:46:40 +00:00
replace http
with https
(#8628)
This commit is contained in:
parent
526db0102c
commit
4c8f5275f9
@ -116,7 +116,7 @@ RequiredFieldInvalid = vol.RequiredFieldInvalid
|
|||||||
ROOT_CONFIG_PATH = object()
|
ROOT_CONFIG_PATH = object()
|
||||||
|
|
||||||
RESERVED_IDS = [
|
RESERVED_IDS = [
|
||||||
# C++ keywords http://en.cppreference.com/w/cpp/keyword
|
# C++ keywords https://en.cppreference.com/w/cpp/keyword
|
||||||
"alarm",
|
"alarm",
|
||||||
"alignas",
|
"alignas",
|
||||||
"alignof",
|
"alignof",
|
||||||
|
@ -53,7 +53,7 @@ FILTER_PLATFORMIO_LINES = [
|
|||||||
f"You can ignore this message, if `.*{IGNORE_LIB_WARNINGS}.*` is a built-in library.*",
|
f"You can ignore this message, if `.*{IGNORE_LIB_WARNINGS}.*` is a built-in library.*",
|
||||||
r"Scanning dependencies...",
|
r"Scanning dependencies...",
|
||||||
r"Found \d+ compatible libraries",
|
r"Found \d+ compatible libraries",
|
||||||
r"Memory Usage -> http://bit.ly/pio-memory-usage",
|
r"Memory Usage -> https://bit.ly/pio-memory-usage",
|
||||||
r"Found: https://platformio.org/lib/show/.*",
|
r"Found: https://platformio.org/lib/show/.*",
|
||||||
r"Using cache: .*",
|
r"Using cache: .*",
|
||||||
r"Installing dependencies",
|
r"Installing dependencies",
|
||||||
|
@ -361,11 +361,11 @@ def wizard(path):
|
|||||||
|
|
||||||
if platform == "ESP32":
|
if platform == "ESP32":
|
||||||
board_link = (
|
board_link = (
|
||||||
"http://docs.platformio.org/en/latest/platforms/espressif32.html#boards"
|
"https://docs.platformio.org/en/latest/platforms/espressif32.html#boards"
|
||||||
)
|
)
|
||||||
elif platform == "ESP8266":
|
elif platform == "ESP8266":
|
||||||
board_link = (
|
board_link = (
|
||||||
"http://docs.platformio.org/en/latest/platforms/espressif8266.html#boards"
|
"https://docs.platformio.org/en/latest/platforms/espressif8266.html#boards"
|
||||||
)
|
)
|
||||||
elif platform == "RP2040":
|
elif platform == "RP2040":
|
||||||
board_link = (
|
board_link = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user