Skip to content

Commit

Permalink
👍
Browse files Browse the repository at this point in the history
  • Loading branch information
shadesofdeath committed Aug 24, 2023
1 parent 1986b1b commit 39ecac6
Show file tree
Hide file tree
Showing 92 changed files with 6,795 additions and 23,845 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/ShadesTweaker/v17/.suo
Binary file not shown.
11 changes: 7 additions & 4 deletions ShadesTweaker/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:rs="clr-namespace:ShadesTweaker.Properties"
MinWidth="1300" MinHeight="650"
MinWidth="1400" MinHeight="650"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
ExtendsContentIntoTitleBar="True"
WindowBackdropType="Auto"
WindowCornerPreference="Round"
WindowStyle="None">
<Grid>
<ui:TitleBar ShowClose="True" Title="Shades Tweaker v1.2" ShowMaximize="True" ShowHelp="False" ShowMinimize="True" CanMaximize="True" VerticalAlignment="Top" />
<ui:TitleBar ShowClose="True" Title="Shades Tweaker v1.3" ShowMaximize="True" ShowHelp="False" ShowMinimize="True" CanMaximize="True" VerticalAlignment="Top" />
<TabControl x:Name="myTabControl" Margin="0,42,0,0">
<!-- Tab 1 -->
<TabItem MaxWidth="175" MinWidth="175" FontSize="12">
Expand Down Expand Up @@ -56,7 +56,7 @@
<ui:ToggleSwitch FontSize="12" x:Name="hibernationToggle" Content="{DynamicResource disableHibernationToggle}" Margin="0,10,0,0" Checked="hibernation_Checked" Unchecked="hibernation_Unchecked"/>
<ui:ToggleSwitch FontSize="12" x:Name="ntfstimeToggle" Content="{DynamicResource disableNTFSLastAccessTimeToggle}" Margin="0,10,0,0" Checked="ntfstime_Checked" Unchecked="ntfstime_Unchecked"/>
</StackPanel>
<StackPanel Margin="-60,240,0,0" MaxWidth="420" MinWidth="420">
<StackPanel Margin="-160,240,0,0" MaxWidth="420" MinWidth="420">
<Label Foreground="#7F8487" Content="{DynamicResource contextMenuLabel}" />
<ui:ToggleSwitch FontSize="12" x:Name="batToggle" Content="{DynamicResource addWindowsBatchFileToggle}" Margin="0,5,0,0" Checked="bat_Checked" Unchecked="bat_Unchecked"/>
<ui:ToggleSwitch FontSize="12" x:Name="copypathToggle" Content="{DynamicResource addCopyAsPathToggle}" Margin="0,10,0,0" Checked="copypath_Checked" Unchecked="copypath_Unchecked"/>
Expand Down Expand Up @@ -105,6 +105,7 @@
</Grid>
</TabItem>

<!-- Tab 3 -->
<!-- Tab 3 -->
<TabItem MaxWidth="175" MinWidth="175" FontSize="12">
<TabItem.Header>
Expand All @@ -130,6 +131,7 @@
<ui:ToggleSwitch FontSize="12" x:Name="disableCortana" Content="{DynamicResource disableCortanaToggle}" Margin="0,10,0,0" Checked="disableCortana_Checked" Unchecked="disableCortana_Unchecked"/>
<ui:ToggleSwitch FontSize="12" x:Name="disableAppUpdates" Content="{DynamicResource disableAppUpdatesToggle}" Margin="0,10,0,0" Checked="disableAppUpdates_Checked" Unchecked="disableAppUpdates_Unchecked"/>
<ui:ToggleSwitch FontSize="12" x:Name="disableSearchIndex" Content="{DynamicResource disableSearchIndex}" Margin="0,10,0,0" Checked="disableSearchIndex_Checked" Unchecked="disableSearchIndex_Unchecked"/>
<ui:ToggleSwitch FontSize="12" x:Name="oldPhotoViewer" Content="{DynamicResource oldPhotoViewer}" Margin="0,10,0,0" Checked="oldPhotoViewer_Checked" Unchecked="oldPhotoViewer_Unchecked"/>

</StackPanel>
<StackPanel Margin="15,0,0,0" MaxWidth="300" MinWidth="300" HorizontalAlignment="Left">
Expand Down Expand Up @@ -247,7 +249,7 @@
</StackPanel>
</WrapPanel>
</TabItem>

<!-- Tab 6 -->
<TabItem MaxWidth="175" MinWidth="175" FontSize="12">
<TabItem.Header>
Expand Down Expand Up @@ -319,5 +321,6 @@
</TabItem>

</TabControl>

</Grid>
</ui:UiWindow>
86 changes: 78 additions & 8 deletions ShadesTweaker/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Security.Principal;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Xml.Linq;
using Wpf.Ui.Controls;


namespace ShadesTweaker
{
public partial class MainWindow : UiWindow
Expand All @@ -22,15 +22,36 @@ public MainWindow()
{
InitializeComponent();
Loaded += (sender, args) =>
{
if (IsWindows11OrHigher())
{
SetAcrylicTheme();
}
else
{
SetTabbedTheme();
}
};
}

private bool IsWindows11OrHigher()
{
Wpf.Ui.Appearance.Watcher.Watch(
this, // Window class
Wpf.Ui.Appearance.BackgroundType.Mica, // Background type
true
);
};
// Windows 11 version number: 10.0.22000
Version win11Version = new Version(10, 0, 22000, 0);
return Environment.OSVersion.Platform == PlatformID.Win32NT &&
Environment.OSVersion.Version >= win11Version;
}

private void SetAcrylicTheme()
{
Wpf.Ui.Appearance.Watcher.Watch(this, Wpf.Ui.Appearance.BackgroundType.Acrylic, true);
}

private void SetTabbedTheme()
{
Wpf.Ui.Appearance.Watcher.Watch(this, Wpf.Ui.Appearance.BackgroundType.Tabbed, true);
}

public class ToggleSwitchState
{
public string Name { get; set; }
Expand Down Expand Up @@ -1770,10 +1791,55 @@ private void GameRecording_Checked(object sender, RoutedEventArgs e)
private void GameRecording_Unchecked(object sender, RoutedEventArgs e)
{
RegHelper.SetValue(RegistryHive.LocalMachine, @"SOFTWARE\Policies\Microsoft\Windows\GameDVR", "AllowGameDVR", 1, RegistryValueKind.DWord);

}


// Old Photo Viewer
private void oldPhotoViewer_Checked(object sender, RoutedEventArgs e)
{
// Önce çalışma dizininin yolunu alalım
string currentDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

// Resources klasörü içindeki "photo-viewer.ps1" dosyasının tam yolunu oluşturalım
string ps1FilePath = Path.Combine(currentDirectory, "Resources", "photo-viewer.ps1");

// Eğer kullanıcı yönetici yetkisine sahipse, PowerShell betiğini gizli olarak çalıştıralım
if (IsAdministrator())
{
ProcessStartInfo psi = new ProcessStartInfo
{
FileName = "powershell.exe",
Arguments = $"-ExecutionPolicy Bypass -WindowStyle Hidden -File \"{ps1FilePath}\"",
Verb = "runas" // Yönetici yetkisiyle çalıştırma için
};

try
{
Process.Start(psi);
}
catch (Exception)
{
}
}
else
{
}
}

// Kullanıcının yönetici yetkisine sahip olup olmadığını kontrol eden fonksiyon
private bool IsAdministrator()
{
WindowsIdentity identity = WindowsIdentity.GetCurrent();
WindowsPrincipal principal = new WindowsPrincipal(identity);
return principal.IsInRole(WindowsBuiltInRole.Administrator);
}


private void oldPhotoViewer_Unchecked(object sender, RoutedEventArgs e)
{

}


private bool isProcessing = false;
Expand Down Expand Up @@ -2192,5 +2258,9 @@ private void comboBoxLanguage_SelectionChanged(object sender, SelectionChangedEv
this.Resources.MergedDictionaries.Add(resourceDictionary);
}





}
}
8 changes: 4 additions & 4 deletions ShadesTweaker/ShadesTweaker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Drawing.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Drawing.Common.6.0.0\lib\net461\System.Drawing.Common.dll</HintPath>
<Reference Include="System.Drawing.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Drawing.Common.7.0.0\lib\net462\System.Drawing.Common.dll</HintPath>
</Reference>
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
Expand All @@ -61,8 +61,8 @@
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="Wpf.Ui, Version=2.0.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\WPF-UI.2.0.3\lib\net47\Wpf.Ui.dll</HintPath>
<Reference Include="Wpf.Ui, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\WPF-UI.2.1.0\lib\net472\Wpf.Ui.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
105 changes: 105 additions & 0 deletions ShadesTweaker/bin/Debug/Resources/photo-viewer.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Description
# This script will restore Windows Photo Viewer.

Import-Module -DisableNameChecking $PSScriptRoot\..\lib\take-own.psm1

echo "Elevating priviledges for this process"
do {} until (Elevate-Privileges SeTakeOwnershipPrivilege)

New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT

mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\open\command"
mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\open\DropTarget"

mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\print\command"
mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\print\DropTarget"

cmd /c regsvr32 /s "%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll"

echo "Setting default Photo Viewer to Old Windows Photo Viewer"
sp "HKCR:\Applications\photoviewer.dll\shell\open" "MuiVerb" "@photoviewer.dll,-3043"

sp "HKCR:\Applications\photoviewer.dll\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e

sp "HKCR:\Applications\photoviewer.dll\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

sp "HKCR:\Applications\photoviewer.dll\shell\print\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e

sp "HKCR:\Applications\photoviewer.dll\shell\print\DropTarget]" "Clsid" "{60fd46de-f830-4894-a628-6fa81bc0190d}"

echo "Set default association for Photo Viewer"
# cmd /c assoc /?
# cmd /c ftype /?

mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Bitmap\DefaultIcon"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\command"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget"
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap" "ImageOptionFlags" 1 -t d
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-70"
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

mkdir -Force "HKCR:\PhotoViewer.FileAssoc.JFIF\DefaultIcon"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\command"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\DropTarget"
sp "HKCR:\PhotoViewer.FileAssoc.JFIF" "EditFlags" 0x10000 -t d
sp "HKCR:\PhotoViewer.FileAssoc.JFIF" "ImageOptionFlags" 1 -t d
sp "HKCR:\PhotoViewer.FileAssoc.JFIF" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3055" -t e
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-72"
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open" "MuiVerb" "@%ProgramFiles%\Windows Photo Viewer\photoviewer.dll,-3043" -t e
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Jpeg\DefaultIcon"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\command"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\DropTarget"
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg" "EditFlags" 0x10000 -t d
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg" "ImageOptionFlags" 1 -t d
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3055" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-72"
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open" "MuiVerb" "@%ProgramFiles%\Windows Photo Viewer\photoviewer.dll,-3043" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Gif\DefaultIcon"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\command"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\DropTarget"
sp "HKCR:\PhotoViewer.FileAssoc.Gif" "ImageOptionFlags" 1 -t d
sp "HKCR:\PhotoViewer.FileAssoc.Gif" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3057" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Gif\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-83"
sp "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Png\DefaultIcon"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\command"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\DropTarget"
sp "HKCR:\PhotoViewer.FileAssoc.Png" "ImageOptionFlags" 1 -t d
sp "HKCR:\PhotoViewer.FileAssoc.Png" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3057" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Png\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-71"
sp "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Wdp\DefaultIcon"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\command"
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\DropTarget"
sp "HKCR:\PhotoViewer.FileAssoc.Wdp" "EditFlags" 0x10000 -t d
sp "HKCR:\PhotoViewer.FileAssoc.Wdp" "ImageOptionFlags" 1 -t d
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-400"
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open" "MuiVerb" "@%ProgramFiles%\Windows Photo Viewer\photoviewer.dll,-3043" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

mkdir -Force "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities" "ApplicationDescription" "@%ProgramFiles%\\Windows Photo Viewer\\photoviewer.dll,-3069"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities" "ApplicationName" "@%ProgramFiles%\\Windows Photo Viewer\\photoviewer.dll,-3009"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jpg" "PhotoViewer.FileAssoc.Jpeg"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".wdp" "PhotoViewer.FileAssoc.Wdp"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jfif" "PhotoViewer.FileAssoc.JFIF"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".dib" "PhotoViewer.FileAssoc.Bitmap"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".png" "PhotoViewer.FileAssoc.Png"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jxr" "PhotoViewer.FileAssoc.Wdp"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".bmp" "PhotoViewer.FileAssoc.Bitmap"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jpe" "PhotoViewer.FileAssoc.Jpeg"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jpeg" "PhotoViewer.FileAssoc.Jpeg"
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".gif" "PhotoViewer.FileAssoc.Gif"
Binary file modified ShadesTweaker/bin/Debug/ShadesTweaker.exe
Binary file not shown.
Binary file modified ShadesTweaker/bin/Debug/ShadesTweaker.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions ShadesTweaker/bin/Debug/StringResources.de.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<system:String x:Key="disableCortanaToggle">Cortana deaktivieren</system:String>
<system:String x:Key="disableAppUpdatesToggle">Automatische App-Updates deaktivieren</system:String>
<system:String x:Key="disableSearchIndex">Indizierung deaktivieren</system:String>
<system:String x:Key="oldPhotoViewer">Betrachter für alte Fotos aktivieren</system:String>

<system:String x:Key="windowsServicesHeaderText">Windows Dienste</system:String>
<system:String x:Key="windowsServicesLabel">Windows Dienste</system:String>
Expand Down
3 changes: 2 additions & 1 deletion ShadesTweaker/bin/Debug/StringResources.en.xaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="tabItemTextGeneral">General</system:String>
Expand Down Expand Up @@ -72,6 +72,7 @@
<system:String x:Key="disableCortanaToggle">Disable Cortana</system:String>
<system:String x:Key="disableAppUpdatesToggle">Disable Automatic App Updates</system:String>
<system:String x:Key="disableSearchIndex">Disable Search Indexing</system:String>
<system:String x:Key="oldPhotoViewer">Enable Old Photo Viewer</system:String>

<system:String x:Key="windowsServicesHeaderText"> Windows Services</system:String>
<system:String x:Key="windowsServicesLabel">Windows Services</system:String>
Expand Down
1 change: 1 addition & 0 deletions ShadesTweaker/bin/Debug/StringResources.es.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
<system:String x:Key="disableCortanaToggle">Deshabilitar Cortana</system:String>
<system:String x:Key="disableAppUpdatesToggle">Deshabilitar actualizaciones automáticas de aplicaciones</system:String>
<system:String x:Key="disableSearchIndex">Deshabilitar indexación de búsqueda</system:String>
<system:String x:Key="oldPhotoViewer">Activar el visor de fotos antiguas</system:String>

<system:String x:Key="windowsServicesHeaderText">Servicios de Windows</system:String>
<system:String x:Key="windowsServicesLabel">Servicios de Windows</system:String>
Expand Down
1 change: 1 addition & 0 deletions ShadesTweaker/bin/Debug/StringResources.tr.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<system:String x:Key="disableCortanaToggle">Cortana'yı Kapat</system:String>
<system:String x:Key="disableAppUpdatesToggle">Otomatik Uygulama Güncellemelerini Kapat</system:String>
<system:String x:Key="disableSearchIndex">Arama Dizine Eklemeyi Kapat</system:String>
<system:String x:Key="oldPhotoViewer">Eski fotoğraf görüntüleyicisini geri yükle</system:String>

<system:String x:Key="windowsServicesHeaderText"> Windows Hizmetleri</system:String>
<system:String x:Key="windowsServicesLabel">Windows Hizmetleri</system:String>
Expand Down
Binary file modified ShadesTweaker/bin/Debug/System.Drawing.Common.dll
Binary file not shown.
Loading

0 comments on commit 39ecac6

Please sign in to comment.