mirror of
https://github.com/esphome/esphome.git
synced 2024-11-26 08:55:22 +01:00
commit
d3fda37615
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
"""Constants used by esphome."""
|
"""Constants used by esphome."""
|
||||||
|
|
||||||
__version__ = "2022.1.0b1"
|
__version__ = "2022.1.0b2"
|
||||||
|
|
||||||
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
||||||
|
|
||||||
|
|
|
@ -416,7 +416,7 @@ class DownloadBinaryRequestHandler(BaseHandler):
|
||||||
if storage_json is None:
|
if storage_json is None:
|
||||||
self.send_error(404)
|
self.send_error(404)
|
||||||
return
|
return
|
||||||
filename = f"{storage_json.name}.bin"
|
filename = f"{storage_json.name}-factory.bin"
|
||||||
path = storage_json.firmware_bin_path.replace(
|
path = storage_json.firmware_bin_path.replace(
|
||||||
"firmware.bin", "firmware-factory.bin"
|
"firmware.bin", "firmware-factory.bin"
|
||||||
)
|
)
|
||||||
|
|
|
@ -9,7 +9,7 @@ pyserial==3.5
|
||||||
platformio==5.2.4 # When updating platformio, also update Dockerfile
|
platformio==5.2.4 # When updating platformio, also update Dockerfile
|
||||||
esptool==3.2
|
esptool==3.2
|
||||||
click==8.0.3
|
click==8.0.3
|
||||||
esphome-dashboard==20220113.1
|
esphome-dashboard==20220113.2
|
||||||
aioesphomeapi==10.6.0
|
aioesphomeapi==10.6.0
|
||||||
zeroconf==0.37.0
|
zeroconf==0.37.0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue