Skip to content

Commit

Permalink
ota.tasmota.com
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Aug 29, 2020
1 parent 0090e61 commit 8849285
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasmotizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def __init__(self, parent):
self.bin_file = parent.cbHackboxBin.currentData().split(";")[1]
self.nrBinFile.setUrl(QUrl(parent.cbHackboxBin.currentData().split(";")[0]))
self.bin_reply = parent.nam.get(self.nrBinFile)
self.task.setText("Downloading binary from http://sidweb.nl...")
self.task.setText("Downloading binary from ota.tasmota.com...")
self.bin_reply.readyRead.connect(self.appendBinFile)
self.bin_reply.downloadProgress.connect(self.updateBinProgress)
self.bin_reply.finished.connect(self.saveBinFile)
Expand Down Expand Up @@ -438,10 +438,10 @@ def __init__(self):
self.settings = QSettings("tasmotizer.cfg", QSettings.IniFormat)

self.nam = QNetworkAccessManager()
self.nrRelease = QNetworkRequest(QUrl("http://sidweb.nl/tasmota/release/release.php"))
self.nrDevelopment = QNetworkRequest(QUrl("http://sidweb.nl/tasmota/development.php"))
self.nrRelease = QNetworkRequest(QUrl("http://ota.tasmota.com/tasmota/release/release.php"))
self.nrDevelopment = QNetworkRequest(QUrl("http://ota.tasmota.com/tasmota/development.php"))

self.setWindowTitle("Tasmotizer 1.1b")
self.setWindowTitle("Tasmotizer 1.1c")
self.setMinimumWidth(480)

self.mode = 0 # BIN file
Expand Down

0 comments on commit 8849285

Please sign in to comment.