From a8e1ad2617c36a493b317c81e96f7c1bdcc1cd29 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Thu, 10 Oct 2019 16:33:42 -0600 Subject: [feat] donate menuitem is configurable --- branding/config/vendor.conf | 2 +- branding/scripts/provider.py | 3 ++- branding/scripts/vendorize.py | 2 +- branding/templates/bitmaskvpn/config.go | 1 + 4 files changed, 5 insertions(+), 3 deletions(-) (limited to 'branding') diff --git a/branding/config/vendor.conf b/branding/config/vendor.conf index c68213e..1aed093 100644 --- a/branding/config/vendor.conf +++ b/branding/config/vendor.conf @@ -39,7 +39,7 @@ helpURL = https://calyx.net/support geolocationAPI = https://api.black.riseup.net:9001/json -askForDonations = true +askForDonations = false donateURL = http://example.org [demo] diff --git a/branding/scripts/provider.py b/branding/scripts/provider.py index 867007e..7455556 100644 --- a/branding/scripts/provider.py +++ b/branding/scripts/provider.py @@ -20,7 +20,8 @@ def getProviderData(provider, config): keys = ('name', 'applicationName', 'binaryName', 'providerURL', 'tosURL', 'helpURL', - 'donateURL', 'apiURL', 'geolocationAPI', 'caCertString') + 'askForDonations', 'donateURL', 'apiURL', + 'geolocationAPI', 'caCertString') for value in keys: d[value] = c.get(value) diff --git a/branding/scripts/vendorize.py b/branding/scripts/vendorize.py index 59edae0..ba248b0 100755 --- a/branding/scripts/vendorize.py +++ b/branding/scripts/vendorize.py @@ -10,7 +10,7 @@ from provider import getDefaultProvider from provider import getProviderData OUTFILE = 'config.go' -INFILE = '../templates/golang/config.go' +INFILE = '../templates/bitmaskvpn/config.go' CONFIGFILE = '../config/vendor.conf' SCRIPT_NAME = 'vendorize' diff --git a/branding/templates/bitmaskvpn/config.go b/branding/templates/bitmaskvpn/config.go index 67908c0..97b4617 100644 --- a/branding/templates/bitmaskvpn/config.go +++ b/branding/templates/bitmaskvpn/config.go @@ -11,6 +11,7 @@ const ( ApplicationName = "$applicationName" BinaryName = "$binaryName" DonateURL = "$donateURL" + AskForDonations = "$askForDonations" HelpURL = "$helpURL" TosURL = "$tosURL" APIURL = "$apiURL" -- cgit v1.2.3