Skip to content

Commit 8849285

Browse files
authored
ota.tasmota.com
1 parent 0090e61 commit 8849285

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tasmotizer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def __init__(self, parent):
342342
self.bin_file = parent.cbHackboxBin.currentData().split(";")[1]
343343
self.nrBinFile.setUrl(QUrl(parent.cbHackboxBin.currentData().split(";")[0]))
344344
self.bin_reply = parent.nam.get(self.nrBinFile)
345-
self.task.setText("Downloading binary from http://sidweb.nl...")
345+
self.task.setText("Downloading binary from ota.tasmota.com...")
346346
self.bin_reply.readyRead.connect(self.appendBinFile)
347347
self.bin_reply.downloadProgress.connect(self.updateBinProgress)
348348
self.bin_reply.finished.connect(self.saveBinFile)
@@ -438,10 +438,10 @@ def __init__(self):
438438
self.settings = QSettings("tasmotizer.cfg", QSettings.IniFormat)
439439

440440
self.nam = QNetworkAccessManager()
441-
self.nrRelease = QNetworkRequest(QUrl("http://sidweb.nl/tasmota/release/release.php"))
442-
self.nrDevelopment = QNetworkRequest(QUrl("http://sidweb.nl/tasmota/development.php"))
441+
self.nrRelease = QNetworkRequest(QUrl("http://ota.tasmota.com/tasmota/release/release.php"))
442+
self.nrDevelopment = QNetworkRequest(QUrl("http://ota.tasmota.com/tasmota/development.php"))
443443

444-
self.setWindowTitle("Tasmotizer 1.1b")
444+
self.setWindowTitle("Tasmotizer 1.1c")
445445
self.setMinimumWidth(480)
446446

447447
self.mode = 0 # BIN file

0 commit comments

Comments
 (0)