From: IOhannes m zmölnig Date: Mon, 26 Mar 2018 15:24:39 +0000 (+0200) Subject: Patch to disable collection of usage data by default X-Git-Tag: archive/raspbian/5.4.5_ds0-1+rpi1~1^2~77 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=685c1613959118cdf7a83be58a5f089763fb8a38;p=juce.git Patch to disable collection of usage data by default --- diff --git a/debian/patches/debian_no-usagedata.patch b/debian/patches/debian_no-usagedata.patch new file mode 100644 index 00000000..4972d954 --- /dev/null +++ b/debian/patches/debian_no-usagedata.patch @@ -0,0 +1,23 @@ +Description: default to not-sending usage-data to ROLI + we prefer to have privacy enabled by default... +Author: IOhannes m zmölnig +Forwarded: no +Last-Update: 2018-03-26 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- juce.orig/extras/Projucer/Source/Application/Windows/jucer_ApplicationUsageDataWindowComponent.h ++++ juce/extras/Projucer/Source/Application/Windows/jucer_ApplicationUsageDataWindowComponent.h +@@ -68,10 +68,10 @@ + + auto* controller = ProjucerApplication::getApp().licenseController.get(); + +- if (controller != nullptr && controller->getState().applicationUsageDataState == LicenseState::ApplicationUsageData::disabled) +- shareApplicationUsageDataToggle->setToggleState (false, dontSendNotification); +- else ++ if (controller != nullptr && controller->getState().applicationUsageDataState == LicenseState::ApplicationUsageData::enabled) + shareApplicationUsageDataToggle->setToggleState (true, dontSendNotification); ++ else ++ shareApplicationUsageDataToggle->setToggleState (false, dontSendNotification); + + addAndMakeVisible (shareApplicationUsageDataLabel); + shareApplicationUsageDataLabel.setFont (Font (14.0f)); diff --git a/debian/patches/series b/debian/patches/series index 09aa0f87..1c4e21a5 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -3,5 +3,6 @@ LV2-audioprocessor.patch debian_fixed-defines.patch debian_gpl_variant.patch debian_no-update-check.patch +debian_no-usagedata.patch debian_system_modules.patch debian_python3.patch