1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: upstream: secure: check_update: https
This patch checks for wxmaxima updates through https.
Origin: debian
Forwarded: https://github.com/wxMaxima-developers/wxmaxima/pull/2071
Author: Jerome Benoit <calculus@rezozer.net>
Last-Update: 2026-02-22
--- a/src/wxMaxima.cpp
+++ b/src/wxMaxima.cpp
@@ -11161,7 +11161,7 @@
}
/***
- * Checks the file http://wxMaxima-developers.github.io/wxmaxima/version.txt to
+ * Checks the file https://wxMaxima-developers.github.io/wxmaxima/version.txt to
* see if there is a newer version available.
*/
void wxMaxima::CheckForUpdates(bool reportUpToDate) {
@@ -11206,7 +11206,7 @@
} else {
LoggingMessageBox(
_("Unable to interpret the version info I got from "
- "http://wxMaxima-developers.github.io/wxmaxima/version.txt: ") +
+ "https://wxMaxima-developers.github.io/wxmaxima/version.txt: ") +
version,
_("Upgrade"), wxOK | wxICON_INFORMATION);
}
|