File: upstream-secure-check_for_updates-https.patch

package info (click to toggle)
wxmaxima 26.01.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 32,904 kB
  • sloc: cpp: 77,544; xml: 10,497; ansic: 3,651; lisp: 1,900; makefile: 32; sh: 28
file content (27 lines) | stat: -rw-r--r-- 1,046 bytes parent folder | download
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);
     }