Added KDENLive Video Editor for Install Requested Feature #38 (#206)

This commit is contained in:
Padsala Tushal 2022-10-03 02:38:38 +05:30 committed by GitHub
parent cb7643d087
commit 9a0366c231
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View File

@ -103,6 +103,7 @@
<CheckBox Name="Installsharex" Content="ShareX (Screenshots)" Margin="5,0"/> <CheckBox Name="Installsharex" Content="ShareX (Screenshots)" Margin="5,0"/>
<CheckBox Name="Installspotify" Content="Spotify" Margin="5,0"/> <CheckBox Name="Installspotify" Content="Spotify" Margin="5,0"/>
<CheckBox Name="Installvlc" Content="VLC (Video Player)" 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"/> <CheckBox Name="Installvoicemeeter" Content="Voicemeeter (Audio)" Margin="5,0"/>
</StackPanel> </StackPanel>

View File

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

View File

@ -248,6 +248,10 @@ $WPFinstall.Add_Click({
$wingetinstall.Add("VideoLAN.VLC") $wingetinstall.Add("VideoLAN.VLC")
$WPFInstallvlc.IsChecked = $false $WPFInstallvlc.IsChecked = $false
} }
If ( $WPFInstallkdenlive.IsChecked -eq $true ) {
$wingetinstall.Add("KDE.Kdenlive")
$WPFInstallkdenlive.IsChecked = $false
}
If ( $WPFInstallvscode.IsChecked -eq $true ) { If ( $WPFInstallvscode.IsChecked -eq $true ) {
$wingetinstall.Add("Git.Git") $wingetinstall.Add("Git.Git")
$wingetinstall.Add("Microsoft.VisualStudioCode --source winget") $wingetinstall.Add("Microsoft.VisualStudioCode --source winget")