Added KDENLive Video Editor for Install Requested Feature #38

This commit is contained in:
padsalatushal 2022-09-24 13:22:28 +05:30
parent e770c2d5da
commit c48a9d5d8b
3 changed files with 8 additions and 0 deletions

View File

@ -102,6 +102,7 @@
<CheckBox Name="Installsharex" Content="ShareX (Screenshots)" Margin="5,0"/>
<CheckBox Name="Installspotify" Content="Spotify" Margin="5,0"/>
<CheckBox Name="Installvlc" Content="VLC (Video Player)" Margin="5,0"/>
<CheckBox Name="Installkdenlive" Content="Kdenlive (Video Editor)" Margin="5,0"/>
<CheckBox Name="Installvoicemeeter" Content="Voicemeeter (Audio)" Margin="5,0"/>
</StackPanel>

View File

@ -210,6 +210,9 @@
"Installvlc": {
"winget": "VideoLAN.VLC"
},
"Installkdenlive": {
"winget": "KDE.Kdenlive"
},
"Installvoicemeeter": {
"winget": "VB-Audio.Voicemeeter"
},

View File

@ -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")