mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-28 09:24:14 +01:00
Changing URLs from HTTP to HTTPS
I have changed the URLs from `http` to `httpst`. In particular the page `latest.txt` can be reached on both port 80 and port 443.
This commit is contained in:
parent
b029b2a0e1
commit
5c8c3538ee
@ -51,7 +51,7 @@ import static processing.app.I18n.tr;
|
||||
*/
|
||||
public class UpdateCheck implements Runnable {
|
||||
Base base;
|
||||
String downloadURL = tr("http://www.arduino.cc/latest.txt");
|
||||
String downloadURL = tr("https://www.arduino.cc/latest.txt");
|
||||
|
||||
static final long ONE_DAY = 24 * 60 * 60 * 1000;
|
||||
|
||||
@ -116,7 +116,7 @@ public class UpdateCheck implements Runnable {
|
||||
options,
|
||||
options[0]);
|
||||
if (result == JOptionPane.YES_OPTION) {
|
||||
Base.openURL(tr("http://www.arduino.cc/en/Main/Software"));
|
||||
Base.openURL(tr("https://www.arduino.cc/en/Main/Software"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user