esphome 2024.11.0b3__py3-none-any.whl → 2024.11.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- esphome/components/esphome/ota/__init__.py +4 -4
- esphome/components/http_request/http_request.h +1 -1
- esphome/components/http_request/http_request_arduino.cpp +2 -0
- esphome/components/http_request/http_request_idf.cpp +6 -0
- esphome/components/ota/__init__.py +1 -0
- esphome/components/qspi_dbi/models.py +1 -0
- esphome/components/rtttl/rtttl.h +1 -7
- esphome/components/speaker/__init__.py +1 -0
- esphome/const.py +1 -1
- esphome/core/config.py +3 -0
- esphome/dashboard/core.py +1 -1
- esphome/dashboard/web_server.py +3 -2
- {esphome-2024.11.0b3.dist-info → esphome-2024.11.1.dist-info}/METADATA +2 -2
- {esphome-2024.11.0b3.dist-info → esphome-2024.11.1.dist-info}/RECORD +18 -18
- {esphome-2024.11.0b3.dist-info → esphome-2024.11.1.dist-info}/LICENSE +0 -0
- {esphome-2024.11.0b3.dist-info → esphome-2024.11.1.dist-info}/WHEEL +0 -0
- {esphome-2024.11.0b3.dist-info → esphome-2024.11.1.dist-info}/entry_points.txt +0 -0
- {esphome-2024.11.0b3.dist-info → esphome-2024.11.1.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,9 @@
|
|
1
1
|
import logging
|
2
2
|
|
3
3
|
import esphome.codegen as cg
|
4
|
-
|
5
|
-
import esphome.final_validate as fv
|
6
|
-
from esphome.components.ota import BASE_OTA_SCHEMA, ota_to_code, OTAComponent
|
4
|
+
from esphome.components.ota import BASE_OTA_SCHEMA, OTAComponent, ota_to_code
|
7
5
|
from esphome.config_helpers import merge_config
|
6
|
+
import esphome.config_validation as cv
|
8
7
|
from esphome.const import (
|
9
8
|
CONF_ESPHOME,
|
10
9
|
CONF_ID,
|
@@ -18,6 +17,7 @@ from esphome.const import (
|
|
18
17
|
CONF_VERSION,
|
19
18
|
)
|
20
19
|
from esphome.core import coroutine_with_priority
|
20
|
+
import esphome.final_validate as fv
|
21
21
|
|
22
22
|
_LOGGER = logging.getLogger(__name__)
|
23
23
|
|
@@ -124,7 +124,6 @@ FINAL_VALIDATE_SCHEMA = ota_esphome_final_validate
|
|
124
124
|
@coroutine_with_priority(52.0)
|
125
125
|
async def to_code(config):
|
126
126
|
var = cg.new_Pvariable(config[CONF_ID])
|
127
|
-
await ota_to_code(var, config)
|
128
127
|
cg.add(var.set_port(config[CONF_PORT]))
|
129
128
|
if CONF_PASSWORD in config:
|
130
129
|
cg.add(var.set_auth_password(config[CONF_PASSWORD]))
|
@@ -132,3 +131,4 @@ async def to_code(config):
|
|
132
131
|
cg.add_define("USE_OTA_VERSION", config[CONF_VERSION])
|
133
132
|
|
134
133
|
await cg.register_component(var, config)
|
134
|
+
await ota_to_code(var, config)
|
@@ -104,7 +104,9 @@ std::shared_ptr<HttpContainer> HttpRequestArduino::start(std::string url, std::s
|
|
104
104
|
static const size_t HEADER_COUNT = sizeof(header_keys) / sizeof(header_keys[0]);
|
105
105
|
container->client_.collectHeaders(header_keys, HEADER_COUNT);
|
106
106
|
|
107
|
+
App.feed_wdt();
|
107
108
|
container->status_code = container->client_.sendRequest(method.c_str(), body.c_str());
|
109
|
+
App.feed_wdt();
|
108
110
|
if (container->status_code < 0) {
|
109
111
|
ESP_LOGW(TAG, "HTTP Request failed; URL: %s; Error: %s", url.c_str(),
|
110
112
|
HTTPClient::errorToString(container->status_code).c_str());
|
@@ -117,8 +117,11 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
|
|
117
117
|
return nullptr;
|
118
118
|
}
|
119
119
|
|
120
|
+
App.feed_wdt();
|
120
121
|
container->content_length = esp_http_client_fetch_headers(client);
|
122
|
+
App.feed_wdt();
|
121
123
|
container->status_code = esp_http_client_get_status_code(client);
|
124
|
+
App.feed_wdt();
|
122
125
|
if (is_success(container->status_code)) {
|
123
126
|
container->duration_ms = millis() - start;
|
124
127
|
return container;
|
@@ -148,8 +151,11 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
|
|
148
151
|
return nullptr;
|
149
152
|
}
|
150
153
|
|
154
|
+
App.feed_wdt();
|
151
155
|
container->content_length = esp_http_client_fetch_headers(client);
|
156
|
+
App.feed_wdt();
|
152
157
|
container->status_code = esp_http_client_get_status_code(client);
|
158
|
+
App.feed_wdt();
|
153
159
|
if (is_success(container->status_code)) {
|
154
160
|
container->duration_ms = millis() - start;
|
155
161
|
return container;
|
esphome/components/rtttl/rtttl.h
CHANGED
@@ -40,13 +40,7 @@ class Rtttl : public Component {
|
|
40
40
|
void set_speaker(speaker::Speaker *speaker) { this->speaker_ = speaker; }
|
41
41
|
#endif
|
42
42
|
float get_gain() { return gain_; }
|
43
|
-
void set_gain(float gain) {
|
44
|
-
if (gain < 0.1f)
|
45
|
-
gain = 0.1f;
|
46
|
-
if (gain > 1.0f)
|
47
|
-
gain = 1.0f;
|
48
|
-
this->gain_ = gain;
|
49
|
-
}
|
43
|
+
void set_gain(float gain) { this->gain_ = clamp(gain, 0.0f, 1.0f); }
|
50
44
|
void play(std::string rtttl);
|
51
45
|
void stop();
|
52
46
|
void dump_config() override;
|
esphome/const.py
CHANGED
esphome/core/config.py
CHANGED
@@ -184,6 +184,9 @@ PRELOAD_CONFIG_SCHEMA = cv.Schema(
|
|
184
184
|
cv.Optional(CONF_ESP8266_RESTORE_FROM_FLASH): cv.valid,
|
185
185
|
cv.Optional(CONF_BOARD_FLASH_MODE): cv.valid,
|
186
186
|
cv.Optional(CONF_ARDUINO_VERSION): cv.valid,
|
187
|
+
cv.Optional(CONF_MIN_VERSION, default=ESPHOME_VERSION): cv.All(
|
188
|
+
cv.version_number, cv.validate_esphome_version
|
189
|
+
),
|
187
190
|
},
|
188
191
|
extra=cv.ALLOW_EXTRA,
|
189
192
|
)
|
esphome/dashboard/core.py
CHANGED
@@ -103,7 +103,7 @@ class ESPHomeDashboard:
|
|
103
103
|
self.loop = asyncio.get_running_loop()
|
104
104
|
self.ping_request = asyncio.Event()
|
105
105
|
self.entries = DashboardEntries(self)
|
106
|
-
self.load_ignored_devices
|
106
|
+
await self.loop.run_in_executor(None, self.load_ignored_devices)
|
107
107
|
|
108
108
|
def load_ignored_devices(self) -> None:
|
109
109
|
storage_path = Path(ignored_devices_storage_path())
|
esphome/dashboard/web_server.py
CHANGED
@@ -544,7 +544,7 @@ class ImportRequestHandler(BaseHandler):
|
|
544
544
|
|
545
545
|
class IgnoreDeviceRequestHandler(BaseHandler):
|
546
546
|
@authenticated
|
547
|
-
def post(self) -> None:
|
547
|
+
async def post(self) -> None:
|
548
548
|
dashboard = DASHBOARD
|
549
549
|
try:
|
550
550
|
args = json.loads(self.request.body.decode())
|
@@ -576,7 +576,8 @@ class IgnoreDeviceRequestHandler(BaseHandler):
|
|
576
576
|
else:
|
577
577
|
dashboard.ignored_devices.discard(ignored_device.device_name)
|
578
578
|
|
579
|
-
|
579
|
+
loop = asyncio.get_running_loop()
|
580
|
+
await loop.run_in_executor(None, dashboard.save_ignored_devices)
|
580
581
|
|
581
582
|
self.set_status(204)
|
582
583
|
self.finish()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: esphome
|
3
|
-
Version: 2024.11.
|
3
|
+
Version: 2024.11.1
|
4
4
|
Summary: Make creating custom firmwares for ESP32/ESP8266 super easy.
|
5
5
|
Author-email: The ESPHome Authors <esphome@nabucasa.com>
|
6
6
|
License: MIT
|
@@ -36,7 +36,7 @@ Requires-Dist: pyserial ==3.5
|
|
36
36
|
Requires-Dist: platformio ==6.1.16
|
37
37
|
Requires-Dist: esptool ==4.7.0
|
38
38
|
Requires-Dist: click ==8.1.7
|
39
|
-
Requires-Dist: esphome-dashboard ==
|
39
|
+
Requires-Dist: esphome-dashboard ==20241120.0
|
40
40
|
Requires-Dist: aioesphomeapi ==24.6.2
|
41
41
|
Requires-Dist: zeroconf ==0.132.2
|
42
42
|
Requires-Dist: puremagic ==1.27
|
@@ -5,7 +5,7 @@ esphome/codegen.py,sha256=GePHUM7xdXb_Pil59SHVsXg2F4VBPgkH-Fz2PDX8Z54,1873
|
|
5
5
|
esphome/config.py,sha256=nOiXPZv8wHtmytkNlGcewp0uuJd9G5rRjkqevYXtjzo,39618
|
6
6
|
esphome/config_helpers.py,sha256=MKf_wzO35nn41FvigXE0iYKDslPgL2ruf8R-EPtTT2I,3256
|
7
7
|
esphome/config_validation.py,sha256=RaF7hC9-VwtWA8C6vYaKVzyz4XqeoOOajr3EJDnaBaI,66311
|
8
|
-
esphome/const.py,sha256=
|
8
|
+
esphome/const.py,sha256=oDvb9zE2wQ8gEmq6yEdcTJpEoUljU6Kp1S8pwZTbOJs,40259
|
9
9
|
esphome/coroutine.py,sha256=j_14z8dIIzIBeuNO30D4c1RJvMMt1xZFZ58Evd-EvJA,9344
|
10
10
|
esphome/cpp_generator.py,sha256=lXPXHYUsFIvBSAoZ93mXYlGcXYg5L18nTtYGHE4_rr8,31203
|
11
11
|
esphome/cpp_helpers.py,sha256=6C2vNbOIhZKi43xRVlk5hp9GfshfBn-rc5D_ZFUEYaE,4801
|
@@ -868,7 +868,7 @@ esphome/components/esp8266_pwm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
868
868
|
esphome/components/esp8266_pwm/esp8266_pwm.cpp,sha256=c4_NPBOfBdguJghAdx7d9cwtyJscVEhWD4_Xkavbmfw,1703
|
869
869
|
esphome/components/esp8266_pwm/esp8266_pwm.h,sha256=YLObIixl3YFDx3biu1TVfH6qyOFFts-VGT4pxgN0PHw,1386
|
870
870
|
esphome/components/esp8266_pwm/output.py,sha256=7qgJT-O8nr0HjFajwbw2k_DlXwG_SLfP4ma82-GF-ew,2062
|
871
|
-
esphome/components/esphome/ota/__init__.py,sha256=
|
871
|
+
esphome/components/esphome/ota/__init__.py,sha256=8TRsZ2HUPIGzaWZ2iHCRq9Ey_h-gWgheoROTQydkxfo,4851
|
872
872
|
esphome/components/esphome/ota/ota_esphome.cpp,sha256=znmin_DY2kH_D0ijlfDI7unzjGHl6vkxvk7Ksv6u--U,12355
|
873
873
|
esphome/components/esphome/ota/ota_esphome.h,sha256=MHd6DPavp08gfb-bcttjCiv3U60XMSTMDi2nPcN8Y7s,1140
|
874
874
|
esphome/components/ethernet/__init__.py,sha256=OTxnBMnP_mjB3SUJsVcTDvxQqTNmOaF4LXamQx9EAyI,11646
|
@@ -1150,10 +1150,10 @@ esphome/components/hte501/hte501.h,sha256=EY-aX8KwudhZPQ3tyRzSU2hPFUzFkmAhrGdhAX
|
|
1150
1150
|
esphome/components/hte501/sensor.py,sha256=H7cfhfjQ0lyUgHABpoyiKOaj_f2qhN7nDW-tTj2sttQ,1723
|
1151
1151
|
esphome/components/http_request/__init__.py,sha256=4_uFrwkt-A5zGn3yg_9OmTeqG_B-0-qLdVB7OpDdkT8,10324
|
1152
1152
|
esphome/components/http_request/http_request.cpp,sha256=UFpMPffAuE2enh8iBvZzV3EDr7lS-MoLaquDoi5FGEw,705
|
1153
|
-
esphome/components/http_request/http_request.h,sha256=
|
1154
|
-
esphome/components/http_request/http_request_arduino.cpp,sha256=
|
1153
|
+
esphome/components/http_request/http_request.h,sha256=_2_0II69bDV-vlgr53p102VpekXijU_KQekjZOBmRF0,8653
|
1154
|
+
esphome/components/http_request/http_request_arduino.cpp,sha256=btiSWqmr45miC9yIjjiTKrMhvtJ45JieiO0V9h1EjBo,5452
|
1155
1155
|
esphome/components/http_request/http_request_arduino.h,sha256=iaOY5aKpQJREygOoyBB8Nsozp4cfETDt-G6Hgu_pkm0,871
|
1156
|
-
esphome/components/http_request/http_request_idf.cpp,sha256=
|
1156
|
+
esphome/components/http_request/http_request_idf.cpp,sha256=qVH3oaYuqfwRrDmviMOxwiof7PrIAqvg7Nc75UD2xmo,6200
|
1157
1157
|
esphome/components/http_request/http_request_idf.h,sha256=AYRv1xjWqRGXXHobcH9CHe-wk6D8OrerG4VAqrRCxPk,1122
|
1158
1158
|
esphome/components/http_request/ota/__init__.py,sha256=jpcMsy-w7q6YH2XFwBHVMb9_rM8hY0_3BS_3rkKRvc0,3202
|
1159
1159
|
esphome/components/http_request/ota/automation.h,sha256=yQo6nJis0S56r5F-tIPbRPqPZMcu0Lpcawr2cX92Ap4,1209
|
@@ -1977,7 +1977,7 @@ esphome/components/opentherm/sensor/__init__.py,sha256=pGVYAMSxHkEArf7jEY3YjWhIa
|
|
1977
1977
|
esphome/components/opentherm/switch/__init__.py,sha256=bbPSrKbqGnipfPdoaPWvdNPbs7CheZT51KUMkFc7Of4,1216
|
1978
1978
|
esphome/components/opentherm/switch/switch.cpp,sha256=UurvOy-U1IEmNxWMCCpkPCueR-POh-FBI8fBjWWc64o,820
|
1979
1979
|
esphome/components/opentherm/switch/switch.h,sha256=JhJFaXrJi3orbavFDc4llzmmHwU0yN2v_VuwJx3r7FU,410
|
1980
|
-
esphome/components/ota/__init__.py,sha256=
|
1980
|
+
esphome/components/ota/__init__.py,sha256=uHRMl_VVt5RBPmi3u7GQ8ezglq_H39qsg3cpv0tbFkQ,4353
|
1981
1981
|
esphome/components/ota/automation.h,sha256=UaasWG6gZG59MtC5DHHfMhRb7BXYmLlkOyYujZReEV0,2044
|
1982
1982
|
esphome/components/ota/ota_backend.cpp,sha256=IfpR0mvzSs9ugJa2LRi4AtYHT4Ht6PoS9BY5Ydjs_eE,587
|
1983
1983
|
esphome/components/ota/ota_backend.h,sha256=ILfnmlVzp0qhHFv13jZ6GQ7MLgKf5ICtL6xI4ojg4K8,2806
|
@@ -2176,7 +2176,7 @@ esphome/components/qr_code/qr_code.h,sha256=av3KfyeLMVzuXarboSTGBIeWsZww5k1aQXcX
|
|
2176
2176
|
esphome/components/qspi_amoled/display.py,sha256=RKxYuiRRDxMz2JkpCZuc0Mc4KEsfFXG1lnAdE96j-6o,125
|
2177
2177
|
esphome/components/qspi_dbi/__init__.py,sha256=4Nn7UhpMJ9oSbuLdyVEW7G9PlIey2v33SWRNVizt9Oc,30
|
2178
2178
|
esphome/components/qspi_dbi/display.py,sha256=FSAqnA_rpdhYDX1wKzYvKQekPKVZms5r5xkxLbID29A,6470
|
2179
|
-
esphome/components/qspi_dbi/models.py,sha256=
|
2179
|
+
esphome/components/qspi_dbi/models.py,sha256=d0SVPgOyuHgDzdXAPomACtUibZjS2vaO10K4Ka-pGy4,1349
|
2180
2180
|
esphome/components/qspi_dbi/qspi_dbi.cpp,sha256=iu0fjvpj4bgGVUr-0moxKs5dtSAUd10Cv_iwd5pAlT8,7453
|
2181
2181
|
esphome/components/qspi_dbi/qspi_dbi.h,sha256=Vnsliv6CNN_h-ZCvLraQYb9461qdvIh8jhFwhx1-ffk,6150
|
2182
2182
|
esphome/components/qwiic_pir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -2339,7 +2339,7 @@ esphome/components/rtl87xx/__init__.py,sha256=HIcczzFYGdNtOj635-gH0VVmBOZjmvcS4m
|
|
2339
2339
|
esphome/components/rtl87xx/boards.py,sha256=JItSPj4n2UAvUXISoL2PTyTAqIi2Wp3sjGjs1fgS-3M,29269
|
2340
2340
|
esphome/components/rtttl/__init__.py,sha256=m8vjSNfwcgbJm6NhDe_ErddMMwUpe2StubWcMY8sd28,4383
|
2341
2341
|
esphome/components/rtttl/rtttl.cpp,sha256=cuoIUm1xDUlrTW1lOSb5w9iMu94lUfUESTgtXbXSwPQ,10911
|
2342
|
-
esphome/components/rtttl/rtttl.h,sha256=
|
2342
|
+
esphome/components/rtttl/rtttl.h,sha256=djIjq7Cq1aZ4uQz_VHboPIdRYcYJ0j0E7uIOXr86cP0,2916
|
2343
2343
|
esphome/components/ruuvi_ble/__init__.py,sha256=9LmcfStqBeEzcuWdON_iGuI6Xh0BUssV1Aebv98Krks,619
|
2344
2344
|
esphome/components/ruuvi_ble/ruuvi_ble.cpp,sha256=XXeYIgr1OB20MxtdcTDAWowFeK8qRQmQKTMeSEuhAec,5724
|
2345
2345
|
esphome/components/ruuvi_ble/ruuvi_ble.h,sha256=F5lb-4gHnOMArTrh0jTPUjRcScDFEX2V9JHwd_Q_-t4,997
|
@@ -2585,7 +2585,7 @@ esphome/components/sonoff_d1/__init__.py,sha256=ZmxkvMwdesGJglhRfdWU41Fb_ib3xOhx
|
|
2585
2585
|
esphome/components/sonoff_d1/light.py,sha256=YLxoJWC9w_TBPyGX_2_rDCuMfc4AZtuNG0PaLlFWig0,1443
|
2586
2586
|
esphome/components/sonoff_d1/sonoff_d1.cpp,sha256=9xT42oxeLJ5CGrZ7wqIH5KVTkwW3XYNSXSXEc5_vzq0,12746
|
2587
2587
|
esphome/components/sonoff_d1/sonoff_d1.h,sha256=FNHcaqGktpV3S19A1LD2wtpRpEqA0h6g9GFb36pMy_E,3457
|
2588
|
-
esphome/components/speaker/__init__.py,sha256=
|
2588
|
+
esphome/components/speaker/__init__.py,sha256=TO94-8JNv5kTQVzvKGd5UotPrmFmzmq4jSRACkJX_kU,4352
|
2589
2589
|
esphome/components/speaker/automation.h,sha256=tVSTV49GvHk0bCEgLz3rNYFe8B1F0kXLgE-WihuRaV8,2320
|
2590
2590
|
esphome/components/speaker/speaker.h,sha256=wTyEdWsBR8tJM_VvvZFx1orEd_ZDNE9rnHOqBY46jCU,3559
|
2591
2591
|
esphome/components/speed/__init__.py,sha256=Bfyz1MHHvLHj93TfN53E2uhKXKLYtp0k4st6Xb3760o,74
|
@@ -3308,7 +3308,7 @@ esphome/core/component.cpp,sha256=Uea5Hkm0E9yJMJYnrbLFFVpdcBZgaWSxfAiwcyGKByA,93
|
|
3308
3308
|
esphome/core/component.h,sha256=U4m8_g9gSBBIjRNw4k36entP2JcA6F3SsWbwty_hKdo,11744
|
3309
3309
|
esphome/core/component_iterator.cpp,sha256=TUu2K34ATYa1Qyf2s-sZJBksAiFIGj3egzbDKPuFtTQ,11117
|
3310
3310
|
esphome/core/component_iterator.h,sha256=cjacKgRrlxl-VwPOysfBJZNK0NMzcc-w9xXn82m5dYc,3599
|
3311
|
-
esphome/core/config.py,sha256=
|
3311
|
+
esphome/core/config.py,sha256=PbySZ7vj6t2t3mNbWpKR732frQD3Eqp1eLMDflW_3rI,14740
|
3312
3312
|
esphome/core/controller.cpp,sha256=feO4yH0GETNCqi9MTZEtsOaoo-CPV2rM9S7UfQXY6Ew,4553
|
3313
3313
|
esphome/core/controller.h,sha256=PXCcMqYpq0xjFCdlOKv6WuYlcETnB4sq3UQWdOTt9PU,3720
|
3314
3314
|
esphome/core/datatypes.h,sha256=wN8xro8vqXT13w9KvVOXeQfBwlI_WQZ6uFaIGyub67E,2114
|
@@ -3338,13 +3338,13 @@ esphome/core/util.h,sha256=UeGZvUEvEaOMxLqJOA7GE178z5U37681RtFk6Ho1KCw,407
|
|
3338
3338
|
esphome/core/version.h,sha256=HkOTdiyOMRgIuYAAXpsN_8_IKye3rMK0LbtpcjZVXqY,431
|
3339
3339
|
esphome/dashboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3340
3340
|
esphome/dashboard/const.py,sha256=y4myJErHI7AUrfCum9IxnEM9bzOLL8DZQQffE_NgifA,292
|
3341
|
-
esphome/dashboard/core.py,sha256=
|
3341
|
+
esphome/dashboard/core.py,sha256=3sxsSeD1R1rK9qBZGvh7D5C8IQPeeADwvwZ49idyfgM,5678
|
3342
3342
|
esphome/dashboard/dashboard.py,sha256=EspMigIPXAci4MJXNcAG_BlxP86kUB49ddwne8iJs5A,4747
|
3343
3343
|
esphome/dashboard/dns.py,sha256=zJjzjjuJsnHXW59V-H1QqjwwqJFgtJUIsB2QUcALZns,1369
|
3344
3344
|
esphome/dashboard/entries.py,sha256=jbmvXQ5-zeUBVrd80tupYmStRsTwGp0hbfG7ZIRQF94,13130
|
3345
3345
|
esphome/dashboard/enum.py,sha256=rlQFVVxyBt5Iw7OL0o9F8D5LGgw23tbvi-KYjzP0QUQ,597
|
3346
3346
|
esphome/dashboard/settings.py,sha256=xoN2eLh-t0hmVYLmZm9beVOqonPNqWkzpRsoPbEomoA,2962
|
3347
|
-
esphome/dashboard/web_server.py,sha256=
|
3347
|
+
esphome/dashboard/web_server.py,sha256=SnAB_8ndfY91SPmY1cwCYkKxtWF9ppDgbD7soSzs3YQ,41837
|
3348
3348
|
esphome/dashboard/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3349
3349
|
esphome/dashboard/status/mdns.py,sha256=FuASYxcQ-LQVK5vqX9ZLs9wIXlmXZh4tjXhg-Zmpq14,3741
|
3350
3350
|
esphome/dashboard/status/mqtt.py,sha256=ZRb18LOvl4975Pzc4Fdr5ErML3WKwV8Pv1sD2qdSJ1s,1965
|
@@ -3355,9 +3355,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3355
3355
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3356
3356
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3357
3357
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3358
|
-
esphome-2024.11.
|
3359
|
-
esphome-2024.11.
|
3360
|
-
esphome-2024.11.
|
3361
|
-
esphome-2024.11.
|
3362
|
-
esphome-2024.11.
|
3363
|
-
esphome-2024.11.
|
3358
|
+
esphome-2024.11.1.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3359
|
+
esphome-2024.11.1.dist-info/METADATA,sha256=OkKwQUu72jOkGlFwAb3s8fV8bhV5cKcuqKLNmvpltgM,3453
|
3360
|
+
esphome-2024.11.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
3361
|
+
esphome-2024.11.1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3362
|
+
esphome-2024.11.1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3363
|
+
esphome-2024.11.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|