From 9a0366c231676842eeadd5321b2523bdf450100d Mon Sep 17 00:00:00 2001
From: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com>
Date: Mon, 3 Oct 2022 02:38:38 +0530
Subject: [PATCH] Added KDENLive Video Editor for Install Requested Feature #38
(#206)
---
MainWindow.xaml | 1 +
applications.json | 3 +++
winutil.ps1 | 4 ++++
3 files changed, 8 insertions(+)
diff --git a/MainWindow.xaml b/MainWindow.xaml
index 6ad6b274..d069fc8e 100644
--- a/MainWindow.xaml
+++ b/MainWindow.xaml
@@ -103,6 +103,7 @@
+
diff --git a/applications.json b/applications.json
index 49ffd5a0..7c6dee5c 100644
--- a/applications.json
+++ b/applications.json
@@ -213,6 +213,9 @@
"Installvlc": {
"winget": "VideoLAN.VLC"
},
+ "Installkdenlive": {
+ "winget": "KDE.Kdenlive"
+ },
"Installvoicemeeter": {
"winget": "VB-Audio.Voicemeeter"
},
diff --git a/winutil.ps1 b/winutil.ps1
index 69a0e83e..019c4f84 100644
--- a/winutil.ps1
+++ b/winutil.ps1
@@ -248,6 +248,10 @@ $WPFinstall.Add_Click({
$wingetinstall.Add("VideoLAN.VLC")
$WPFInstallvlc.IsChecked = $false
}
+ If ( $WPFInstallkdenlive.IsChecked -eq $true ) {
+ $wingetinstall.Add("KDE.Kdenlive")
+ $WPFInstallkdenlive.IsChecked = $false
+ }
If ( $WPFInstallvscode.IsChecked -eq $true ) {
$wingetinstall.Add("Git.Git")
$wingetinstall.Add("Microsoft.VisualStudioCode --source winget")