Skip to content

Commit 39ecac6

Browse files
committed
👍
1 parent 1986b1b commit 39ecac6

File tree

92 files changed

+6795
-23845
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+6795
-23845
lines changed
Binary file not shown.
Binary file not shown.

.vs/ShadesTweaker/v17/.suo

7 KB
Binary file not shown.

ShadesTweaker/MainWindow.xaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:rs="clr-namespace:ShadesTweaker.Properties"
6-
MinWidth="1300" MinHeight="650"
6+
MinWidth="1400" MinHeight="650"
77
ResizeMode="NoResize"
88
WindowStartupLocation="CenterScreen"
99
ExtendsContentIntoTitleBar="True"
1010
WindowBackdropType="Auto"
1111
WindowCornerPreference="Round"
1212
WindowStyle="None">
1313
<Grid>
14-
<ui:TitleBar ShowClose="True" Title="Shades Tweaker v1.2" ShowMaximize="True" ShowHelp="False" ShowMinimize="True" CanMaximize="True" VerticalAlignment="Top" />
14+
<ui:TitleBar ShowClose="True" Title="Shades Tweaker v1.3" ShowMaximize="True" ShowHelp="False" ShowMinimize="True" CanMaximize="True" VerticalAlignment="Top" />
1515
<TabControl x:Name="myTabControl" Margin="0,42,0,0">
1616
<!-- Tab 1 -->
1717
<TabItem MaxWidth="175" MinWidth="175" FontSize="12">
@@ -56,7 +56,7 @@
5656
<ui:ToggleSwitch FontSize="12" x:Name="hibernationToggle" Content="{DynamicResource disableHibernationToggle}" Margin="0,10,0,0" Checked="hibernation_Checked" Unchecked="hibernation_Unchecked"/>
5757
<ui:ToggleSwitch FontSize="12" x:Name="ntfstimeToggle" Content="{DynamicResource disableNTFSLastAccessTimeToggle}" Margin="0,10,0,0" Checked="ntfstime_Checked" Unchecked="ntfstime_Unchecked"/>
5858
</StackPanel>
59-
<StackPanel Margin="-60,240,0,0" MaxWidth="420" MinWidth="420">
59+
<StackPanel Margin="-160,240,0,0" MaxWidth="420" MinWidth="420">
6060
<Label Foreground="#7F8487" Content="{DynamicResource contextMenuLabel}" />
6161
<ui:ToggleSwitch FontSize="12" x:Name="batToggle" Content="{DynamicResource addWindowsBatchFileToggle}" Margin="0,5,0,0" Checked="bat_Checked" Unchecked="bat_Unchecked"/>
6262
<ui:ToggleSwitch FontSize="12" x:Name="copypathToggle" Content="{DynamicResource addCopyAsPathToggle}" Margin="0,10,0,0" Checked="copypath_Checked" Unchecked="copypath_Unchecked"/>
@@ -105,6 +105,7 @@
105105
</Grid>
106106
</TabItem>
107107

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

134136
</StackPanel>
135137
<StackPanel Margin="15,0,0,0" MaxWidth="300" MinWidth="300" HorizontalAlignment="Left">
@@ -247,7 +249,7 @@
247249
</StackPanel>
248250
</WrapPanel>
249251
</TabItem>
250-
252+
251253
<!-- Tab 6 -->
252254
<TabItem MaxWidth="175" MinWidth="175" FontSize="12">
253255
<TabItem.Header>
@@ -319,5 +321,6 @@
319321
</TabItem>
320322

321323
</TabControl>
324+
322325
</Grid>
323326
</ui:UiWindow>

ShadesTweaker/MainWindow.xaml.cs

Lines changed: 78 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
using System;
44
using System.Collections.Generic;
55
using System.Diagnostics;
6-
using System.Globalization;
76
using System.IO;
87
using System.Linq;
98
using System.Reflection;
9+
using System.Security.Principal;
1010
using System.Threading.Tasks;
1111
using System.Windows;
1212
using System.Windows.Controls;
13-
using System.Windows.Media;
1413
using System.Xml.Linq;
1514
using Wpf.Ui.Controls;
1615

16+
1717
namespace ShadesTweaker
1818
{
1919
public partial class MainWindow : UiWindow
@@ -22,15 +22,36 @@ public MainWindow()
2222
{
2323
InitializeComponent();
2424
Loaded += (sender, args) =>
25+
{
26+
if (IsWindows11OrHigher())
27+
{
28+
SetAcrylicTheme();
29+
}
30+
else
31+
{
32+
SetTabbedTheme();
33+
}
34+
};
35+
}
36+
37+
private bool IsWindows11OrHigher()
2538
{
26-
Wpf.Ui.Appearance.Watcher.Watch(
27-
this, // Window class
28-
Wpf.Ui.Appearance.BackgroundType.Mica, // Background type
29-
true
30-
);
31-
};
39+
// Windows 11 version number: 10.0.22000
40+
Version win11Version = new Version(10, 0, 22000, 0);
41+
return Environment.OSVersion.Platform == PlatformID.Win32NT &&
42+
Environment.OSVersion.Version >= win11Version;
43+
}
3244

45+
private void SetAcrylicTheme()
46+
{
47+
Wpf.Ui.Appearance.Watcher.Watch(this, Wpf.Ui.Appearance.BackgroundType.Acrylic, true);
3348
}
49+
50+
private void SetTabbedTheme()
51+
{
52+
Wpf.Ui.Appearance.Watcher.Watch(this, Wpf.Ui.Appearance.BackgroundType.Tabbed, true);
53+
}
54+
3455
public class ToggleSwitchState
3556
{
3657
public string Name { get; set; }
@@ -1770,10 +1791,55 @@ private void GameRecording_Checked(object sender, RoutedEventArgs e)
17701791
private void GameRecording_Unchecked(object sender, RoutedEventArgs e)
17711792
{
17721793
RegHelper.SetValue(RegistryHive.LocalMachine, @"SOFTWARE\Policies\Microsoft\Windows\GameDVR", "AllowGameDVR", 1, RegistryValueKind.DWord);
1794+
1795+
}
1796+
1797+
1798+
// Old Photo Viewer
1799+
private void oldPhotoViewer_Checked(object sender, RoutedEventArgs e)
1800+
{
1801+
// Önce çalışma dizininin yolunu alalım
1802+
string currentDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
1803+
1804+
// Resources klasörü içindeki "photo-viewer.ps1" dosyasının tam yolunu oluşturalım
1805+
string ps1FilePath = Path.Combine(currentDirectory, "Resources", "photo-viewer.ps1");
1806+
1807+
// Eğer kullanıcı yönetici yetkisine sahipse, PowerShell betiğini gizli olarak çalıştıralım
1808+
if (IsAdministrator())
1809+
{
1810+
ProcessStartInfo psi = new ProcessStartInfo
1811+
{
1812+
FileName = "powershell.exe",
1813+
Arguments = $"-ExecutionPolicy Bypass -WindowStyle Hidden -File \"{ps1FilePath}\"",
1814+
Verb = "runas" // Yönetici yetkisiyle çalıştırma için
1815+
};
1816+
1817+
try
1818+
{
1819+
Process.Start(psi);
1820+
}
1821+
catch (Exception)
1822+
{
1823+
}
1824+
}
1825+
else
1826+
{
1827+
}
17731828
}
17741829

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

17761838

1839+
private void oldPhotoViewer_Unchecked(object sender, RoutedEventArgs e)
1840+
{
1841+
1842+
}
17771843

17781844

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

2261+
2262+
2263+
2264+
21952265
}
21962266
}

ShadesTweaker/ShadesTweaker.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
<Reference Include="System" />
4747
<Reference Include="System.Data" />
4848
<Reference Include="System.Drawing" />
49-
<Reference Include="System.Drawing.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
50-
<HintPath>..\packages\System.Drawing.Common.6.0.0\lib\net461\System.Drawing.Common.dll</HintPath>
49+
<Reference Include="System.Drawing.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
50+
<HintPath>..\packages\System.Drawing.Common.7.0.0\lib\net462\System.Drawing.Common.dll</HintPath>
5151
</Reference>
5252
<Reference Include="System.Xml" />
5353
<Reference Include="Microsoft.CSharp" />
@@ -61,8 +61,8 @@
6161
<Reference Include="WindowsBase" />
6262
<Reference Include="PresentationCore" />
6363
<Reference Include="PresentationFramework" />
64-
<Reference Include="Wpf.Ui, Version=2.0.3.0, Culture=neutral, processorArchitecture=MSIL">
65-
<HintPath>..\packages\WPF-UI.2.0.3\lib\net47\Wpf.Ui.dll</HintPath>
64+
<Reference Include="Wpf.Ui, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
65+
<HintPath>..\packages\WPF-UI.2.1.0\lib\net472\Wpf.Ui.dll</HintPath>
6666
</Reference>
6767
</ItemGroup>
6868
<ItemGroup>
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# Description
2+
# This script will restore Windows Photo Viewer.
3+
4+
Import-Module -DisableNameChecking $PSScriptRoot\..\lib\take-own.psm1
5+
6+
echo "Elevating priviledges for this process"
7+
do {} until (Elevate-Privileges SeTakeOwnershipPrivilege)
8+
9+
New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT
10+
11+
mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\open\command"
12+
mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\open\DropTarget"
13+
14+
mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\print\command"
15+
mkdir -Force "HKCR:\Applications\photoviewer.dll\shell\print\DropTarget"
16+
17+
cmd /c regsvr32 /s "%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll"
18+
19+
echo "Setting default Photo Viewer to Old Windows Photo Viewer"
20+
sp "HKCR:\Applications\photoviewer.dll\shell\open" "MuiVerb" "@photoviewer.dll,-3043"
21+
22+
sp "HKCR:\Applications\photoviewer.dll\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
23+
24+
sp "HKCR:\Applications\photoviewer.dll\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"
25+
26+
sp "HKCR:\Applications\photoviewer.dll\shell\print\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
27+
28+
sp "HKCR:\Applications\photoviewer.dll\shell\print\DropTarget]" "Clsid" "{60fd46de-f830-4894-a628-6fa81bc0190d}"
29+
30+
echo "Set default association for Photo Viewer"
31+
# cmd /c assoc /?
32+
# cmd /c ftype /?
33+
34+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Bitmap\DefaultIcon"
35+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\command"
36+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget"
37+
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap" "ImageOptionFlags" 1 -t d
38+
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3056" -t e
39+
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-70"
40+
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
41+
sp "HKCR:\PhotoViewer.FileAssoc.Bitmap\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"
42+
43+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.JFIF\DefaultIcon"
44+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\command"
45+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\DropTarget"
46+
sp "HKCR:\PhotoViewer.FileAssoc.JFIF" "EditFlags" 0x10000 -t d
47+
sp "HKCR:\PhotoViewer.FileAssoc.JFIF" "ImageOptionFlags" 1 -t d
48+
sp "HKCR:\PhotoViewer.FileAssoc.JFIF" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3055" -t e
49+
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-72"
50+
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open" "MuiVerb" "@%ProgramFiles%\Windows Photo Viewer\photoviewer.dll,-3043" -t e
51+
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
52+
sp "HKCR:\PhotoViewer.FileAssoc.JFIF\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"
53+
54+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Jpeg\DefaultIcon"
55+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\command"
56+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\DropTarget"
57+
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg" "EditFlags" 0x10000 -t d
58+
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg" "ImageOptionFlags" 1 -t d
59+
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3055" -t e
60+
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-72"
61+
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open" "MuiVerb" "@%ProgramFiles%\Windows Photo Viewer\photoviewer.dll,-3043" -t e
62+
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
63+
sp "HKCR:\PhotoViewer.FileAssoc.Jpeg\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"
64+
65+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Gif\DefaultIcon"
66+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\command"
67+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\DropTarget"
68+
sp "HKCR:\PhotoViewer.FileAssoc.Gif" "ImageOptionFlags" 1 -t d
69+
sp "HKCR:\PhotoViewer.FileAssoc.Gif" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3057" -t e
70+
sp "HKCR:\PhotoViewer.FileAssoc.Gif\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-83"
71+
sp "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
72+
sp "HKCR:\PhotoViewer.FileAssoc.Gif\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"
73+
74+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Png\DefaultIcon"
75+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\command"
76+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\DropTarget"
77+
sp "HKCR:\PhotoViewer.FileAssoc.Png" "ImageOptionFlags" 1 -t d
78+
sp "HKCR:\PhotoViewer.FileAssoc.Png" "FriendlyTypeName" "@%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll,-3057" -t e
79+
sp "HKCR:\PhotoViewer.FileAssoc.Png\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-71"
80+
sp "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
81+
sp "HKCR:\PhotoViewer.FileAssoc.Png\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"
82+
83+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Wdp\DefaultIcon"
84+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\command"
85+
mkdir -Force "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\DropTarget"
86+
sp "HKCR:\PhotoViewer.FileAssoc.Wdp" "EditFlags" 0x10000 -t d
87+
sp "HKCR:\PhotoViewer.FileAssoc.Wdp" "ImageOptionFlags" 1 -t d
88+
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\DefaultIcon" '(default)' "%SystemRoot%\System32\imageres.dll,-400"
89+
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open" "MuiVerb" "@%ProgramFiles%\Windows Photo Viewer\photoviewer.dll,-3043" -t e
90+
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\command" '(default)' "%SystemRoot%\System32\rundll32.exe `"%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll`", ImageView_Fullscreen %1" -t e
91+
sp "HKCR:\PhotoViewer.FileAssoc.Wdp\shell\open\DropTarget" "Clsid" "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"
92+
93+
mkdir -Force "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations"
94+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities" "ApplicationDescription" "@%ProgramFiles%\\Windows Photo Viewer\\photoviewer.dll,-3069"
95+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities" "ApplicationName" "@%ProgramFiles%\\Windows Photo Viewer\\photoviewer.dll,-3009"
96+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jpg" "PhotoViewer.FileAssoc.Jpeg"
97+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".wdp" "PhotoViewer.FileAssoc.Wdp"
98+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jfif" "PhotoViewer.FileAssoc.JFIF"
99+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".dib" "PhotoViewer.FileAssoc.Bitmap"
100+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".png" "PhotoViewer.FileAssoc.Png"
101+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jxr" "PhotoViewer.FileAssoc.Wdp"
102+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".bmp" "PhotoViewer.FileAssoc.Bitmap"
103+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jpe" "PhotoViewer.FileAssoc.Jpeg"
104+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".jpeg" "PhotoViewer.FileAssoc.Jpeg"
105+
sp "HKLM:\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" ".gif" "PhotoViewer.FileAssoc.Gif"
1 KB
Binary file not shown.
2 KB
Binary file not shown.

ShadesTweaker/bin/Debug/StringResources.de.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
<system:String x:Key="disableCortanaToggle">Cortana deaktivieren</system:String>
7575
<system:String x:Key="disableAppUpdatesToggle">Automatische App-Updates deaktivieren</system:String>
7676
<system:String x:Key="disableSearchIndex">Indizierung deaktivieren</system:String>
77+
<system:String x:Key="oldPhotoViewer">Betrachter für alte Fotos aktivieren</system:String>
7778

7879
<system:String x:Key="windowsServicesHeaderText">Windows Dienste</system:String>
7980
<system:String x:Key="windowsServicesLabel">Windows Dienste</system:String>

ShadesTweaker/bin/Debug/StringResources.en.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
1+
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
22
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
33
xmlns:system="clr-namespace:System;assembly=mscorlib">
44
<system:String x:Key="tabItemTextGeneral">General</system:String>
@@ -72,6 +72,7 @@
7272
<system:String x:Key="disableCortanaToggle">Disable Cortana</system:String>
7373
<system:String x:Key="disableAppUpdatesToggle">Disable Automatic App Updates</system:String>
7474
<system:String x:Key="disableSearchIndex">Disable Search Indexing</system:String>
75+
<system:String x:Key="oldPhotoViewer">Enable Old Photo Viewer</system:String>
7576

7677
<system:String x:Key="windowsServicesHeaderText"> Windows Services</system:String>
7778
<system:String x:Key="windowsServicesLabel">Windows Services</system:String>

ShadesTweaker/bin/Debug/StringResources.es.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
<system:String x:Key="disableCortanaToggle">Deshabilitar Cortana</system:String>
7373
<system:String x:Key="disableAppUpdatesToggle">Deshabilitar actualizaciones automáticas de aplicaciones</system:String>
7474
<system:String x:Key="disableSearchIndex">Deshabilitar indexación de búsqueda</system:String>
75+
<system:String x:Key="oldPhotoViewer">Activar el visor de fotos antiguas</system:String>
7576

7677
<system:String x:Key="windowsServicesHeaderText">Servicios de Windows</system:String>
7778
<system:String x:Key="windowsServicesLabel">Servicios de Windows</system:String>

ShadesTweaker/bin/Debug/StringResources.tr.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
<system:String x:Key="disableCortanaToggle">Cortana'yı Kapat</system:String>
7575
<system:String x:Key="disableAppUpdatesToggle">Otomatik Uygulama Güncellemelerini Kapat</system:String>
7676
<system:String x:Key="disableSearchIndex">Arama Dizine Eklemeyi Kapat</system:String>
77+
<system:String x:Key="oldPhotoViewer">Eski fotoğraf görüntüleyicisini geri yükle</system:String>
7778

7879
<system:String x:Key="windowsServicesHeaderText"> Windows Hizmetleri</system:String>
7980
<system:String x:Key="windowsServicesLabel">Windows Hizmetleri</system:String>
-496 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)