From c48a9d5d8b90d0dfd074315a6535661c88da2481 Mon Sep 17 00:00:00 2001 From: padsalatushal Date: Sat, 24 Sep 2022 13:22:28 +0530 Subject: [PATCH] Added KDENLive Video Editor for Install Requested Feature #38 --- MainWindow.xaml | 1 + applications.json | 3 +++ winutil.ps1 | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/MainWindow.xaml b/MainWindow.xaml index 067408a4..36e3c6c6 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -102,6 +102,7 @@ + diff --git a/applications.json b/applications.json index 02752368..ee82efe9 100644 --- a/applications.json +++ b/applications.json @@ -210,6 +210,9 @@ "Installvlc": { "winget": "VideoLAN.VLC" }, + "Installkdenlive": { + "winget": "KDE.Kdenlive" + }, "Installvoicemeeter": { "winget": "VB-Audio.Voicemeeter" }, diff --git a/winutil.ps1 b/winutil.ps1 index d9800848..abdabd9a 100644 --- a/winutil.ps1 +++ b/winutil.ps1 @@ -244,6 +244,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")