notifications settings fix, processing settings added, settings restore button added
@@ -126,6 +126,33 @@
|
|||||||
<data name="MediaTypeOriginal.Text" xml:space="preserve">
|
<data name="MediaTypeOriginal.Text" xml:space="preserve">
|
||||||
<value>Original</value>
|
<value>Original</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ProcessingSpeedFast.Text" xml:space="preserve">
|
||||||
|
<value>Fast</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedFaster.Text" xml:space="preserve">
|
||||||
|
<value>Faster</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedMedium.Text" xml:space="preserve">
|
||||||
|
<value>Medium</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedSlow.Text" xml:space="preserve">
|
||||||
|
<value>Slow</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedSlower.Text" xml:space="preserve">
|
||||||
|
<value>Slower</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedSuperFast.Text" xml:space="preserve">
|
||||||
|
<value>Super fast</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedUltraFast.Text" xml:space="preserve">
|
||||||
|
<value>Ultra fast</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedVeryFast.Text" xml:space="preserve">
|
||||||
|
<value>Very fast</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeedVerySlow.Text" xml:space="preserve">
|
||||||
|
<value>Very slow</value>
|
||||||
|
</data>
|
||||||
<data name="StartAtMeteredConnectionDialogMessage" xml:space="preserve">
|
<data name="StartAtMeteredConnectionDialogMessage" xml:space="preserve">
|
||||||
<value>You are trying to download a video using a metered connection. Do you want to continue?</value>
|
<value>You are trying to download a video using a metered connection. Do you want to continue?</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -129,6 +129,27 @@
|
|||||||
<data name="NotificationsOnUnsuccessful.Header" xml:space="preserve">
|
<data name="NotificationsOnUnsuccessful.Header" xml:space="preserve">
|
||||||
<value>Show notifications when task ended unsuccessfully</value>
|
<value>Show notifications when task ended unsuccessfully</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ProcessingFFmpegLocation.Header" xml:space="preserve">
|
||||||
|
<value>FFmpeg location</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingFFmpegLocationButton.Content" xml:space="preserve">
|
||||||
|
<value>Browse</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingHeader.Text" xml:space="preserve">
|
||||||
|
<value>Processing</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingSpeed.Header" xml:space="preserve">
|
||||||
|
<value>Speed</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingUseHardwareAcceleration.Header" xml:space="preserve">
|
||||||
|
<value>Use hardware acceleration</value>
|
||||||
|
</data>
|
||||||
|
<data name="ProcessingUseMultithreading.Header" xml:space="preserve">
|
||||||
|
<value>Use multithreading</value>
|
||||||
|
</data>
|
||||||
|
<data name="RestoreToDefaultButton.Content" xml:space="preserve">
|
||||||
|
<value>Restore settings to default</value>
|
||||||
|
</data>
|
||||||
<data name="SearchingHeader.Text" xml:space="preserve">
|
<data name="SearchingHeader.Text" xml:space="preserve">
|
||||||
<value>Searching</value>
|
<value>Searching</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -163,7 +184,7 @@
|
|||||||
<value>Maximum number of tasks running in parallel</value>
|
<value>Maximum number of tasks running in parallel</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TasksSaveLastOutputDirectory.Description" xml:space="preserve">
|
<data name="TasksSaveLastOutputDirectory.Description" xml:space="preserve">
|
||||||
<value>Otherwise, default directory defined below will be used</value>
|
<value>Otherwise, default directory defined below (after expanding) will be used</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TasksSaveLastOutputDirectory.Header" xml:space="preserve">
|
<data name="TasksSaveLastOutputDirectory.Header" xml:space="preserve">
|
||||||
<value>Save last output directory</value>
|
<value>Save last output directory</value>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ using CommunityToolkit.Mvvm.Input;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using VDownload.Models;
|
using VDownload.Models;
|
||||||
@@ -76,6 +77,30 @@ namespace VDownload.Core.ViewModels.Settings
|
|||||||
set => SetProperty(_settingsService.Data.Common.Tasks.DefaultOutputDirectory, value, _settingsService.Data.Common.Tasks, (u, n) => u.DefaultOutputDirectory = n);
|
set => SetProperty(_settingsService.Data.Common.Tasks.DefaultOutputDirectory, value, _settingsService.Data.Common.Tasks, (u, n) => u.DefaultOutputDirectory = n);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string ProcessingFFmpegLocation
|
||||||
|
{
|
||||||
|
get => _settingsService.Data.Common.Processing.FFmpegLocation;
|
||||||
|
set => SetProperty(_settingsService.Data.Common.Processing.FFmpegLocation, value, _settingsService.Data.Common.Processing, (u, n) => u.FFmpegLocation = n);
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool ProcessingUseHardwareAcceleration
|
||||||
|
{
|
||||||
|
get => _settingsService.Data.Common.Processing.UseHardwareAcceleration;
|
||||||
|
set => SetProperty(_settingsService.Data.Common.Processing.UseHardwareAcceleration, value, _settingsService.Data.Common.Processing, (u, n) => u.UseHardwareAcceleration = n);
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool ProcessingUseMultithreading
|
||||||
|
{
|
||||||
|
get => _settingsService.Data.Common.Processing.UseMultithreading;
|
||||||
|
set => SetProperty(_settingsService.Data.Common.Processing.UseMultithreading, value, _settingsService.Data.Common.Processing, (u, n) => u.UseMultithreading = n);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ProcessingSpeed ProcessingSpeed
|
||||||
|
{
|
||||||
|
get => _settingsService.Data.Common.Processing.Speed;
|
||||||
|
set => SetProperty(_settingsService.Data.Common.Processing.Speed, value, _settingsService.Data.Common.Processing, (u, n) => u.Speed = n);
|
||||||
|
}
|
||||||
|
|
||||||
public bool NotificationsOnSuccessful
|
public bool NotificationsOnSuccessful
|
||||||
{
|
{
|
||||||
get => _settingsService.Data.Common.Notifications.OnSuccessful;
|
get => _settingsService.Data.Common.Notifications.OnSuccessful;
|
||||||
@@ -177,6 +202,26 @@ namespace VDownload.Core.ViewModels.Settings
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[RelayCommand]
|
||||||
|
public async Task BrowseProcessingFFmpegLocation()
|
||||||
|
{
|
||||||
|
string? newDirectory = await _storagePickerService.OpenDirectory();
|
||||||
|
if (newDirectory is not null)
|
||||||
|
{
|
||||||
|
this.ProcessingFFmpegLocation = newDirectory;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[RelayCommand]
|
||||||
|
public async Task RestoreToDefault()
|
||||||
|
{
|
||||||
|
await _settingsService.Restore();
|
||||||
|
foreach (PropertyInfo property in this.GetType().GetProperties())
|
||||||
|
{
|
||||||
|
base.OnPropertyChanged(property.Name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -122,6 +122,78 @@
|
|||||||
</ctc:SettingsExpander>
|
</ctc:SettingsExpander>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
|
<!-- Processing -->
|
||||||
|
<StackPanel Spacing="5">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/SettingsViewResources/ProcessingHeader"
|
||||||
|
FontWeight="Bold"
|
||||||
|
FontSize="15"/>
|
||||||
|
<ctc:SettingsCard x:Uid="/VDownload.Core.Strings/SettingsViewResources/ProcessingFFmpegLocation"
|
||||||
|
Description="{Binding ProcessingFFmpegLocation}">
|
||||||
|
<ctc:SettingsCard.HeaderIcon>
|
||||||
|
<BitmapIcon ShowAsMonochrome="False"
|
||||||
|
UriSource="{ThemeResource ImageSettingsViewProcessingFFmpegLocation}"/>
|
||||||
|
</ctc:SettingsCard.HeaderIcon>
|
||||||
|
<Button x:Uid="/VDownload.Core.Strings/SettingsViewResources/ProcessingFFmpegLocationButton"
|
||||||
|
Command="{Binding BrowseProcessingFFmpegLocationCommand}"/>
|
||||||
|
</ctc:SettingsCard>
|
||||||
|
<ctc:SettingsCard x:Uid="/VDownload.Core.Strings/SettingsViewResources/ProcessingUseMultithreading">
|
||||||
|
<ctc:SettingsCard.HeaderIcon>
|
||||||
|
<BitmapIcon ShowAsMonochrome="False"
|
||||||
|
UriSource="{ThemeResource ImageSettingsViewProcessingUseMultithreading}"/>
|
||||||
|
</ctc:SettingsCard.HeaderIcon>
|
||||||
|
<ToggleSwitch IsOn="{Binding ProcessingUseMultithreading, Mode=TwoWay}"/>
|
||||||
|
</ctc:SettingsCard>
|
||||||
|
<ctc:SettingsCard x:Uid="/VDownload.Core.Strings/SettingsViewResources/ProcessingUseHardwareAcceleration">
|
||||||
|
<ctc:SettingsCard.HeaderIcon>
|
||||||
|
<BitmapIcon ShowAsMonochrome="False"
|
||||||
|
UriSource="{ThemeResource ImageSettingsViewProcessingUseHardwareAcceleration}"/>
|
||||||
|
</ctc:SettingsCard.HeaderIcon>
|
||||||
|
<ToggleSwitch IsOn="{Binding ProcessingUseHardwareAcceleration, Mode=TwoWay}"/>
|
||||||
|
</ctc:SettingsCard>
|
||||||
|
<ctc:SettingsCard x:Uid="/VDownload.Core.Strings/SettingsViewResources/ProcessingSpeed">
|
||||||
|
<ctc:SettingsCard.HeaderIcon>
|
||||||
|
<BitmapIcon ShowAsMonochrome="False"
|
||||||
|
UriSource="{ThemeResource ImageSettingsViewProcessingSpeed}"/>
|
||||||
|
</ctc:SettingsCard.HeaderIcon>
|
||||||
|
<ComboBox ItemsSource="{ct:EnumValues Type=m:ProcessingSpeed}"
|
||||||
|
SelectedItem="{Binding ProcessingSpeed, Mode=TwoWay}">
|
||||||
|
<ComboBox.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<ctuc:SwitchPresenter Value="{Binding Converter={StaticResource ObjectToStringConverter}}">
|
||||||
|
<ctuc:Case Value="VerySlow">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedVerySlow"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="Slower">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedSlower"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="Slow">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedSlow"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="Medium">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedMedium"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="Fast">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedFast"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="Faster">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedFaster"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="VeryFast">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedVeryFast"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="SuperFast">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedSuperFast"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
<ctuc:Case Value="UltraFast">
|
||||||
|
<TextBlock x:Uid="/VDownload.Core.Strings/CommonResources/ProcessingSpeedUltraFast"/>
|
||||||
|
</ctuc:Case>
|
||||||
|
</ctuc:SwitchPresenter>
|
||||||
|
</DataTemplate>
|
||||||
|
</ComboBox.ItemTemplate>
|
||||||
|
</ComboBox>
|
||||||
|
</ctc:SettingsCard>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
<!-- Notifications -->
|
<!-- Notifications -->
|
||||||
<StackPanel Spacing="5">
|
<StackPanel Spacing="5">
|
||||||
<TextBlock x:Uid="/VDownload.Core.Strings/SettingsViewResources/NotificationsHeader"
|
<TextBlock x:Uid="/VDownload.Core.Strings/SettingsViewResources/NotificationsHeader"
|
||||||
@@ -132,14 +204,14 @@
|
|||||||
<BitmapIcon ShowAsMonochrome="False"
|
<BitmapIcon ShowAsMonochrome="False"
|
||||||
UriSource="{ThemeResource ImageSettingsViewNotificationOnSuccessful}"/>
|
UriSource="{ThemeResource ImageSettingsViewNotificationOnSuccessful}"/>
|
||||||
</ctc:SettingsCard.HeaderIcon>
|
</ctc:SettingsCard.HeaderIcon>
|
||||||
<ToggleSwitch IsOn="{Binding NotificationOnSuccessful, Mode=TwoWay}"/>
|
<ToggleSwitch IsOn="{Binding NotificationsOnSuccessful, Mode=TwoWay}"/>
|
||||||
</ctc:SettingsCard>
|
</ctc:SettingsCard>
|
||||||
<ctc:SettingsCard x:Uid="/VDownload.Core.Strings/SettingsViewResources/NotificationsOnUnsuccessful">
|
<ctc:SettingsCard x:Uid="/VDownload.Core.Strings/SettingsViewResources/NotificationsOnUnsuccessful">
|
||||||
<ctc:SettingsCard.HeaderIcon>
|
<ctc:SettingsCard.HeaderIcon>
|
||||||
<BitmapIcon ShowAsMonochrome="False"
|
<BitmapIcon ShowAsMonochrome="False"
|
||||||
UriSource="{ThemeResource ImageSettingsViewNotificationOnUnsuccessful}"/>
|
UriSource="{ThemeResource ImageSettingsViewNotificationOnUnsuccessful}"/>
|
||||||
</ctc:SettingsCard.HeaderIcon>
|
</ctc:SettingsCard.HeaderIcon>
|
||||||
<ToggleSwitch IsOn="{Binding NotificationOnUnsuccessful, Mode=TwoWay}"/>
|
<ToggleSwitch IsOn="{Binding NotificationsOnUnsuccessful, Mode=TwoWay}"/>
|
||||||
</ctc:SettingsCard>
|
</ctc:SettingsCard>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
@@ -215,6 +287,11 @@
|
|||||||
</ctc:SettingsExpander.Items>
|
</ctc:SettingsExpander.Items>
|
||||||
</ctc:SettingsExpander>
|
</ctc:SettingsExpander>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
||||||
|
<Button x:Uid="/VDownload.Core.Strings/SettingsViewResources/RestoreToDefaultButton"
|
||||||
|
Command="{Binding RestoreToDefaultCommand}"/>
|
||||||
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|||||||
BIN
VDownload/Assets/SettingsView/ProcessingFFmpegLocationDark.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
VDownload/Assets/SettingsView/ProcessingFFmpegLocationLight.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
VDownload/Assets/SettingsView/ProcessingSpeedDark.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
VDownload/Assets/SettingsView/ProcessingSpeedLight.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 34 KiB |
@@ -13,6 +13,10 @@
|
|||||||
<x:String x:Key="ImageSettingsViewTempDeleteOnFail">/Assets/SettingsView/TempDeleteOnFailLight.png</x:String>
|
<x:String x:Key="ImageSettingsViewTempDeleteOnFail">/Assets/SettingsView/TempDeleteOnFailLight.png</x:String>
|
||||||
<x:String x:Key="ImageSettingsViewNotificationOnSuccessful">/Assets/SettingsView/NotificationOnSuccessfulLight.png</x:String>
|
<x:String x:Key="ImageSettingsViewNotificationOnSuccessful">/Assets/SettingsView/NotificationOnSuccessfulLight.png</x:String>
|
||||||
<x:String x:Key="ImageSettingsViewNotificationOnUnsuccessful">/Assets/SettingsView/NotificationOnUnsuccessfulLight.png</x:String>
|
<x:String x:Key="ImageSettingsViewNotificationOnUnsuccessful">/Assets/SettingsView/NotificationOnUnsuccessfulLight.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingFFmpegLocation">/Assets/SettingsView/ProcessingFFmpegLocationLight.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingUseHardwareAcceleration">/Assets/SettingsView/ProcessingUseHardwareAccelerationLight.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingUseMultithreading">/Assets/SettingsView/ProcessingUseMultithreadingLight.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingSpeed">/Assets/SettingsView/ProcessingSpeedLight.png</x:String>
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
<ResourceDictionary x:Key="Dark">
|
<ResourceDictionary x:Key="Dark">
|
||||||
<x:String x:Key="ImageSettingsViewSearchingPlaylistCount">/Assets/SettingsView/SearchingPlaylistCountDark.png</x:String>
|
<x:String x:Key="ImageSettingsViewSearchingPlaylistCount">/Assets/SettingsView/SearchingPlaylistCountDark.png</x:String>
|
||||||
@@ -24,6 +28,10 @@
|
|||||||
<x:String x:Key="ImageSettingsViewTempDeleteOnFail">/Assets/SettingsView/TempDeleteOnFailDark.png</x:String>
|
<x:String x:Key="ImageSettingsViewTempDeleteOnFail">/Assets/SettingsView/TempDeleteOnFailDark.png</x:String>
|
||||||
<x:String x:Key="ImageSettingsViewNotificationOnSuccessful">/Assets/SettingsView/NotificationOnSuccessfulDark.png</x:String>
|
<x:String x:Key="ImageSettingsViewNotificationOnSuccessful">/Assets/SettingsView/NotificationOnSuccessfulDark.png</x:String>
|
||||||
<x:String x:Key="ImageSettingsViewNotificationOnUnsuccessful">/Assets/SettingsView/NotificationOnUnsuccessfulDark.png</x:String>
|
<x:String x:Key="ImageSettingsViewNotificationOnUnsuccessful">/Assets/SettingsView/NotificationOnUnsuccessfulDark.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingFFmpegLocation">/Assets/SettingsView/ProcessingFFmpegLocationDark.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingUseHardwareAcceleration">/Assets/SettingsView/ProcessingUseHardwareAccelerationDark.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingUseMultithreading">/Assets/SettingsView/ProcessingUseMultithreadingDark.png</x:String>
|
||||||
|
<x:String x:Key="ImageSettingsViewProcessingSpeed">/Assets/SettingsView/ProcessingSpeedDark.png</x:String>
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
</ResourceDictionary.ThemeDictionaries>
|
</ResourceDictionary.ThemeDictionaries>
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
|||||||
@@ -95,6 +95,8 @@
|
|||||||
<Content Remove="Assets\Logo\Square44x44Logo.altform-unplated_targetsize-256.png" />
|
<Content Remove="Assets\Logo\Square44x44Logo.altform-unplated_targetsize-256.png" />
|
||||||
<Content Remove="Assets\Logo\Square44x44Logo.altform-unplated_targetsize-32.png" />
|
<Content Remove="Assets\Logo\Square44x44Logo.altform-unplated_targetsize-32.png" />
|
||||||
<Content Remove="Assets\Logo\Square44x44Logo.altform-unplated_targetsize-48.png" />
|
<Content Remove="Assets\Logo\Square44x44Logo.altform-unplated_targetsize-48.png" />
|
||||||
|
<Content Remove="Assets\SettingsView\ProcessingFFmpegLocationDark.png" />
|
||||||
|
<Content Remove="Assets\SettingsView\ProcessingFFmpegLocationLight.png" />
|
||||||
<Content Remove="Assets\SettingsView\TasksFilenameTemplateDark.png" />
|
<Content Remove="Assets\SettingsView\TasksFilenameTemplateDark.png" />
|
||||||
<Content Remove="Assets\SettingsView\TasksFilenameTemplateLight.png" />
|
<Content Remove="Assets\SettingsView\TasksFilenameTemplateLight.png" />
|
||||||
<Content Remove="Assets\SettingsView\TasksOutputDirectoryDark.png" />
|
<Content Remove="Assets\SettingsView\TasksOutputDirectoryDark.png" />
|
||||||
@@ -216,6 +218,24 @@
|
|||||||
<Content Update="Assets\SettingsView\NotificationOnUnsuccessfulLight.png">
|
<Content Update="Assets\SettingsView\NotificationOnUnsuccessfulLight.png">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Update="Assets\SettingsView\ProcessingSpeedDark.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<Content Update="Assets\SettingsView\ProcessingSpeedLight.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<Content Update="Assets\SettingsView\ProcessingUseHardwareAccelerationDark.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<Content Update="Assets\SettingsView\ProcessingUseHardwareAccelerationLight.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<Content Update="Assets\SettingsView\ProcessingUseMultithreadingLight.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<Content Update="Assets\SettingsView\ProcessingUseMultithreadingDark.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
<Content Update="Assets\SettingsView\TasksDefaultMediaOptionsDark.png">
|
<Content Update="Assets\SettingsView\TasksDefaultMediaOptionsDark.png">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
@@ -464,9 +484,15 @@
|
|||||||
<None Update="Assets\Logo\Logo.png">
|
<None Update="Assets\Logo\Logo.png">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
|
<None Update="Assets\SettingsView\ProcessingFFmpegLocationDark.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
<None Update="Assets\SettingsView\TasksOutputDirectoryDark.png">
|
<None Update="Assets\SettingsView\TasksOutputDirectoryDark.png">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
|
<None Update="Assets\SettingsView\ProcessingFFmpegLocationLight.png">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
<None Update="Assets\SettingsView\TasksOutputDirectoryLight.png">
|
<None Update="Assets\SettingsView\TasksOutputDirectoryLight.png">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
|
|||||||