From 074734242b19698d0fedba590e917ec514337412 Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Sat, 29 Feb 2020 18:51:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=200.4.2=20release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++-- src/application/application.yaml | 20 ++++++++++++-------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 012db500..5cc40090 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,12 @@ ## Unreleased +- + +## [0.4.2] - 2020-02-29 + - Fixed search text font being defaulted to Arial. +- Shortened `HKEY` paths in scripts ## [0.4.1] - 2020-01-11 @@ -41,8 +46,9 @@ ## All releases -- [Unreleased] : https://github.com/undergroundwires/privacy.sexy/compare/v0.4.1...HEAD -- [v0.4.0] : https://github.com/undergroundwires/privacy.sexy/compare/v0.4.0...v0.4.1 +- [Unreleased] : https://github.com/undergroundwires/privacy.sexy/compare/v0.4.2...HEAD +- [v0.4.2] : https://github.com/undergroundwires/privacy.sexy/compare/v0.4.1...v0.4.2 +- [v0.4.1] : https://github.com/undergroundwires/privacy.sexy/compare/v0.4.0...v0.4.1 - [v0.4.0] : https://github.com/undergroundwires/privacy.sexy/compare/v0.3.0...v0.4.0 - [v0.3.0] : https://github.com/undergroundwires/privacy.sexy/compare/v0.2.0...v0.3.0 - [v0.2.0] : https://github.com/undergroundwires/privacy.sexy/compare/v0.1.0...v0.2.0 diff --git a/src/application/application.yaml b/src/application/application.yaml index 874a7252..cc7e77fd 100644 --- a/src/application/application.yaml +++ b/src/application/application.yaml @@ -1,5 +1,5 @@ name: privacy.sexy -version: 0.4.1 +version: 0.4.2 repositoryUrl: https://github.com/undergroundwires/privacy.sexy actions: - @@ -371,23 +371,23 @@ actions: children: - name: Deny app access to location - recommend: false + recommend: true code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsAccessLocation" /t REG_DWORD /d 2 /f - name: Deny app access to motion data - recommend: false + recommend: true code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsAccessMotion" /t REG_DWORD /d 2 /f - name: Deny app access to phone - recommend: false + recommend: true code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsAccessPhone" /t REG_DWORD /d 2 /f - name: Deny app access to trusted devices - recommend: false + recommend: true code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsAccessTrustedDevices" /t REG_DWORD /d 2 /f - name: Deny app sync with devices - recommend: false + recommend: true code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsSyncWithDevices" /t REG_DWORD /d 2 /f - name: Deny app access to camera @@ -397,10 +397,10 @@ actions: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsAccessCamera" /t REG_DWORD /d 2 /f - name: Deny app access to microphone - recommend: true + recommend: false code: |- reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\microphone" /v "Value" /d "Deny" /t REG_SZ /f - reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsAccessMicrophone" /t REG_DWORD /d 2 /f + reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{2EEF81BE-33FA-4800-9670-1CD474972C3F}" /v "Value" /t REG_SZ /d "Deny" /f - name: Deny app access to diagnostics info about your other apps recommend: true @@ -589,6 +589,10 @@ actions: name: Disable Inventory Collector recommend: true code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "DisableInventory" /t REG_DWORD /d 1 /f + - + name: Disable Website Access of Language List + recommend: true + code: reg add "HKCU\Control Panel\International\User Profile" /v "HttpAcceptLanguageOptOut" /t REG_DWORD /d 1 /f - name: Disable Auto Downloading Maps recommend: true