From cb7643d0874044edd465e38f4805f400e921bd78 Mon Sep 17 00:00:00 2001
From: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com>
Date: Mon, 3 Oct 2022 02:37:41 +0530
Subject: [PATCH] Added Simplewall for Install Requested Feature
ChrisTitusTech#56 (#205)
---
MainWindow.xaml | 3 ++-
applications.json | 3 +++
winutil.ps1 | 6 +++++-
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/MainWindow.xaml b/MainWindow.xaml
index 4d9ce234..6ad6b274 100644
--- a/MainWindow.xaml
+++ b/MainWindow.xaml
@@ -85,7 +85,8 @@
-
+
+
diff --git a/applications.json b/applications.json
index f4f178a8..49ffd5a0 100644
--- a/applications.json
+++ b/applications.json
@@ -231,6 +231,9 @@
"Installwireshark": {
"winget": "WiresharkFoundation.Wireshark"
},
+ "Installsimplewall": {
+ "winget": "Henry++.simplewall"
+ },
"Installzoom": {
"winget": "Zoom.Zoom"
},
diff --git a/winutil.ps1 b/winutil.ps1
index e6ed0533..69a0e83e 100644
--- a/winutil.ps1
+++ b/winutil.ps1
@@ -417,7 +417,11 @@ $WPFinstall.Add_Click({
If ( $WPFInstallwireshark.IsChecked -eq $true ) {
$wingetinstall.Add("WiresharkFoundation.Wireshark")
$WPFInstallwireshark.IsChecked = $false
- }
+ }
+ If ( $WPFInstallsimplewall.IsChecked -eq $true ) {
+ $wingetinstall.Add("Henry++.simplewall")
+ $WPFInstallsimplewall.IsChecked = $false
+ }
If ( $WPFInstallzoom.IsChecked -eq $true ) {
$wingetinstall.Add("Zoom.Zoom")
$WPFInstallzoom.IsChecked = $false