aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/vcmi-disable-privacy-breach.patch
blob: c03bc66119f196852bd8429b4089f65b95dea003 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Origin: https://salsa.debian.org/games-team/vcmi/-/blob/debian/1.1.0+dfsg-1/debian/patches/disable-privacy-breach
From: Johannes Schauer <josch@debian.org>
Subject: do not check remote repositories on startup by default
Forwarded: not-needed

--- a/config/schemas/settings.json
+++ b/config/schemas/settings.json
@@ -401,11 +401,11 @@
 				},
 				"autoCheckRepositories" : {
 					"type" : "boolean",
-					"default" : true
+					"default" : false
 				},
 				"updateOnStartup" : {
 					"type" : "boolean",
-					"default" : true
+					"default" : false
 				},
 				"updateConfigUrl" : {
 					"type" : "string",
427a36c6545115068d5f06de2ea21407374c6'>installer: Add installer-specific run command process....* gnu/installer/record.scm (installer)[run-command]: Add field. * gnu/installer/utils.scm (run-command-in-installer): Add parameter. * gnu/installer.scm (installer-program): Parameterize run-command-in-installer with current installer's run-command. * gnu/installer/newt.scm (newt-run-command): New variable. (newt-installer): Use it. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Josselin Poiret 2022-02-02installer: Add crash dump upload support....Suggested-by: Josselin Poiret <dev@jpoiret.xyz> * gnu/installer/dump.scm: New file. * gnu/installer/newt/dump.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * gnu/installer/record.scm (<installer>)[dump-page]: New field. * gnu/installer/steps.scm (%current-result): New variable. (run-installer-steps): Update it. * gnu/installer.scm (installer-program): Add tar and gip to the installer path. Add guile-webutils and gnutls to the Guile extensions. Generate and send the crash dump report. * gnu/installer/newt.scm (exit-error): Add a report argument. Display the report id. (dump-page): New procedure. (newt-installer): Update it. Mathieu Othacehe