diff --git a/Saku Overclock/FastWPF.DesignerSettings b/Saku Overclock/FastWPF.DesignerSettings new file mode 100644 index 0000000..99d1c3a --- /dev/null +++ b/Saku Overclock/FastWPF.DesignerSettings @@ -0,0 +1 @@ +{"DesignerProperties":true,"RelativeApplicationResourcePath":"App.xaml","Platform":"x64","IsEnabled":true} \ No newline at end of file diff --git a/Saku Overclock/MainWindow.xaml b/Saku Overclock/MainWindow.xaml index 86273e7..0d1c430 100644 --- a/Saku Overclock/MainWindow.xaml +++ b/Saku Overclock/MainWindow.xaml @@ -6,7 +6,6 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:windowex="using:WinUIEx" - xmlns:tb="using:H.NotifyIcon" MinWidth="967" MinHeight="500" PersistenceId="MainWindow" diff --git a/Saku Overclock/MainWindow.xaml.cs b/Saku Overclock/MainWindow.xaml.cs index 2e9b533..d08b777 100644 --- a/Saku Overclock/MainWindow.xaml.cs +++ b/Saku Overclock/MainWindow.xaml.cs @@ -55,7 +55,7 @@ public MainWindow() ConfigLoad(); AppWindow.SetIcon(Path.Combine(AppContext.BaseDirectory, "Assets/WindowIcon.ico")); Content = null; - Title = "AppDisplayName".GetLocalized(); + Title = "AppDisplayName".GetLocalized(); NotifyIcon ni = new NotifyIcon(); ni.Icon = new System.Drawing.Icon(GetType(),"WindowIcon.ico"); ni.Visible = true; @@ -94,6 +94,22 @@ public MainWindow() DeviceLoad(); ProfileLoad(); Tray_Start(); + Set_Blue(); + } + private async void Set_Blue() + { + await Task.Delay(120); + if (config.bluetheme == true) + { + if (App.MainWindow.Content is FrameworkElement rootElement) + { + rootElement.RequestedTheme = ElementTheme.Dark; + TitleBarHelper.UpdateTitleBar(ElementTheme.Dark); + } + Microsoft.UI.Xaml.Media.MicaBackdrop micaBackdrop = new Microsoft.UI.Xaml.Media.MicaBackdrop(); + micaBackdrop.Kind = Microsoft.UI.Composition.SystemBackdrops.MicaKind.BaseAlt; + App.MainWindow.SystemBackdrop = micaBackdrop; + } } private async void Tray_Start() { @@ -163,7 +179,7 @@ void ConfigSave() if (mc.config.reapplytime == true) { - DispatcherTimer timer = new DispatcherTimer(); + var timer = new DispatcherTimer(); try { timer.Interval = TimeSpan.FromMilliseconds(mc.config.reapplytimer * 1000); @@ -191,8 +207,15 @@ void ConfigSave() else { timer.Stop(); - mc.config.execute = false; - ConfigSave(); + timer.Tick += (sender, e) => + { + if (mc.config.reapplytime == true) + { + // Запустите ryzenadj снова + Process(); + } + }; + timer.Start(); } } @@ -202,6 +225,7 @@ void ConfigSave() } void Process() { + ConfigLoad(); Process p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.FileName = @"ryzenadj.exe"; @@ -303,79 +327,6 @@ void Process() line = null; } } - - /*public static void GetInfo() - { - var mc = new Applyer(); - void ConfigLoad() - { - mc.config = JsonConvert.DeserializeObject(File.ReadAllText(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "\\SakuOverclock\\config.json")); - } - void ConfigSave() - { - Directory.CreateDirectory(System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "SakuOverclock")); - File.WriteAllText(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "\\SakuOverclock\\config.json", JsonConvert.SerializeObject(mc.config)); - } - - ConfigLoad(); - ConfigLoad(); - if (mc.config.fanex == true) - { - mc.config.fan1v = ""; - mc.config.fan2v = ""; - ConfigSave(); - Process p = new Process(); - p.StartInfo.UseShellExecute = false; - p.StartInfo.FileName = @"nbfc/nbfc.exe"; - p.StartInfo.Arguments = " status --fan 0"; - p.StartInfo.CreateNoWindow = true; - p.StartInfo.RedirectStandardError = true; - p.StartInfo.RedirectStandardInput = true; - p.StartInfo.RedirectStandardOutput = true; - p.Start(); - StreamReader outputWriter = p.StandardOutput; - var line = outputWriter.ReadLine(); - while (line != null) - { - - if (line != "") - { - mc.config.fan1v += line; - ConfigSave(); - } - - line = outputWriter.ReadLine(); - } - line = null; - //p.WaitForExit(); - //fan 2 - Process p1 = new Process(); - p1.StartInfo.UseShellExecute = false; - p1.StartInfo.FileName = @"nbfc/nbfc.exe"; - p1.StartInfo.Arguments = " status --fan 1"; - p1.StartInfo.CreateNoWindow = true; - p1.StartInfo.RedirectStandardError = true; - p1.StartInfo.RedirectStandardInput = true; - p1.StartInfo.RedirectStandardOutput = true; - - p1.Start(); - StreamReader outputWriter1 = p1.StandardOutput; - var line1 = outputWriter1.ReadLine(); - while (line1 != null) - { - - if (line1 != "") - { - mc.config.fan2v += line1; - ConfigSave(); - } - - line1 = outputWriter1.ReadLine(); - } - line1 = null; - //p1.WaitForExit(); - } - }*/ } // this handles updating the caption button colors correctly when indows system theme is changed diff --git a/Saku Overclock/Package.appxmanifest b/Saku Overclock/Package.appxmanifest index 21d1dd9..09738d8 100644 --- a/Saku Overclock/Package.appxmanifest +++ b/Saku Overclock/Package.appxmanifest @@ -13,7 +13,7 @@ + Version="1.0.6.0" /> @@ -37,8 +37,8 @@ Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$"> diff --git a/Saku Overclock/Saku Overclock.csproj b/Saku Overclock/Saku Overclock.csproj index fef67f8..0de75d6 100644 --- a/Saku Overclock/Saku Overclock.csproj +++ b/Saku Overclock/Saku Overclock.csproj @@ -15,6 +15,7 @@ true + true org.sakuoverclock.app False @@ -80,6 +81,7 @@ + @@ -742,6 +744,9 @@ Always + + Always + Always diff --git a/Saku Overclock/Services/ThemeSelectorService.cs b/Saku Overclock/Services/ThemeSelectorService.cs index 1a709db..bea4643 100644 --- a/Saku Overclock/Services/ThemeSelectorService.cs +++ b/Saku Overclock/Services/ThemeSelectorService.cs @@ -10,6 +10,11 @@ public class ThemeSelectorService : IThemeSelectorService private const string SettingsKey = "AppBackgroundRequestedTheme"; public ElementTheme Theme { get; set; } = ElementTheme.Default; + public ElementTheme Blue + { + get; + set; + } private readonly ILocalSettingsService _localSettingsService; diff --git a/Saku Overclock/Strings/en-us/Resources.resw b/Saku Overclock/Strings/en-us/Resources.resw index f31ab90..1977241 100644 --- a/Saku Overclock/Strings/en-us/Resources.resw +++ b/Saku Overclock/Strings/en-us/Resources.resw @@ -734,4 +734,189 @@ once Allows your CPU use Turbo boost state, can broke this settings + + That value will fix iGPU freq +This value will be reset after +rebooting +IT IS NOT RECOMMENDED TO TOUCH IT + + + That value will fix CPU freq +This value will be reset after +rebooting +IT IS NOT RECOMMENDED TO TOUCH IT + + + That value will fix CPU voltage +This value will be reset after +rebooting +IT IS NOT RECOMMENDED TO TOUCH IT + + + Processor operation mode, they +switch when charging is connected and +disconnected. If youre charging and turn +on Ultra, it won't do anything, since your +processor is already in this mode, +similar to battery life and +energy efficiency mode + + + You can limit the current consumption +of your integrated graphics card under +the influence of temperatures and load + + + You can limit the current consumption +of your Neural Processor Unit under +the influence of temperatures and load +(If you have it) + + + Responsible for the maximum current +consumed by the integrated +graphics + + + Responsible for the maximum current +consumed by the CPU +at PCI Express bus + + + Responsible for the maximum current +consumed by the all GPUs +at PCI Express bus +IT CAN'T BE LOWER THAN iGPU +Maximum EDC! + + + Maximum temperature +With this value, you can limit +the iGPU by temperature, above +this value it will not warm +up, trottling will begin +This will ONLY work if you see +the temperature values on +the information page! + + + Maximum temperature +With this value, you can limit +the dGPU by temperature, above +this value it will not warm +up, trottling will begin +This will ONLY work if you see +the temperature values on +the information page! + + + This value is responsible for limiting +the power of your iGPU +This will ONLY work if you see +the temperature values on +the information page! + + + This value is responsible for limiting +the power of your Laptop +This will ONLY work on AMD APU + dGPU systems +if you see the temperature values on +the information page! + + + iGPU Maximum TDC (A) + + + Fixed iGPU freq (MHz) + + + Fixed CPU freq (MHz) + + + Fixed CPU voltage (mV) + + + Preferred mode + + + NPU Maximum TDC (A) + + + iGPU Maximum EDC (A) + + + CPU Maximum EDC (A) + + + GPU Maximum EDC (A) + + + iGPU Maximum temperature (C) + + + dGPU Maximum temperature (C) + + + iGPU Actual Power Limit (W) + + + Laptop Power Limit (W) + + + Experimental parameters for every Ryzen Renoir and up processors + + + Advanced CPU parameters + + + You have successfully set your settings + + + Сhanged successfully! + + + Set other name! + + + Add profile error + + + Keep auto + + + Don't change it!!! + + + You have successfully set your settings + + + Сhanged successfully! + + + You can't delete Unsaved profile! + + + Delete profile error + + + New name of your preset is set + + + Edited successfully! + + + Set other name! + + + Edit profile error + + + Blue + + + You can't rename Unsaved profile! + + + Edit profile error + \ No newline at end of file diff --git a/Saku Overclock/Strings/ru-ru/Resources.resw b/Saku Overclock/Strings/ru-ru/Resources.resw index 74b7bd7..f7789c8 100644 --- a/Saku Overclock/Strings/ru-ru/Resources.resw +++ b/Saku Overclock/Strings/ru-ru/Resources.resw @@ -752,4 +752,210 @@ Позволяет вашему процессору разгоняться сильнее, но вызывает проблемы + + Это значение зафиксирует частоту +iGPU на приблизительно указанной +После перезагрузки оно сбросится +если у вас не стоит автозагрузка и +авторазгон +НЕ РЕКОММЕНДУЕТСЯ ЕГО ТРОГАТЬ + + + Это значение зафиксирует частоту +CPU на приблизительно указанной +После перезагрузки оно сбросится +если у вас не стоит автозагрузка и +авторазгон +НЕ РЕКОММЕНДУЕТСЯ ЕГО ТРОГАТЬ + + + Это значение зафиксирует напряжение +CPU на приблизительно указанное +После перезагрузки оно сбросится +если у вас не стоит автозагрузка и +авторазгон +НЕ РЕКОММЕНДУЕТСЯ ЕГО ТРОГАТЬ + + + Режим работы процессора, они +переключаются при подключении и +отключении зарядки. Если вы на +зарядке и включите Ультра, это +ничего не сделает, так как ваш +процессор уже в этом режиме, +аналогично с работой от батареи и +режимом энергоэффективности + + + Вы можете ограничить потребление +тока вашей встроенной видеокарты +под воздействием тепла и нагрузки + + + Вы можете ограничить потребление +тока вашего нейронного блока в +процессоре, при его наличии, +под воздействием тепла и нагрузки + + + Отвечает за максимальный ток +потребляемый интегрированной +графикой + + + Отвечает за максимальный ток +потребляемый процессором +по линии PCI Express + + + Отвечает за максимальный ток +потребляемый всеми GPU +по линии PCI Express +Он НЕ МОЖЕТ быть меньше +чем максимальный ток +Интегрированной графики! + + + Максимальная температура +Этим значением вы можете ограничить +iGPU по температуре, выше +этого значения он не будет греться +будет начинаться троттлинг +Это сработает ТОЛЬКО если вы видите +значения температуры на странице +информации! + + + Максимальная температура +Этим значением вы можете ограничить +dGPU по температуре, выше +этого значения он не будет греться +будет начинаться троттлинг +Это сработает ТОЛЬКО если вы видите +значения температуры на странице +информации! + + + Это значение ограничит iGPU +по теплопакету на то значение +которое вы установили. Выше этого +значения он не будет греться и +разгоняться +Это сработает ТОЛЬКО если вы видите +значения температуры на странице +информации! + + + Это значение ограничит систему +по теплопакету на то значение +которое вы установили. Выше этого +значения она не будет греться и +разгоняться. Это ограничение +AMD APU + AMD dGPU +Это сработает ТОЛЬКО если вы видите +значения температуры на странице +информации! + + + Лимит по току iGPU (A) + + + Зафиксировать частоту iGPU (MHz) + + + Зафиксировать частоту CPU (MHz) + + + Зафиксировать напряжение CPU (mV) + + + Предпочтительный режим + + + Лимит по току NPU (A) + + + Максимальный ток iGPU (A) + + + Максимальный ток CPU по линии PCI (A) + + + Максимальный ток GPU по линии PCI (A) + + + Максимальная температура iGPU (C) + + + Максимальная температура dGPU (C) + + + Лимит потребления iGPU (W) + + + Общий лимит потребления (W) + + + Экспериментальные параметры, работают на процессорах Реноир и выше + + + Расширенные параметры CPU + + + Вы успешно применили ваши настройки + + + Применение успешно! + + + Нельзя добавить больше 9 пресетов! + + + Ошибка добавления + + + Нельзя добавить пресет без имени! + + + Ошибка добавления + + + Автоматически + + + Не стоит менять!!! + + + Вы успешно применили разгон + + + Значения применены! + + + Нельзя удалить несохранённый пресет! + + + Ошибка удаления + + + Вы изменили имя пресета + + + Изменение успешно! + + + Установите правильное имя! + + + Ошибка изменения + + + Тёмно-синяя + + + Нельзя изменить имя несохранённому пресету! + + + Ошибка изменения + \ No newline at end of file diff --git a/Saku Overclock/ViewModels/SettingsViewModel.cs b/Saku Overclock/ViewModels/SettingsViewModel.cs index 22b5837..383a393 100644 --- a/Saku Overclock/ViewModels/SettingsViewModel.cs +++ b/Saku Overclock/ViewModels/SettingsViewModel.cs @@ -27,6 +27,7 @@ public ICommand SwitchThemeCommand { get; } + public SettingsViewModel(IThemeSelectorService themeSelectorService) { diff --git a/Saku Overclock/Views/SettingsPage.xaml b/Saku Overclock/Views/SettingsPage.xaml index 8c1ec0f..20f934d 100644 --- a/Saku Overclock/Views/SettingsPage.xaml +++ b/Saku Overclock/Views/SettingsPage.xaml @@ -30,9 +30,11 @@ @@ -40,19 +42,32 @@ Dark + + + + diff --git a/Saku Overclock/Views/SettingsPage.xaml.cs b/Saku Overclock/Views/SettingsPage.xaml.cs index 139ccc0..2602831 100644 --- a/Saku Overclock/Views/SettingsPage.xaml.cs +++ b/Saku Overclock/Views/SettingsPage.xaml.cs @@ -1,10 +1,12 @@ -using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; using Newtonsoft.Json; +using Saku_Overclock.Helpers; using Saku_Overclock.ViewModels; namespace Saku_Overclock.Views; #pragma warning disable CS8604 // Возможно, аргумент-ссылка, допускающий значение NULL. #pragma warning disable CS8601 // Возможно, назначение-ссылка, допускающее значение NULL. -public sealed partial class SettingsPage : Page +public sealed partial class SettingsPage : Microsoft.UI.Xaml.Controls.Page { public SettingsViewModel ViewModel { @@ -13,6 +15,7 @@ public SettingsViewModel ViewModel private Config config = new(); private Devices devices = new(); private Profile profile = new(); + private bool relay = true; public SettingsPage() { @@ -26,14 +29,20 @@ public SettingsPage() config.tempex = false; ConfigSave(); } - private void InitVal() + private async void InitVal() { + if (config.bluetheme == true) { Blue_sel.IsChecked = true; Dark_sel.IsChecked = false; Light_sel.IsChecked = false; Default_sel.IsChecked = false; } if (config.autostart == true) { CbStartBoot.IsChecked = true; } if (config.traystart == true) { CbStartMini.IsChecked = true; } if (config.autooverclock == true) { CbApplyStart.IsChecked = true; } if (config.reapplytime == true) { CbAutoReapply.IsChecked = true; nudAutoReapply.Value = config.reapplytimer; } if (config.autoupdates == true) { CbAutoCheck.IsChecked = true; } - + relay = false; + await Task.Delay(390); + if (Blue_sel.IsChecked == false && Dark_sel.IsChecked == false && Light_sel.IsChecked == false && Default_sel.IsChecked == false) + { + Blue_sel.IsChecked = true; + } } private void cbStartBoot_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { @@ -149,6 +158,61 @@ private async void nudAutoReapply_ValueChanged(NumberBox sender, NumberBoxValueC await Task.Delay(20); config.reapplytime = true; config.reapplytimer = nudAutoReapply.Value; ConfigSave(); } + + private async void Blue_sel_Checked(object sender, RoutedEventArgs e) + { + await Task.Delay(230); + config.bluetheme = true; + ConfigSave(); + if (App.MainWindow.Content is FrameworkElement rootElement) + { + rootElement.RequestedTheme = ElementTheme.Dark; + TitleBarHelper.UpdateTitleBar(ElementTheme.Dark); + } + Microsoft.UI.Xaml.Media.MicaBackdrop micaBackdrop = new Microsoft.UI.Xaml.Media.MicaBackdrop(); + micaBackdrop.Kind = Microsoft.UI.Composition.SystemBackdrops.MicaKind.BaseAlt; + App.MainWindow.SystemBackdrop = micaBackdrop; + Dark_sel.IsChecked = false; Light_sel.IsChecked = false; Default_sel.IsChecked = false; + } + + private void Default_sel_Checked(object sender, RoutedEventArgs e) + { + if (relay == false) + { + Blue_sel.IsChecked = false; + config.bluetheme = false; + ConfigSave(); + Microsoft.UI.Xaml.Media.MicaBackdrop micaBackdrop = new Microsoft.UI.Xaml.Media.MicaBackdrop(); + micaBackdrop.Kind = Microsoft.UI.Composition.SystemBackdrops.MicaKind.Base; + App.MainWindow.SystemBackdrop = micaBackdrop; + } + } + + private void Dark_sel_Checked(object sender, RoutedEventArgs e) + { + if (relay == false) + { + Blue_sel.IsChecked = false; + config.bluetheme = false; + ConfigSave(); + Microsoft.UI.Xaml.Media.MicaBackdrop micaBackdrop = new Microsoft.UI.Xaml.Media.MicaBackdrop(); + micaBackdrop.Kind = Microsoft.UI.Composition.SystemBackdrops.MicaKind.Base; + App.MainWindow.SystemBackdrop = micaBackdrop; + } + } + + private void Light_sel_Checked(object sender, RoutedEventArgs e) + { + if (relay == false) + { + Blue_sel.IsChecked = false; + config.bluetheme = false; + ConfigSave(); + Microsoft.UI.Xaml.Media.MicaBackdrop micaBackdrop = new Microsoft.UI.Xaml.Media.MicaBackdrop(); + micaBackdrop.Kind = Microsoft.UI.Composition.SystemBackdrops.MicaKind.Base; + App.MainWindow.SystemBackdrop = micaBackdrop; + } + } #pragma warning restore CS8604 // Возможно, аргумент-ссылка, допускающий значение NULL. #pragma warning restore CS8601 // Возможно, назначение-ссылка, допускающее значение NULL. } diff --git "a/Saku Overclock/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" "b/Saku Overclock/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" index 0e94243..889102f 100644 --- "a/Saku Overclock/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" +++ "b/Saku Overclock/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" @@ -3,7 +3,7 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:ABI.Microsoft.UI.Xaml.Controls" xmlns:emit="using:System.Reflection.Emit" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:ABI.Microsoft.UI.Xaml.Controls" xmlns:emit="using:System.Reflection.Emit" mc:Ignorable="d"> - - - + + diff --git "a/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" "b/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" index a404df3..4538b6c 100644 --- "a/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" +++ "b/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" @@ -9,26 +9,112 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Processor + Producer + Codename + Caption + Cores + Threads + Base Clock + L1 Cache + L2 Cache + L3 Cache + Instructions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - diff --git "a/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml.cs" "b/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml.cs" index 135d171..9e9cbf2 100644 --- "a/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml.cs" +++ "b/Saku Overclock/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml.cs" @@ -1,5 +1,5 @@ using System.Diagnostics; -using Microsoft.UI.Xaml; +using System.Management; using Microsoft.UI.Xaml.Controls; using Newtonsoft.Json; using Saku_Overclock.ViewModels; @@ -12,7 +12,7 @@ namespace Saku_Overclock.Views; public sealed partial class ИнформацияPage : Page { private Config config = new(); - private DispatcherTimer timer = new(); + public double refreshtime; public ИнформацияViewModel ViewModel { get; @@ -25,10 +25,15 @@ public ИнформацияPage() ConfigLoad(); InitInf(); config.fanex = false; + if (config.reapplyinfo == false) { Process(); } ConfigSave(); + // Инициализация таймера + getCPUInfo(); } - public void InitInf() + + public async void InitInf() { + await Task.Delay(200); ConfigLoad(); if (config.reapplyinfo == true) { Absc.IsChecked = true; } else { Absc.IsChecked = false; } } @@ -65,9 +70,26 @@ private void desc() DescText.Opacity = 1; } } - private void xx_Click(object sender, RoutedEventArgs e) + private void xx_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + config.tempex = true; + Absc.IsChecked = false; + ConfigSave(); + Check_Info(); + } + private async void Check_Info() + { + if (config.tempex == true) + { + Process(); + await Task.Delay(20); + if (Absc.IsChecked == true) { try { await Task.Delay((int)refreshtime); } catch { refreshtime = 100; numberBox.Value = 100; await Task.Delay((int)refreshtime); } Check_Info(); } + } + } + private void Process() { richTextBox1.Text = ""; + richTextBox2.Text = ""; Process p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.FileName = @"ryzenadj.exe"; @@ -76,22 +98,74 @@ private void xx_Click(object sender, RoutedEventArgs e) p.StartInfo.RedirectStandardError = true; p.StartInfo.RedirectStandardInput = true; p.StartInfo.RedirectStandardOutput = true; - p.Start(); - StreamReader outputWriter = p.StandardOutput; - var line = outputWriter.ReadLine(); - while (line != null) + ConfigLoad(); + if (config.tempex == true) { - if (line != "") + p.Start(); + config.tempex = false; + StreamReader outputWriter = p.StandardOutput; + var line = outputWriter.ReadLine(); + while (line != null) { - richTextBox1.Text = richTextBox1.Text + "\n" + line; - DescText.Opacity = 1; + if (line != "") + { + richTextBox1.Text = richTextBox1.Text + "\n" + line; + if (line.Contains("CPU Family:") || line.Contains("SMU BIOS Interface") || line.Contains("Version:") || line.Contains("PM Table") || line.Contains("Name ") || line.Contains("|----") ) { } + else + { + if (line.Contains("STAPM VALUE")) + { + richTextBox2.Text = richTextBox2.Text + "\n" + line + " - Лимит CPU (W), Текущее значение"; + richTextBox2.Text = richTextBox2.Text.Replace("STAPM VALUE", ""); + } + else + { + richTextBox2.Text = richTextBox2.Text + "\n" + line; + } + richTextBox2.Text = richTextBox2.Text.Replace("|", ""); + richTextBox2.Text = richTextBox2.Text.Replace("STAPM LIMIT", ""); + richTextBox2.Text = richTextBox2.Text.Replace("PPT LIMIT FAST ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("PPT LIMIT SLOW ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("StapmTimeConst ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("SlowPPTTimeConst ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("TDC LIMIT VDD ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("EDC LIMIT VDD ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("TDC LIMIT SOC ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("EDC LIMIT SOC ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("THM LIMIT CORE ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("STT LIMIT APU ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("PPT LIMIT APU ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("STT LIMIT dGPU", ""); + richTextBox2.Text = richTextBox2.Text.Replace("CCLK Boost SETPOINT", ""); + richTextBox2.Text = richTextBox2.Text.Replace("CCLK BUSY VALUE", ""); + richTextBox2.Text = richTextBox2.Text.Replace(" ", ""); + richTextBox2.Text = richTextBox2.Text.Replace("stapm-limit", " - Лимит CPU (W), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("fast-limit", " - Реальный CPU (W), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("apu-slow-limit", " - Мощность APU (W), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("slow-limit", " - Средний CPU (W), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("stapm-time", " - Тик быстрого разгона (S)"); + richTextBox2.Text = richTextBox2.Text.Replace("slow-time", " - Тик медленного разгона (S)"); + richTextBox2.Text = richTextBox2.Text.Replace("vrm-current", " - Лимит по току VRM (A), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("vrmsoc-current", " - Лимит по току SoC (A), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("vrmmax-current", " - Максимальный ток VRM (A), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("vrmsocmax-current", " - Максимальный ток SoC (A), Установленное значение"); + richTextBox2.Text = richTextBox2.Text.Replace("tctl-temp", " - Максимальная температура CPU (C)"); + richTextBox2.Text = richTextBox2.Text.Replace("apu-skin-temp", " - Максимальная температура iGPU (C)"); + richTextBox2.Text = richTextBox2.Text.Replace("dgpu-skin-temp", " - Максимальная температура dGPU (C)"); + richTextBox2.Text = richTextBox2.Text.Replace("power-saving /", " - Процент начала троттлинга (% Загрузки CPU)"); + richTextBox2.Text = richTextBox2.Text.Replace("max-performance", " - Текущая загрузка процессора (%)"); + } + richTextBox1.Text = richTextBox1.Text.Replace("nan", "✕ "); + DescText.Opacity = 1; + } + line = outputWriter.ReadLine(); } - line = outputWriter.ReadLine(); + p.WaitForExit(); + line = null; } - p.WaitForExit(); - line = null; + config.tempex = true; } - private async void CheckBox_Checked(object sender, RoutedEventArgs e) + private async void CheckBox_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { await Task.Delay(20); if (Absc.IsChecked == true) { config.reapplyinfo = true; ConfigSave(); } else { config.reapplyinfo = false; ConfigSave(); } @@ -99,60 +173,101 @@ private async void CheckBox_Checked(object sender, RoutedEventArgs e) // Обновите Textblock и скрипт через заданный интервал времени try { - timer.Interval = TimeSpan.FromMilliseconds(numberBox.Value); + refreshtime = numberBox.Value; } catch { App.MainWindow.ShowMessageDialogAsync("Время автообновления информации некорректно и было исправлено на 100 мс", "Критическая ошибка!"); numberBox.Value = 100; - timer.Interval = TimeSpan.FromMilliseconds(numberBox.Value); } - ConfigLoad(); config.tempex = true; ConfigSave(); - timer.Tick += (sender, e) => - { - if (Absc.IsChecked == true) - { - // Запустите ryzenadj снова - Process(); - } + Check_Info(); + } - }; - timer.Start(); + private void numberBox_ValueChanged(NumberBox sender, NumberBoxValueChangedEventArgs args) + { + refreshtime = numberBox.Value; + config.tempex = false; + Absc.IsChecked = false; + config.tempex = true; + Absc.IsChecked = true; } - private void Process() + //AI Gen + private async void getCPUInfo() { - if (config.tempex == true) + try { - richTextBox1.Text = ""; - Process p = new Process(); - p.StartInfo.UseShellExecute = false; - p.StartInfo.FileName = @"ryzenadj.exe"; - p.StartInfo.Arguments = "-i"; - p.StartInfo.CreateNoWindow = true; - p.StartInfo.RedirectStandardError = true; - p.StartInfo.RedirectStandardInput = true; - p.StartInfo.RedirectStandardOutput = true; - p.Start(); - StreamReader outputWriter = p.StandardOutput; - var errorReader = p.StandardError.ReadToEnd(); - var line = outputWriter.ReadLine(); - while (line != null) + sdCPU.Visibility = Microsoft.UI.Xaml.Visibility.Collapsed; + // CPU information using WMI + ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM Win32_Processor"); + + string name = ""; + string description = ""; + string manufacturer = ""; + int numberOfCores = 0; + int numberOfLogicalProcessors = 0; + double l2Size = 0; + double l3Size = 0; + string baseClock = ""; + + await Task.Run(() => { - if (line != "") + foreach (ManagementObject queryObj in searcher.Get()) { - richTextBox1.Text = richTextBox1.Text + "\n" + line; - DescText.Opacity = 1; + name = queryObj["Name"].ToString(); + description = queryObj["Description"].ToString(); + manufacturer = queryObj["Manufacturer"].ToString(); + numberOfCores = Convert.ToInt32(queryObj["NumberOfCores"]); + numberOfLogicalProcessors = Convert.ToInt32(queryObj["NumberOfLogicalProcessors"]); + l2Size = Convert.ToDouble(queryObj["L2CacheSize"]) / 1024; + l3Size = Convert.ToDouble(queryObj["L3CacheSize"]) / 1024; + baseClock = queryObj["MaxClockSpeed"].ToString(); } - line = outputWriter.ReadLine(); + }); + + tbProcessor.Text = name; + tbCaption.Text = description; + //string codeName = GetSystemInfo.Codename(); + /*if (codeName != "") tbCodename.Text = codeName; + else + { + tbCodename.Visibility = Microsoft.UI.Xaml.Visibility.Collapsed; + tbCode.Visibility = Microsoft.UI.Xaml.Visibility.Collapsed; } - p.WaitForExit(); - line = null; +*/ + tbProducer.Text = manufacturer; + if (numberOfLogicalProcessors == numberOfCores) tbCores.Text = numberOfCores.ToString(); + //else tbCores.Text = GetSystemInfo.getBigLITTLE(numberOfCores, l2Size); + tbThreads.Text = numberOfLogicalProcessors.ToString(); + tbL3Cache.Text = $"{l3Size.ToString("0.##")} MB"; + + uint sum = 0; + //foreach (uint number in GetSystemInfo.GetCacheSizes(CacheLevel.Level1)) sum += number; + decimal total = sum; + total = total / 1024; + tbL1Cache.Text = $"{total.ToString("0.##")} MB"; + + sum = 0; + //foreach (uint number in GetSystemInfo.GetCacheSizes(CacheLevel.Level2)) sum += number; + total = sum; + total = total / 1024; + tbL2Cache.Text = $"{total.ToString("0.##")} MB"; + + tbBaseClock.Text = $"{baseClock} MHz"; + + //tbInstructions.Text = GetSystemInfo.InstructionSets(); + + sdCPU.Visibility = Microsoft.UI.Xaml.Visibility.Visible; + } + catch (ManagementException ex) + { + Console.WriteLine("An error occurred while querying for WMI data: " + ex.Message); } - else { timer.Stop(); } } } + + #pragma warning restore IDE0059 // Ненужное присваивание значения #pragma warning restore CS8600 // Преобразование литерала, допускающего значение NULL или возможного значения NULL в тип, не допускающий значение NULL. #pragma warning restore CS4014 // Так как этот вызов не ожидается, выполнение существующего метода продолжается до тех пор, пока вызов не будет завершен diff --git "a/Saku Overclock/Views/\320\232\321\203\320\273\320\265\321\200Page.xaml.cs" "b/Saku Overclock/Views/\320\232\321\203\320\273\320\265\321\200Page.xaml.cs" index 6cbcc15..530361b 100644 --- "a/Saku Overclock/Views/\320\232\321\203\320\273\320\265\321\200Page.xaml.cs" +++ "b/Saku Overclock/Views/\320\232\321\203\320\273\320\265\321\200Page.xaml.cs" @@ -1027,132 +1027,136 @@ public void GetInfo0() } public async void Process() { - CancellationTokenSource cancelTokenSource = new CancellationTokenSource(); - CancellationToken token = cancelTokenSource.Token; - ConfigLoad(); - if (config.fanex == true) + if (Readon.IsChecked == true || Enabl.IsChecked == true) { - config.fan1v = ""; - config.fan2v = ""; - ConfigSave(); - await Task.Run(() => { - Process p = new Process(); - p.StartInfo.UseShellExecute = false; - p.StartInfo.FileName = @"nbfc/nbfc.exe"; - p.StartInfo.Arguments = " status --fan 0"; - p.StartInfo.CreateNoWindow = true; - p.StartInfo.RedirectStandardError = true; - p.StartInfo.RedirectStandardInput = true; - p.StartInfo.RedirectStandardOutput = true; - p.Start(); - StreamReader outputWriter = p.StandardOutput; - var line = outputWriter.ReadLine(); - while (line != null) - { - - if (line != "") + CancellationTokenSource cancelTokenSource = new CancellationTokenSource(); + CancellationToken token = cancelTokenSource.Token; + ConfigLoad(); + if (config.fanex == true) + { + config.fan1v = ""; + config.fan2v = ""; + ConfigSave(); + await Task.Run(() => { + Process p = new Process(); + p.StartInfo.UseShellExecute = false; + p.StartInfo.FileName = @"nbfc/nbfc.exe"; + p.StartInfo.Arguments = " status --fan 0"; + p.StartInfo.CreateNoWindow = true; + p.StartInfo.RedirectStandardError = true; + p.StartInfo.RedirectStandardInput = true; + p.StartInfo.RedirectStandardOutput = true; + p.Start(); + StreamReader outputWriter = p.StandardOutput; + var line = outputWriter.ReadLine(); + while (line != null) { - config.fan1v += line; - ConfigSave(); - } - line = outputWriter.ReadLine(); - } - line = null; - p.WaitForExit(); + if (line != "") + { + config.fan1v += line; + ConfigSave(); + } - //fan 2 - Process p1 = new Process(); - p1.StartInfo.UseShellExecute = false; - p1.StartInfo.FileName = @"nbfc/nbfc.exe"; - p1.StartInfo.Arguments = " status --fan 1"; - p1.StartInfo.CreateNoWindow = true; - p1.StartInfo.RedirectStandardError = true; - p1.StartInfo.RedirectStandardInput = true; - p1.StartInfo.RedirectStandardOutput = true; + line = outputWriter.ReadLine(); + } + line = null; + p.WaitForExit(); - p1.Start(); - StreamReader outputWriter1 = p1.StandardOutput; - var line1 = outputWriter1.ReadLine(); - while (line1 != null) - { + //fan 2 + Process p1 = new Process(); + p1.StartInfo.UseShellExecute = false; + p1.StartInfo.FileName = @"nbfc/nbfc.exe"; + p1.StartInfo.Arguments = " status --fan 1"; + p1.StartInfo.CreateNoWindow = true; + p1.StartInfo.RedirectStandardError = true; + p1.StartInfo.RedirectStandardInput = true; + p1.StartInfo.RedirectStandardOutput = true; - if (line1 != "") + p1.Start(); + StreamReader outputWriter1 = p1.StandardOutput; + var line1 = outputWriter1.ReadLine(); + while (line1 != null) { - config.fan2v += line1; - ConfigSave(); + + if (line1 != "") + { + config.fan2v += line1; + ConfigSave(); + } + + line1 = outputWriter1.ReadLine(); } + line1 = null; + p1.WaitForExit(); - line1 = outputWriter1.ReadLine(); - } - line1 = null; - p1.WaitForExit(); - - }, token); - cancelTokenSource.Cancel(); - cancelTokenSource.Dispose(); - //update an info - if (config.fan1v != null) - { - ConfigLoad(); - Fan1Value.Text = "Infinity"; - Fan1Value.Text = config.fan1v; - try + }, token); + cancelTokenSource.Cancel(); + cancelTokenSource.Dispose(); + //update an info + if (config.fan1v != null) { - Fan1Value.Text = Fan1Value.Text.Remove(0, 101); - Fan1Value.Text = Fan1Value.Text.Remove(3); - string Chara; - Chara = Fan1Value.Text; - try { Chara = Chara.Replace(".", ""); Fan1Value.Text = Chara; } catch { } - if (Convert.ToInt32(Fan1Value.Text) > 1) + ConfigLoad(); + Fan1Value.Text = "Infinity"; + Fan1Value.Text = config.fan1v; + try { - Fan1Pr.Value = Convert.ToInt32(Fan1Value.Text); - if (Fan1Pr.Value == 10) { Fan1Pr.Value = 100; Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " 100"; } + Fan1Value.Text = Fan1Value.Text.Remove(0, 101); + Fan1Value.Text = Fan1Value.Text.Remove(3); + string Chara; + Chara = Fan1Value.Text; + try { Chara = Chara.Replace(".", ""); Fan1Value.Text = Chara; } catch { } + if (Convert.ToInt32(Fan1Value.Text) > 1) + { + Fan1Pr.Value = Convert.ToInt32(Fan1Value.Text); + if (Fan1Pr.Value == 10) { Fan1Pr.Value = 100; Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " 100"; } + } + else { Fan1Pr.Value = 0; } + Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan1Value.Text; + if (Fan1Pr.Value == 100) { Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " 100"; } } - else { Fan1Pr.Value = 0; } - Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan1Value.Text; - if (Fan1Pr.Value == 100) { Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " 100"; } - } - catch - { - if (Fan1.Value < 100) + catch { - Fan1Pr.Value = Fan1.Value; - Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan1.Value; - } + if (Fan1.Value < 100) + { + Fan1Pr.Value = Fan1.Value; + Fan1Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan1.Value; + } + } } - } - if (config.fan2v != null) - { - Fan2Value.Text = config.fan2v; - try + if (config.fan2v != null) { - Fan2Value.Text = Fan2Value.Text.Remove(0, 101); - Fan2Value.Text = Fan2Value.Text.Remove(3); - string Chara1; - Chara1 = Fan2Value.Text; - try { Chara1 = Chara1.Replace(".", ""); Fan2Value.Text = Chara1; } catch { } - if (Convert.ToInt32(Fan2Value.Text) > 1) + Fan2Value.Text = config.fan2v; + try { - Fan2Pr.Value = Convert.ToInt32(Fan2Value.Text); + Fan2Value.Text = Fan2Value.Text.Remove(0, 101); + Fan2Value.Text = Fan2Value.Text.Remove(3); + string Chara1; + Chara1 = Fan2Value.Text; + try { Chara1 = Chara1.Replace(".", ""); Fan2Value.Text = Chara1; } catch { } + if (Convert.ToInt32(Fan2Value.Text) > 1) + { + Fan2Pr.Value = Convert.ToInt32(Fan2Value.Text); + } + else { Fan2Pr.Value = 0; } + Fan2Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan2Value.Text; } - else { Fan2Pr.Value = 0; } - Fan2Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan2Value.Text; - } - catch - { - if (Fan2.Value < 100) + catch { - Fan2Pr.Value = Fan2.Value; - Fan2Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan2.Value; - } + if (Fan2.Value < 100) + { + Fan2Pr.Value = Fan2.Value; + Fan2Cur.Text = "Cooler_Current_Fan_Val".GetLocalized() + " " + Fan2.Value; + } + } } + if (Fanauto.IsChecked == true && config.fanex == true) { await Task.Delay(3000); Process(); } else { return; } } - if (Fanauto.IsChecked == true && config.fanex == true) { await Task.Delay(3000); Process(); } else { return; } - } + } + } public void GetTemp() { diff --git "a/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" "b/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" index 5c5b80c..c78e631 100644 --- "a/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" +++ "b/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" @@ -13,7 +13,7 @@ - + @@ -29,13 +29,13 @@ - + - + @@ -47,8 +47,8 @@ - - + + @@ -153,7 +153,7 @@ - + @@ -170,7 +170,7 @@ - + @@ -307,7 +307,7 @@ - + @@ -491,7 +491,7 @@ - + @@ -552,6 +552,7 @@ + @@ -606,6 +607,9 @@ + + + @@ -660,6 +664,9 @@ + + + @@ -714,10 +721,13 @@ + + + - + - + - + @@ -767,10 +777,402 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Keep auto + Ultra performance + Energy efficiency + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml.cs" "b/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml.cs" index 1c69dbf..7a46eb8 100644 --- "a/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml.cs" +++ "b/Saku Overclock/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml.cs" @@ -1,10 +1,17 @@ using System.Management; +using System; +using System.ServiceProcess; using System.Windows.Forms; using Microsoft.UI.Xaml.Controls; using Newtonsoft.Json; using Saku_Overclock.Services; using Saku_Overclock.ViewModels; using Windows.Foundation.Metadata; +using System.Diagnostics; +using Saku_Overclock.Helpers; +using Saku_Overclock.Views; +using Microsoft.VisualBasic; +using System.DirectoryServices; namespace Saku_Overclock.Views; public sealed partial class ПараметрыPage : Microsoft.UI.Xaml.Controls.Page { @@ -18,6 +25,7 @@ public ПараметрыViewModel ViewModel private readonly NUMAUtil _numaUtil; private bool relay = false; private Cpu cpu; + public bool turbobboost = true; List matches; private readonly string wmiAMDACPI = "AMD_ACPI"; private readonly string wmiScope = "root\\wmi"; @@ -30,6 +38,9 @@ public ПараметрыViewModel ViewModel private readonly string[] args; private readonly bool isApplyProfile; public string adjline; + public string ocmode; + public string universalvid; + public string equalvid; private bool load = false; #pragma warning disable CS8618 // Поле, не допускающее значения NULL, должно содержать значение, отличное от NULL, при выходе из конструктора. Возможно, стоит объявить поле как допускающее значения NULL. public ПараметрыPage() @@ -37,6 +48,7 @@ public ПараметрыPage() { ViewModel = App.GetService<ПараметрыViewModel>(); InitializeComponent(); + OC_Detect(); DeviceLoad(); ConfigLoad(); ProfileLoad(); @@ -58,6 +70,14 @@ public ПараметрыPage() catch { } cpu.Cpu_Init(); } + private void OC_Detect() // На неподдерживаемом оборудовании мгновенно отключит эти настройки + { + try { Init_OC_Mode(); } catch { App.MainWindow.ShowMessageDialogAsync("App can't detect Ryzen CPU!", "Can't detect!"); } + if (ocmode == "set_enable_oc is not supported on this family") + { + OC_Advanced.Visibility = Microsoft.UI.Xaml.Visibility.Collapsed; + } + } //JSON форматирование public void ConfigSave() { @@ -170,6 +190,7 @@ public async void SlidersInit() //Если выбран несохранённый профиль if (devices.c1 == true) { + c1v.Value = devices.c1v; c1.IsChecked = true; } if (devices.c2 == true) @@ -204,226 +225,12 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (devices.v1 == true) - { - V1V.Value = devices.v1v; - V1.IsChecked = true; - } - - if (devices.v2 == true) - { - V2V.Value = devices.v2v; - V2.IsChecked = true; - } - if (devices.v3 == true) - { - V3V.Value = devices.v3v; - V3.IsChecked = true; - } - if (devices.v4 == true) - { - V4V.Value = devices.v4v; - V4.IsChecked = true; - } - if (devices.v5 == true) - { - V5V.Value = devices.v5v; - V5.IsChecked = true; - } - if (devices.v6 == true) - { - V6V.Value = devices.v6v; - V6.IsChecked = true; - } - if (devices.v7 == true) - { - V7V.Value = devices.v7v; - V7.IsChecked = true; - } - - if (devices.g1 == true) - { - g1v.Value = devices.g1v; - g1.IsChecked = true; - } - if (devices.g2 == true) - { - g2v.Value = devices.g2v; - g2.IsChecked = true; - } - if (devices.g3 == true) - { - g3v.Value = devices.g3v; - g3.IsChecked = true; - } - if (devices.g4 == true) - { - g4v.Value = devices.g4v; - g4.IsChecked = true; - } - if (devices.g5 == true) - { - g5v.Value = devices.g5v; - g5.IsChecked = true; - } - if (devices.g6 == true) - { - g6v.Value = devices.g6v; - g6.IsChecked = true; - } - if (devices.g7 == true) - { - g7v.Value = devices.g7v; - g7.IsChecked = true; - } - if (devices.g8 == true) - { - g8v.Value = devices.g8v; - g8.IsChecked = true; - } - if (devices.g9 == true) - { - g9v.Value = devices.g9v; - g9.IsChecked = true; - } - if (devices.g10 == true) - { - g10v.Value = devices.g10v; - g10.IsChecked = true; - } - if (devices.enableps == true) - { - EnablePstates.IsOn = true; - } - if (devices.turboboost == true) - { - Turbo_boost.IsOn = true; - } - else { Turbo_boost.IsOn = false; } - if (devices.autopstate == true) - { - Autoapply_1.IsOn = true; - } - if (devices.p0ignorewarn == true) - { - Without_P0.IsOn = true; - } - if (devices.ignorewarn == true) - { - IgnoreWarn.IsOn = true; - } + Init_Unsaved(); } else { await Task.Delay(200); - if (devices.v1 == true) - { - V1V.Value = devices.v1v; - V1.IsChecked = true; - } - - if (devices.v2 == true) - { - V2V.Value = devices.v2v; - V2.IsChecked = true; - } - if (devices.v3 == true) - { - V3V.Value = devices.v3v; - V3.IsChecked = true; - } - if (devices.v4 == true) - { - V4V.Value = devices.v4v; - V4.IsChecked = true; - } - if (devices.v5 == true) - { - V5V.Value = devices.v5v; - V5.IsChecked = true; - } - if (devices.v6 == true) - { - V6V.Value = devices.v6v; - V6.IsChecked = true; - } - if (devices.v7 == true) - { - V7V.Value = devices.v7v; - V7.IsChecked = true; - } - - if (devices.g1 == true) - { - g1v.Value = devices.g1v; - g1.IsChecked = true; - } - if (devices.g2 == true) - { - g2v.Value = devices.g2v; - g2.IsChecked = true; - } - if (devices.g3 == true) - { - g3v.Value = devices.g3v; - g3.IsChecked = true; - } - if (devices.g4 == true) - { - g4v.Value = devices.g4v; - g4.IsChecked = true; - } - if (devices.g5 == true) - { - g5v.Value = devices.g5v; - g5.IsChecked = true; - } - if (devices.g6 == true) - { - g6v.Value = devices.g6v; - g6.IsChecked = true; - } - if (devices.g7 == true) - { - g7v.Value = devices.g7v; - g7.IsChecked = true; - } - if (devices.g8 == true) - { - g8v.Value = devices.g8v; - g8.IsChecked = true; - } - if (devices.g9 == true) - { - g9v.Value = devices.g9v; - g9.IsChecked = true; - } - if (devices.g10 == true) - { - g10v.Value = devices.g10v; - g10.IsChecked = true; - } - if (devices.enableps == true) - { - EnablePstates.IsOn = true; - } - if (devices.turboboost == true) - { - Turbo_boost.IsOn = true; - } - else { Turbo_boost.IsOn = false; } - if (devices.autopstate == true) - { - Autoapply_1.IsOn = true; - } - if (devices.p0ignorewarn == true) - { - Without_P0.IsOn = true; - } - if (devices.ignorewarn == true) - { - IgnoreWarn.IsOn = true; - } + Init_Unsaved(); } } if (profile.pr1 == true) @@ -432,8 +239,8 @@ public async void SlidersInit() ProfileCOM_1.Content = profile.pr1name; if (ProfileCOM.SelectedIndex == 1) { - //Если выбран несохранённый профиль - if (profile.c1pr1 == true) { c1.IsChecked = true; } else { c1.IsChecked = false; } + //Если выбран первый профиль + if (profile.c1pr1 == true) { c1v.Value = profile.c1pr1v; c1.IsChecked = true; } else { c1.IsChecked = false; } if (profile.c2pr1 == true) { c2v.Value = profile.c2pr1v; c2.IsChecked = true; } else { c2.IsChecked = false; } if (profile.c3pr1 == true) { c3v.Value = profile.c3pr1v; c3.IsChecked = true; } else { c3.IsChecked = false; } if (profile.c4pr1 == true) { c4v.Value = profile.c4pr1v; c4.IsChecked = true; } else { c4.IsChecked = false; } @@ -442,185 +249,12 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr1 == true) { V1V.Value = profile.v1pr1v; V1.IsChecked = true; } else { V1.IsChecked = false; } - if (profile.v2pr1 == true) { V2V.Value = profile.v2pr1v; V2.IsChecked = true; } else { V2.IsChecked = false; } - if (profile.v3pr1 == true) { V3V.Value = profile.v3pr1v; V3.IsChecked = true; } else { V3.IsChecked = false; } - if (profile.v4pr1 == true) { V4V.Value = profile.v4pr1v; V4.IsChecked = true; } else { V4.IsChecked = false; } - if (profile.v5pr1 == true) { V5V.Value = profile.v5pr1v; V5.IsChecked = true; } else { V5.IsChecked = false; } - if (profile.v6pr1 == true) { V6V.Value = profile.v6pr1v; V6.IsChecked = true; } else { V6.IsChecked = false; } - if (profile.v7pr1 == true) { V7V.Value = profile.v7pr1v; V7.IsChecked = true; } else { V7.IsChecked = false; } - if (profile.g1pr1 == true) { g1v.Value = profile.g1pr1v; g1.IsChecked = true; } else { g1.IsChecked = false; } - if (profile.g2pr1 == true) - { - g2v.Value = profile.g2pr1v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr1 == true) - { - g3v.Value = profile.g3pr1v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr1 == true) - { - g4v.Value = profile.g4pr1v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr1 == true) - { - g5v.Value = profile.g5pr1v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr1 == true) - { - g6v.Value = profile.g6pr1v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr1 == true) - { - g7v.Value = profile.g7pr1v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr1 == true) - { - g8v.Value = profile.g8pr1v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr1 == true) - { - g9v.Value = profile.g9pr1v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr1 == true) - { - g10v.Value = profile.g10pr1v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr1 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr1 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr1 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr1 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr1 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr1(); } else { await Task.Delay(200); - if (profile.v1pr1 == true) - { - V1V.Value = profile.v1pr1v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr1 == true) - { - V2V.Value = profile.v2pr1v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr1 == true) - { - V3V.Value = profile.v3pr1v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr1 == true) - { - V4V.Value = profile.v4pr1v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr1 == true) - { - V5V.Value = profile.v5pr1v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr1 == true) - { - V6V.Value = profile.v6pr1v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr1 == true) - { - V7V.Value = profile.v7pr1v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - if (profile.g1pr1 == true) - { - g1v.Value = profile.g1pr1v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr1 == true) - { - g2v.Value = profile.g2pr1v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr1 == true) - { - g3v.Value = profile.g3pr1v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr1 == true) - { - g4v.Value = profile.g4pr1v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr1 == true) - { - g5v.Value = profile.g5pr1v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr1 == true) - { - g6v.Value = profile.g6pr1v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr1 == true) - { - g7v.Value = profile.g7pr1v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr1 == true) - { - g8v.Value = profile.g8pr1v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr1 == true) - { - g9v.Value = profile.g9pr1v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr1 == true) - { - g10v.Value = profile.g10pr1v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr1 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr1 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr1 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr1 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr1 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr1(); } } } @@ -633,6 +267,7 @@ public async void SlidersInit() { if (profile.c1pr2 == true) { + c1v.Value = profile.c1pr2v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -673,228 +308,12 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr2 == true) - { - V1V.Value = profile.v1pr2v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr2 == true) - { - V2V.Value = profile.v2pr2v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr2 == true) - { - V3V.Value = profile.v3pr2v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr2 == true) - { - V4V.Value = profile.v4pr2v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr2 == true) - { - V5V.Value = profile.v5pr2v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr2 == true) - { - V6V.Value = profile.v6pr2v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr2 == true) - { - V7V.Value = profile.v7pr2v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr2 == true) - { - g1v.Value = profile.g1pr2v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr2 == true) - { - g2v.Value = profile.g2pr2v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr2 == true) - { - g3v.Value = profile.g3pr2v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr2 == true) - { - g4v.Value = profile.g4pr2v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr2 == true) - { - g5v.Value = profile.g5pr2v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr2 == true) - { - g6v.Value = profile.g6pr2v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr2 == true) - { - g7v.Value = profile.g7pr2v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr2 == true) - { - g8v.Value = profile.g8pr2v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr2 == true) - { - g9v.Value = profile.g9pr2v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr2 == true) - { - g10v.Value = profile.g10pr2v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr2 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr2 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr2 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr2 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr2 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr2(); } else { await Task.Delay(200); - if (profile.v1pr2 == true) - { - V1V.Value = profile.v1pr2v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr2 == true) - { - V2V.Value = profile.v2pr2v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr2 == true) - { - V3V.Value = profile.v3pr2v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr2 == true) - { - V4V.Value = profile.v4pr2v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr2 == true) - { - V5V.Value = profile.v5pr2v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr2 == true) - { - V6V.Value = profile.v6pr2v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr2 == true) - { - V7V.Value = profile.v7pr2v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr2 == true) - { - g1v.Value = profile.g1pr2v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr2 == true) - { - g2v.Value = profile.g2pr2v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr2 == true) - { - g3v.Value = profile.g3pr2v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr2 == true) - { - g4v.Value = profile.g4pr2v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr2 == true) - { - g5v.Value = profile.g5pr2v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr2 == true) - { - g6v.Value = profile.g6pr2v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr2 == true) - { - g7v.Value = profile.g7pr2v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr2 == true) - { - g8v.Value = profile.g8pr2v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr2 == true) - { - g9v.Value = profile.g9pr2v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr2 == true) - { - g10v.Value = profile.g10pr2v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr2 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr2 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr2 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr2 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr2 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr2(); } } } @@ -907,6 +326,7 @@ public async void SlidersInit() if (profile.c1pr3 == true) { + c1v.Value = profile.c1pr3v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -947,240 +367,25 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr3 == true) - { - V1V.Value = profile.v1pr3v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr3 == true) - { - V2V.Value = profile.v2pr3v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr3 == true) - { - V3V.Value = profile.v3pr3v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr3 == true) - { - V4V.Value = profile.v4pr3v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr3 == true) - { - V5V.Value = profile.v5pr3v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr3 == true) - { - V6V.Value = profile.v6pr3v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr3 == true) - { - V7V.Value = profile.v7pr3v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr3 == true) - { - g1v.Value = profile.g1pr3v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr3 == true) - { - g2v.Value = profile.g2pr3v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr3 == true) - { - g3v.Value = profile.g3pr3v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr3 == true) - { - g4v.Value = profile.g4pr3v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr3 == true) - { - g5v.Value = profile.g5pr3v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr3 == true) - { - g6v.Value = profile.g6pr3v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr3 == true) - { - g7v.Value = profile.g7pr3v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr3 == true) - { - g8v.Value = profile.g8pr3v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr3 == true) - { - g9v.Value = profile.g9pr3v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr3 == true) - { - g10v.Value = profile.g10pr3v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr3 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr3 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr3 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr3 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr3 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } - } - else - { - await Task.Delay(200); - if (profile.v1pr3 == true) - { - V1V.Value = profile.v1pr3v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr3 == true) - { - V2V.Value = profile.v2pr3v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr3 == true) - { - V3V.Value = profile.v3pr3v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr3 == true) - { - V4V.Value = profile.v4pr3v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr3 == true) - { - V5V.Value = profile.v5pr3v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr3 == true) - { - V6V.Value = profile.v6pr3v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr3 == true) - { - V7V.Value = profile.v7pr3v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr3 == true) - { - g1v.Value = profile.g1pr3v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr3 == true) - { - g2v.Value = profile.g2pr3v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr3 == true) - { - g3v.Value = profile.g3pr3v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr3 == true) - { - g4v.Value = profile.g4pr3v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr3 == true) - { - g5v.Value = profile.g5pr3v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr3 == true) - { - g6v.Value = profile.g6pr3v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr3 == true) - { - g7v.Value = profile.g7pr3v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr3 == true) - { - g8v.Value = profile.g8pr3v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr3 == true) - { - g9v.Value = profile.g9pr3v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr3 == true) - { - g10v.Value = profile.g10pr3v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr3 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr3 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr3 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr3 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr3 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } - } - } - } - if (profile.pr4 == true) - { - ProfileCOM_4.Visibility = Microsoft.UI.Xaml.Visibility.Visible; - ProfileCOM_4.Content = profile.pr4name; - if (ProfileCOM.SelectedIndex == 4) - { + Init_Pr3(); + } + else + { + await Task.Delay(200); + Init_Pr3(); + } + } + } + if (profile.pr4 == true) + { + ProfileCOM_4.Visibility = Microsoft.UI.Xaml.Visibility.Visible; + ProfileCOM_4.Content = profile.pr4name; + if (ProfileCOM.SelectedIndex == 4) + { if (profile.c1pr4 == true) { + c1v.Value = profile.c1pr4v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -1221,228 +426,12 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr4 == true) - { - V1V.Value = profile.v1pr4v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr4 == true) - { - V2V.Value = profile.v2pr4v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr4 == true) - { - V3V.Value = profile.v3pr4v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr4 == true) - { - V4V.Value = profile.v4pr4v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr4 == true) - { - V5V.Value = profile.v5pr4v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr4 == true) - { - V6V.Value = profile.v6pr4v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr4 == true) - { - V7V.Value = profile.v7pr4v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr4 == true) - { - g1v.Value = profile.g1pr4v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr4 == true) - { - g2v.Value = profile.g2pr4v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr4 == true) - { - g3v.Value = profile.g3pr4v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr4 == true) - { - g4v.Value = profile.g4pr4v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr4 == true) - { - g5v.Value = profile.g5pr4v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr4 == true) - { - g6v.Value = profile.g6pr4v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr4 == true) - { - g7v.Value = profile.g7pr4v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr4 == true) - { - g8v.Value = profile.g8pr4v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr4 == true) - { - g9v.Value = profile.g9pr4v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr4 == true) - { - g10v.Value = profile.g10pr4v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr4 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr4 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr4 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr4 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr4 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr4(); } else { await Task.Delay(200); - if (profile.v1pr4 == true) - { - V1V.Value = profile.v1pr4v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr4 == true) - { - V2V.Value = profile.v2pr4v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr4 == true) - { - V3V.Value = profile.v3pr4v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr4 == true) - { - V4V.Value = profile.v4pr4v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr4 == true) - { - V5V.Value = profile.v5pr4v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr4 == true) - { - V6V.Value = profile.v6pr4v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr4 == true) - { - V7V.Value = profile.v7pr4v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr4 == true) - { - g1v.Value = profile.g1pr4v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr4 == true) - { - g2v.Value = profile.g2pr4v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr4 == true) - { - g3v.Value = profile.g3pr4v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr4 == true) - { - g4v.Value = profile.g4pr4v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr4 == true) - { - g5v.Value = profile.g5pr4v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr4 == true) - { - g6v.Value = profile.g6pr4v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr4 == true) - { - g7v.Value = profile.g7pr4v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr4 == true) - { - g8v.Value = profile.g8pr4v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr4 == true) - { - g9v.Value = profile.g9pr4v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr4 == true) - { - g10v.Value = profile.g10pr4v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr4 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr4 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr4 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr4 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr4 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr4(); } } } @@ -1455,6 +444,7 @@ public async void SlidersInit() if (profile.c1pr5 == true) { + c1v.Value = profile.c1pr5v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -1495,228 +485,12 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr5 == true) - { - V1V.Value = profile.v1pr5v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr5 == true) - { - V2V.Value = profile.v2pr5v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr5 == true) - { - V3V.Value = profile.v3pr5v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr5 == true) - { - V4V.Value = profile.v4pr5v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr5 == true) - { - V5V.Value = profile.v5pr5v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr5 == true) - { - V6V.Value = profile.v6pr5v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr5 == true) - { - V7V.Value = profile.v7pr5v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr5 == true) - { - g1v.Value = profile.g1pr5v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr5 == true) - { - g2v.Value = profile.g2pr5v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr5 == true) - { - g3v.Value = profile.g3pr5v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr5 == true) - { - g4v.Value = profile.g4pr5v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr5 == true) - { - g5v.Value = profile.g5pr5v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr5 == true) - { - g6v.Value = profile.g6pr5v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr5 == true) - { - g7v.Value = profile.g7pr5v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr5 == true) - { - g8v.Value = profile.g8pr5v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr5 == true) - { - g9v.Value = profile.g9pr5v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr5 == true) - { - g10v.Value = profile.g10pr5v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr5 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr5 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr5 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr5 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr5 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr5(); } else { await Task.Delay(200); - if (profile.v1pr5 == true) - { - V1V.Value = profile.v1pr5v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr5 == true) - { - V2V.Value = profile.v2pr5v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr5 == true) - { - V3V.Value = profile.v3pr5v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr5 == true) - { - V4V.Value = profile.v4pr5v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr5 == true) - { - V5V.Value = profile.v5pr5v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr5 == true) - { - V6V.Value = profile.v6pr5v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr5 == true) - { - V7V.Value = profile.v7pr5v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr5 == true) - { - g1v.Value = profile.g1pr5v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr5 == true) - { - g2v.Value = profile.g2pr5v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr5 == true) - { - g3v.Value = profile.g3pr5v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr5 == true) - { - g4v.Value = profile.g4pr5v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr5 == true) - { - g5v.Value = profile.g5pr5v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr5 == true) - { - g6v.Value = profile.g6pr5v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr5 == true) - { - g7v.Value = profile.g7pr5v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr5 == true) - { - g8v.Value = profile.g8pr5v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr5 == true) - { - g9v.Value = profile.g9pr5v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr5 == true) - { - g10v.Value = profile.g10pr5v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr5 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr5 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr5 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr5 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr5 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr5(); } } } @@ -1729,6 +503,7 @@ public async void SlidersInit() if (profile.c1pr6 == true) { + c1v.Value = profile.c1pr6v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -1769,240 +544,25 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr6 == true) - { - V1V.Value = profile.v1pr6v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr6 == true) - { - V2V.Value = profile.v2pr6v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr6 == true) - { - V3V.Value = profile.v3pr6v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr6 == true) - { - V4V.Value = profile.v4pr6v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr6 == true) - { - V5V.Value = profile.v5pr6v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr6 == true) - { - V6V.Value = profile.v6pr6v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr6 == true) - { - V7V.Value = profile.v7pr6v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr6 == true) - { - g1v.Value = profile.g1pr6v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr6 == true) - { - g2v.Value = profile.g2pr6v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr6 == true) - { - g3v.Value = profile.g3pr6v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr6 == true) - { - g4v.Value = profile.g4pr6v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr6 == true) - { - g5v.Value = profile.g5pr6v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr6 == true) - { - g6v.Value = profile.g6pr6v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr6 == true) - { - g7v.Value = profile.g7pr6v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr6 == true) - { - g8v.Value = profile.g8pr6v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr6 == true) - { - g9v.Value = profile.g9pr6v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr6 == true) - { - g10v.Value = profile.g10pr6v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr6 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr6 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr6 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr6 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr6 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr6(); } else { await Task.Delay(200); - if (profile.v1pr6 == true) - { - V1V.Value = profile.v1pr6v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr6 == true) - { - V2V.Value = profile.v2pr6v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr6 == true) - { - V3V.Value = profile.v3pr6v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr6 == true) - { - V4V.Value = profile.v4pr6v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr6 == true) - { - V5V.Value = profile.v5pr6v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr6 == true) - { - V6V.Value = profile.v6pr6v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr6 == true) - { - V7V.Value = profile.v7pr6v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr6 == true) - { - g1v.Value = profile.g1pr6v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr6 == true) - { - g2v.Value = profile.g2pr6v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr6 == true) - { - g3v.Value = profile.g3pr6v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr6 == true) - { - g4v.Value = profile.g4pr6v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr6 == true) - { - g5v.Value = profile.g5pr6v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr6 == true) - { - g6v.Value = profile.g6pr6v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr6 == true) - { - g7v.Value = profile.g7pr6v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr6 == true) - { - g8v.Value = profile.g8pr6v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr6 == true) - { - g9v.Value = profile.g9pr6v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr6 == true) - { - g10v.Value = profile.g10pr6v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr6 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr6 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr6 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr6 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr6 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } - } - } - } - if (profile.pr7 == true) - { - ProfileCOM_7.Visibility = Microsoft.UI.Xaml.Visibility.Visible; - ProfileCOM_7.Content = profile.pr7name; - if (ProfileCOM.SelectedIndex == 7) - { + Init_Pr6(); + } + } + } + if (profile.pr7 == true) + { + ProfileCOM_7.Visibility = Microsoft.UI.Xaml.Visibility.Visible; + ProfileCOM_7.Content = profile.pr7name; + if (ProfileCOM.SelectedIndex == 7) + { if (profile.c1pr7 == true) { + c1v.Value = profile.c1pr7v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -2043,228 +603,12 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr7 == true) - { - V1V.Value = profile.v1pr7v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr7 == true) - { - V2V.Value = profile.v2pr7v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr7 == true) - { - V3V.Value = profile.v3pr7v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr7 == true) - { - V4V.Value = profile.v4pr7v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr7 == true) - { - V5V.Value = profile.v5pr7v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr7 == true) - { - V6V.Value = profile.v6pr7v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr7 == true) - { - V7V.Value = profile.v7pr7v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr7 == true) - { - g1v.Value = profile.g1pr7v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr7 == true) - { - g2v.Value = profile.g2pr7v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr7 == true) - { - g3v.Value = profile.g3pr7v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr7 == true) - { - g4v.Value = profile.g4pr7v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr7 == true) - { - g5v.Value = profile.g5pr7v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr7 == true) - { - g6v.Value = profile.g6pr7v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr7 == true) - { - g7v.Value = profile.g7pr7v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr7 == true) - { - g8v.Value = profile.g8pr7v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr7 == true) - { - g9v.Value = profile.g9pr7v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr7 == true) - { - g10v.Value = profile.g10pr7v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr7 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr7 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr7 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr7 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr7 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr7(); } else { await Task.Delay(200); - if (profile.v1pr7 == true) - { - V1V.Value = profile.v1pr7v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr7 == true) - { - V2V.Value = profile.v2pr7v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr7 == true) - { - V3V.Value = profile.v3pr7v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr7 == true) - { - V4V.Value = profile.v4pr7v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr7 == true) - { - V5V.Value = profile.v5pr7v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr7 == true) - { - V6V.Value = profile.v6pr7v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr7 == true) - { - V7V.Value = profile.v7pr7v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr7 == true) - { - g1v.Value = profile.g1pr7v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr7 == true) - { - g2v.Value = profile.g2pr7v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr7 == true) - { - g3v.Value = profile.g3pr7v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr7 == true) - { - g4v.Value = profile.g4pr7v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr7 == true) - { - g5v.Value = profile.g5pr7v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr7 == true) - { - g6v.Value = profile.g6pr7v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr7 == true) - { - g7v.Value = profile.g7pr7v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr7 == true) - { - g8v.Value = profile.g8pr7v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr7 == true) - { - g9v.Value = profile.g9pr7v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr7 == true) - { - g10v.Value = profile.g10pr7v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr7 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr7 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr7 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr7 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr7 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr7(); } } } @@ -2277,6 +621,7 @@ public async void SlidersInit() if (profile.c1pr8 == true) { + c1v.Value = profile.c1pr8v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -2317,228 +662,12 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr8 == true) - { - V1V.Value = profile.v1pr8v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr8 == true) - { - V2V.Value = profile.v2pr8v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr8 == true) - { - V3V.Value = profile.v3pr8v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr8 == true) - { - V4V.Value = profile.v4pr8v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr8 == true) - { - V5V.Value = profile.v5pr8v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr8 == true) - { - V6V.Value = profile.v6pr8v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr8 == true) - { - V7V.Value = profile.v7pr8v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr8 == true) - { - g1v.Value = profile.g1pr8v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr8 == true) - { - g2v.Value = profile.g2pr8v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr8 == true) - { - g3v.Value = profile.g3pr8v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr8 == true) - { - g4v.Value = profile.g4pr8v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr8 == true) - { - g5v.Value = profile.g5pr8v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr8 == true) - { - g6v.Value = profile.g6pr8v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr8 == true) - { - g7v.Value = profile.g7pr8v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr8 == true) - { - g8v.Value = profile.g8pr8v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr8 == true) - { - g9v.Value = profile.g9pr8v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr8 == true) - { - g10v.Value = profile.g10pr8v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr8 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr8 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr8 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr8 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr8 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr8(); } else { await Task.Delay(200); - if (profile.v1pr8 == true) - { - V1V.Value = profile.v1pr8v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr8 == true) - { - V2V.Value = profile.v2pr8v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr8 == true) - { - V3V.Value = profile.v3pr8v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr8 == true) - { - V4V.Value = profile.v4pr8v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr8 == true) - { - V5V.Value = profile.v5pr8v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr8 == true) - { - V6V.Value = profile.v6pr8v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr8 == true) - { - V7V.Value = profile.v7pr8v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr8 == true) - { - g1v.Value = profile.g1pr8v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr8 == true) - { - g2v.Value = profile.g2pr8v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr8 == true) - { - g3v.Value = profile.g3pr8v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr8 == true) - { - g4v.Value = profile.g4pr8v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr8 == true) - { - g5v.Value = profile.g5pr8v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr8 == true) - { - g6v.Value = profile.g6pr8v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr8 == true) - { - g7v.Value = profile.g7pr8v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr8 == true) - { - g8v.Value = profile.g8pr8v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr8 == true) - { - g9v.Value = profile.g9pr8v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr8 == true) - { - g10v.Value = profile.g10pr8v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr8 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr8 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr8 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr8 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr8 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr8(); } } } @@ -2551,6 +680,7 @@ public async void SlidersInit() if (profile.c1pr9 == true) { + c1v.Value = profile.c1pr9v; c1.IsChecked = true; } else { c1.IsChecked = false; } @@ -2591,231 +721,511 @@ public async void SlidersInit() DeviceLoad(); if (load == true) { - if (profile.v1pr9 == true) - { - V1V.Value = profile.v1pr9v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } - - if (profile.v2pr9 == true) - { - V2V.Value = profile.v2pr9v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr9 == true) - { - V3V.Value = profile.v3pr9v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr9 == true) - { - V4V.Value = profile.v4pr9v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr9 == true) - { - V5V.Value = profile.v5pr9v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr9 == true) - { - V6V.Value = profile.v6pr9v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr9 == true) - { - V7V.Value = profile.v7pr9v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } - - if (profile.g1pr9 == true) - { - g1v.Value = profile.g1pr9v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr9 == true) - { - g2v.Value = profile.g2pr9v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr9 == true) - { - g3v.Value = profile.g3pr9v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr9 == true) - { - g4v.Value = profile.g4pr9v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr9 == true) - { - g5v.Value = profile.g5pr9v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr9 == true) - { - g6v.Value = profile.g6pr9v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr9 == true) - { - g7v.Value = profile.g7pr9v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr9 == true) - { - g8v.Value = profile.g8pr9v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr9 == true) - { - g9v.Value = profile.g9pr9v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr9 == true) - { - g10v.Value = profile.g10pr9v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr9 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr9 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr9 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr9 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr9 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + Init_Pr9(); } else { await Task.Delay(200); - if (profile.v1pr9 == true) - { - V1V.Value = profile.v1pr9v; - V1.IsChecked = true; - } - else { V1.IsChecked = false; } + Init_Pr9(); + } + } + } + } + private void Init_Unsaved() + { + if (devices.v1 == true) + { + V1V.Value = devices.v1v; + V1.IsChecked = true; + } - if (profile.v2pr9 == true) - { - V2V.Value = profile.v2pr9v; - V2.IsChecked = true; - } - else { V2.IsChecked = false; } - if (profile.v3pr9 == true) - { - V3V.Value = profile.v3pr9v; - V3.IsChecked = true; - } - else { V3.IsChecked = false; } - if (profile.v4pr9 == true) - { - V4V.Value = profile.v4pr9v; - V4.IsChecked = true; - } - else { V4.IsChecked = false; } - if (profile.v5pr9 == true) - { - V5V.Value = profile.v5pr9v; - V5.IsChecked = true; - } - else { V5.IsChecked = false; } - if (profile.v6pr9 == true) - { - V6V.Value = profile.v6pr9v; - V6.IsChecked = true; - } - else { V6.IsChecked = false; } - if (profile.v7pr9 == true) - { - V7V.Value = profile.v7pr9v; - V7.IsChecked = true; - } - else { V7.IsChecked = false; } + if (devices.v2 == true) + { + V2V.Value = devices.v2v; + V2.IsChecked = true; + } + if (devices.v3 == true) + { + V3V.Value = devices.v3v; + V3.IsChecked = true; + } + if (devices.v4 == true) + { + V4V.Value = devices.v4v; + V4.IsChecked = true; + } + if (devices.v5 == true) + { + V5V.Value = devices.v5v; + V5.IsChecked = true; + } + if (devices.v6 == true) + { + V6V.Value = devices.v6v; + V6.IsChecked = true; + } + if (devices.v7 == true) + { + V7V.Value = devices.v7v; + V7.IsChecked = true; + } - if (profile.g1pr9 == true) - { - g1v.Value = profile.g1pr9v; - g1.IsChecked = true; - } - else { g1.IsChecked = false; } - if (profile.g2pr9 == true) - { - g2v.Value = profile.g2pr9v; - g2.IsChecked = true; - } - else { g2.IsChecked = false; } - if (profile.g3pr9 == true) - { - g3v.Value = profile.g3pr9v; - g3.IsChecked = true; - } - else { g3.IsChecked = false; } - if (profile.g4pr9 == true) - { - g4v.Value = profile.g4pr9v; - g4.IsChecked = true; - } - else { g4.IsChecked = false; } - if (profile.g5pr9 == true) - { - g5v.Value = profile.g5pr9v; - g5.IsChecked = true; - } - else { g5.IsChecked = false; } - if (profile.g6pr9 == true) - { - g6v.Value = profile.g6pr9v; - g6.IsChecked = true; - } - else { g6.IsChecked = false; } - if (profile.g7pr9 == true) - { - g7v.Value = profile.g7pr9v; - g7.IsChecked = true; - } - else { g7.IsChecked = false; } - if (profile.g8pr9 == true) - { - g8v.Value = profile.g8pr9v; - g8.IsChecked = true; - } - else { g8.IsChecked = false; } - if (profile.g9pr9 == true) - { - g9v.Value = profile.g9pr9v; - g9.IsChecked = true; - } - else { g9.IsChecked = false; } - if (profile.g10pr9 == true) - { - g10v.Value = profile.g10pr9v; - g10.IsChecked = true; - } - else { g10.IsChecked = false; } - if (profile.enablepspr9 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } - if (profile.turboboostpr9 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } - if (profile.autopstatepr9 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } - if (profile.p0ignorewarnpr9 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } - if (profile.ignorewarnpr9 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } - } - } + if (devices.g1 == true) + { + g1v.Value = devices.g1v; + g1.IsChecked = true; + } + if (devices.g2 == true) + { + g2v.Value = devices.g2v; + g2.IsChecked = true; + } + if (devices.g3 == true) + { + g3v.Value = devices.g3v; + g3.IsChecked = true; + } + if (devices.g4 == true) + { + g4v.Value = devices.g4v; + g4.IsChecked = true; + } + if (devices.g5 == true) + { + g5v.Value = devices.g5v; + g5.IsChecked = true; + } + if (devices.g6 == true) + { + g6v.Value = devices.g6v; + g6.IsChecked = true; + } + if (devices.g7 == true) + { + g7v.Value = devices.g7v; + g7.IsChecked = true; + } + if (devices.g8 == true) + { + g8v.Value = devices.g8v; + g8.IsChecked = true; + } + if (devices.g9 == true) + { + g9v.Value = devices.g9v; + g9.IsChecked = true; + } + if (devices.g10 == true) + { + g10v.Value = devices.g10v; + g10.IsChecked = true; + } + if (devices.enableps == true) + { + EnablePstates.IsOn = true; + } + if (devices.turboboost == true) + { + Turbo_boost.IsOn = true; + } + else { Turbo_boost.IsOn = false; } + if (devices.autopstate == true) + { + Autoapply_1.IsOn = true; } + if (devices.p0ignorewarn == true) + { + Without_P0.IsOn = true; + } + if (devices.ignorewarn == true) + { + IgnoreWarn.IsOn = true; + } + if (devices.vid0 != null) { VID_0.Value = devices.vid0; } + if (devices.vid1 != null) { VID_1.Value = devices.vid1; } + if (devices.vid2 != null) { VID_2.Value = devices.vid2; } + if (devices.a1 == true) { a1v.Value = devices.a1v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (devices.a2 == true) { a2v.Value = devices.a2v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (devices.a3 == true) { a3v.Value = devices.a3v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (devices.a4 == true) { a4v.Value = devices.a4v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (devices.a5 == true) { a5v.Value = devices.a5v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (devices.a6 == true) { a6v.Value = devices.a6v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (devices.a7 == true) { a7v.Value = devices.a7v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (devices.a8 == true) { a8v.Value = devices.a8v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (devices.a9 == true) { a9v.Value = devices.a9v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (devices.a10 == true) { a10v.Value = devices.a10v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (devices.a11 == true) { a11v.Value = devices.a11v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (devices.a12 == true) { a12v.Value = devices.a12v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (devices.a13 == true) { a13m.SelectedIndex = devices.a13v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr1() + { + if (profile.v1pr1 == true) { V1V.Value = profile.v1pr1v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr1 == true) { V2V.Value = profile.v2pr1v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr1 == true) { V3V.Value = profile.v3pr1v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr1 == true) { V4V.Value = profile.v4pr1v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr1 == true) { V5V.Value = profile.v5pr1v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr1 == true) { V6V.Value = profile.v6pr1v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr1 == true) { V7V.Value = profile.v7pr1v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr1 == true) { g1v.Value = profile.g1pr1v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr1 == true) { g2v.Value = profile.g2pr1v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr1 == true) { g3v.Value = profile.g3pr1v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr1 == true) { g4v.Value = profile.g4pr1v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr1 == true) { g5v.Value = profile.g5pr1v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr1 == true) { g6v.Value = profile.g6pr1v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr1 == true) { g7v.Value = profile.g7pr1v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr1 == true) { g8v.Value = profile.g8pr1v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr1 == true) { g9v.Value = profile.g9pr1v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr1 == true) { g10v.Value = profile.g10pr1v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr1 != null) { VID_0.Value = profile.vid0pr1; } + if (profile.vid1pr1 != null) { VID_1.Value = profile.vid1pr1; } + if (profile.vid2pr1 != null) { VID_2.Value = profile.vid2pr1; } + if (profile.enablepspr1 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr1 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr1 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr1 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr1 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr1 == true) { a1v.Value = profile.a1pr1v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr1 == true) { a2v.Value = profile.a2pr1v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr1 == true) { a3v.Value = profile.a3pr1v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr1 == true) { a4v.Value = profile.a4pr1v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr1 == true) { a5v.Value = profile.a5pr1v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr1 == true) { a6v.Value = profile.a6pr1v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr1 == true) { a7v.Value = profile.a7pr1v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr1 == true) { a8v.Value = profile.a8pr1v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr1 == true) { a9v.Value = profile.a9pr1v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr1 == true) { a10v.Value = profile.a10pr1v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr1 == true) { a11v.Value = profile.a11pr1v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr1 == true) { a12v.Value = profile.a12pr1v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr1 == true) { a13m.SelectedIndex = profile.a13pr1v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr2() + { + if (profile.v1pr2 == true) { V1V.Value = profile.v1pr2v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr2 == true) { V2V.Value = profile.v2pr2v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr2 == true) { V3V.Value = profile.v3pr2v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr2 == true) { V4V.Value = profile.v4pr2v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr2 == true) { V5V.Value = profile.v5pr2v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr2 == true) { V6V.Value = profile.v6pr2v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr2 == true) { V7V.Value = profile.v7pr2v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr2 == true) { g1v.Value = profile.g1pr2v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr2 == true) { g2v.Value = profile.g2pr2v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr2 == true) { g3v.Value = profile.g3pr2v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr2 == true) { g4v.Value = profile.g4pr2v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr2 == true) { g5v.Value = profile.g5pr2v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr2 == true) { g6v.Value = profile.g6pr2v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr2 == true) { g7v.Value = profile.g7pr2v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr2 == true) { g8v.Value = profile.g8pr2v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr2 == true) { g9v.Value = profile.g9pr2v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr2 == true) { g10v.Value = profile.g10pr2v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr2 != null) { VID_0.Value = profile.vid0pr2; } + if (profile.vid1pr2 != null) { VID_1.Value = profile.vid1pr2; } + if (profile.vid2pr2 != null) { VID_2.Value = profile.vid2pr2; } + if (profile.enablepspr2 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr2 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr2 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr2 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr2 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr2 == true) { a1v.Value = profile.a1pr2v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr2 == true) { a2v.Value = profile.a2pr2v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr2 == true) { a3v.Value = profile.a3pr2v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr2 == true) { a4v.Value = profile.a4pr2v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr2 == true) { a5v.Value = profile.a5pr2v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr2 == true) { a6v.Value = profile.a6pr2v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr2 == true) { a7v.Value = profile.a7pr2v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr2 == true) { a8v.Value = profile.a8pr2v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr2 == true) { a9v.Value = profile.a9pr2v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr2 == true) { a10v.Value = profile.a10pr2v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr2 == true) { a11v.Value = profile.a11pr2v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr2 == true) { a12v.Value = profile.a12pr2v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr2 == true) { a13m.SelectedIndex = profile.a13pr2v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr3() + { + if (profile.v1pr3 == true) { V1V.Value = profile.v1pr3v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr3 == true) { V2V.Value = profile.v2pr3v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr3 == true) { V3V.Value = profile.v3pr3v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr3 == true) { V4V.Value = profile.v4pr3v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr3 == true) { V5V.Value = profile.v5pr3v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr3 == true) { V6V.Value = profile.v6pr3v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr3 == true) { V7V.Value = profile.v7pr3v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr3 == true) { g1v.Value = profile.g1pr3v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr3 == true) { g2v.Value = profile.g2pr3v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr3 == true) { g3v.Value = profile.g3pr3v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr3 == true) { g4v.Value = profile.g4pr3v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr3 == true) { g5v.Value = profile.g5pr3v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr3 == true) { g6v.Value = profile.g6pr3v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr3 == true) { g7v.Value = profile.g7pr3v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr3 == true) { g8v.Value = profile.g8pr3v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr3 == true) { g9v.Value = profile.g9pr3v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr3 == true) { g10v.Value = profile.g10pr3v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr3 != null) { VID_0.Value = profile.vid0pr3; } + if (profile.vid1pr3 != null) { VID_1.Value = profile.vid1pr3; } + if (profile.vid2pr3 != null) { VID_2.Value = profile.vid2pr3; } + if (profile.enablepspr3 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr3 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr3 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr3 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr3 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr3 == true) { a1v.Value = profile.a1pr3v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr3 == true) { a2v.Value = profile.a2pr3v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr3 == true) { a3v.Value = profile.a3pr3v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr3 == true) { a4v.Value = profile.a4pr3v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr3 == true) { a5v.Value = profile.a5pr3v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr3 == true) { a6v.Value = profile.a6pr3v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr3 == true) { a7v.Value = profile.a7pr3v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr3 == true) { a8v.Value = profile.a8pr3v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr3 == true) { a9v.Value = profile.a9pr3v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr3 == true) { a10v.Value = profile.a10pr3v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr3 == true) { a11v.Value = profile.a11pr3v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr3 == true) { a12v.Value = profile.a12pr3v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr3 == true) { a13m.SelectedIndex = profile.a13pr3v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr4() + { + if (profile.v1pr4 == true) { V1V.Value = profile.v1pr4v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr4 == true) { V2V.Value = profile.v2pr4v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr4 == true) { V3V.Value = profile.v3pr4v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr4 == true) { V4V.Value = profile.v4pr4v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr4 == true) { V5V.Value = profile.v5pr4v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr4 == true) { V6V.Value = profile.v6pr4v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr4 == true) { V7V.Value = profile.v7pr4v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr4 == true) { g1v.Value = profile.g1pr4v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr4 == true) { g2v.Value = profile.g2pr4v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr4 == true) { g3v.Value = profile.g3pr4v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr4 == true) { g4v.Value = profile.g4pr4v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr4 == true) { g5v.Value = profile.g5pr4v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr4 == true) { g6v.Value = profile.g6pr4v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr4 == true) { g7v.Value = profile.g7pr4v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr4 == true) { g8v.Value = profile.g8pr4v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr4 == true) { g9v.Value = profile.g9pr4v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr4 == true) { g10v.Value = profile.g10pr4v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr4 != null) { VID_0.Value = profile.vid0pr4; } + if (profile.vid1pr4 != null) { VID_1.Value = profile.vid1pr4; } + if (profile.vid2pr4 != null) { VID_2.Value = profile.vid2pr4; } + if (profile.enablepspr4 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr4 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr4 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr4 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr4 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr4 == true) { a1v.Value = profile.a1pr4v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr4 == true) { a2v.Value = profile.a2pr4v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr4 == true) { a3v.Value = profile.a3pr4v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr4 == true) { a4v.Value = profile.a4pr4v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr4 == true) { a5v.Value = profile.a5pr4v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr4 == true) { a6v.Value = profile.a6pr4v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr4 == true) { a7v.Value = profile.a7pr4v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr4 == true) { a8v.Value = profile.a8pr4v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr4 == true) { a9v.Value = profile.a9pr4v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr4 == true) { a10v.Value = profile.a10pr4v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr4 == true) { a11v.Value = profile.a11pr4v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr4 == true) { a12v.Value = profile.a12pr4v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr4 == true) { a13m.SelectedIndex = profile.a13pr4v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr5() + { + if (profile.v1pr5 == true) { V1V.Value = profile.v1pr5v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr5 == true) { V2V.Value = profile.v2pr5v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr5 == true) { V3V.Value = profile.v3pr5v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr5 == true) { V4V.Value = profile.v4pr5v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr5 == true) { V5V.Value = profile.v5pr5v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr5 == true) { V6V.Value = profile.v6pr5v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr5 == true) { V7V.Value = profile.v7pr5v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr5 == true) { g1v.Value = profile.g1pr5v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr5 == true) { g2v.Value = profile.g2pr5v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr5 == true) { g3v.Value = profile.g3pr5v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr5 == true) { g4v.Value = profile.g4pr5v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr5 == true) { g5v.Value = profile.g5pr5v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr5 == true) { g6v.Value = profile.g6pr5v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr5 == true) { g7v.Value = profile.g7pr5v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr5 == true) { g8v.Value = profile.g8pr5v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr5 == true) { g9v.Value = profile.g9pr5v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr5 == true) { g10v.Value = profile.g10pr5v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr5 != null) { VID_0.Value = profile.vid0pr5; } + if (profile.vid1pr5 != null) { VID_1.Value = profile.vid1pr5; } + if (profile.vid2pr5 != null) { VID_2.Value = profile.vid2pr5; } + if (profile.enablepspr5 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr5 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr5 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr5 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr5 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr5 == true) { a1v.Value = profile.a1pr5v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr5 == true) { a2v.Value = profile.a2pr5v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr5 == true) { a3v.Value = profile.a3pr5v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr5 == true) { a4v.Value = profile.a4pr5v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr5 == true) { a5v.Value = profile.a5pr5v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr5 == true) { a6v.Value = profile.a6pr5v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr5 == true) { a7v.Value = profile.a7pr5v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr5 == true) { a8v.Value = profile.a8pr5v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr5 == true) { a9v.Value = profile.a9pr5v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr5 == true) { a10v.Value = profile.a10pr5v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr5 == true) { a11v.Value = profile.a11pr5v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr5 == true) { a12v.Value = profile.a12pr5v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr5 == true) { a13m.SelectedIndex = profile.a13pr5v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr6() + { + if (profile.v1pr6 == true) { V1V.Value = profile.v1pr6v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr6 == true) { V2V.Value = profile.v2pr6v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr6 == true) { V3V.Value = profile.v3pr6v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr6 == true) { V4V.Value = profile.v4pr6v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr6 == true) { V5V.Value = profile.v5pr6v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr6 == true) { V6V.Value = profile.v6pr6v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr6 == true) { V7V.Value = profile.v7pr6v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr6 == true) { g1v.Value = profile.g1pr6v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr6 == true) { g2v.Value = profile.g2pr6v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr6 == true) { g3v.Value = profile.g3pr6v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr6 == true) { g4v.Value = profile.g4pr6v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr6 == true) { g5v.Value = profile.g5pr6v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr6 == true) { g6v.Value = profile.g6pr6v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr6 == true) { g7v.Value = profile.g7pr6v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr6 == true) { g8v.Value = profile.g8pr6v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr6 == true) { g9v.Value = profile.g9pr6v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr6 == true) { g10v.Value = profile.g10pr6v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr6 != null) { VID_0.Value = profile.vid0pr6; } + if (profile.vid1pr6 != null) { VID_1.Value = profile.vid1pr6; } + if (profile.vid2pr6 != null) { VID_2.Value = profile.vid2pr6; } + if (profile.enablepspr6 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr6 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr6 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr6 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr6 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr6 == true) { a1v.Value = profile.a1pr6v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr6 == true) { a2v.Value = profile.a2pr6v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr6 == true) { a3v.Value = profile.a3pr6v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr6 == true) { a4v.Value = profile.a4pr6v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr6 == true) { a5v.Value = profile.a5pr6v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr6 == true) { a6v.Value = profile.a6pr6v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr6 == true) { a7v.Value = profile.a7pr6v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr6 == true) { a8v.Value = profile.a8pr6v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr6 == true) { a9v.Value = profile.a9pr6v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr6 == true) { a10v.Value = profile.a10pr6v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr6 == true) { a11v.Value = profile.a11pr6v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr6 == true) { a12v.Value = profile.a12pr6v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr6 == true) { a13m.SelectedIndex = profile.a13pr6v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr7() + { + if (profile.v1pr7 == true) { V1V.Value = profile.v1pr7v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr7 == true) { V2V.Value = profile.v2pr7v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr7 == true) { V3V.Value = profile.v3pr7v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr7 == true) { V4V.Value = profile.v4pr7v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr7 == true) { V5V.Value = profile.v5pr7v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr7 == true) { V6V.Value = profile.v6pr7v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr7 == true) { V7V.Value = profile.v7pr7v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr7 == true) { g1v.Value = profile.g1pr7v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr7 == true) { g2v.Value = profile.g2pr7v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr7 == true) { g3v.Value = profile.g3pr7v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr7 == true) { g4v.Value = profile.g4pr7v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr7 == true) { g5v.Value = profile.g5pr7v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr7 == true) { g6v.Value = profile.g6pr7v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr7 == true) { g7v.Value = profile.g7pr7v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr7 == true) { g8v.Value = profile.g8pr7v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr7 == true) { g9v.Value = profile.g9pr7v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr7 == true) { g10v.Value = profile.g10pr7v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr7 != null) { VID_0.Value = profile.vid0pr7; } + if (profile.vid1pr7 != null) { VID_1.Value = profile.vid1pr7; } + if (profile.vid2pr7 != null) { VID_2.Value = profile.vid2pr7; } + if (profile.enablepspr7 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr7 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr7 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr7 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr7 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr7 == true) { a1v.Value = profile.a1pr7v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr7 == true) { a2v.Value = profile.a2pr7v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr7 == true) { a3v.Value = profile.a3pr7v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr7 == true) { a4v.Value = profile.a4pr7v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr7 == true) { a5v.Value = profile.a5pr7v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr7 == true) { a6v.Value = profile.a6pr7v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr7 == true) { a7v.Value = profile.a7pr7v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr7 == true) { a8v.Value = profile.a8pr7v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr7 == true) { a9v.Value = profile.a9pr7v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr7 == true) { a10v.Value = profile.a10pr7v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr7 == true) { a11v.Value = profile.a11pr7v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr7 == true) { a12v.Value = profile.a12pr7v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr7 == true) { a13m.SelectedIndex = profile.a13pr7v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr8() + { + if (profile.v1pr8 == true) { V1V.Value = profile.v1pr8v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr8 == true) { V2V.Value = profile.v2pr8v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr8 == true) { V3V.Value = profile.v3pr8v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr8 == true) { V4V.Value = profile.v4pr8v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr8 == true) { V5V.Value = profile.v5pr8v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr8 == true) { V6V.Value = profile.v6pr8v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr8 == true) { V7V.Value = profile.v7pr8v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr8 == true) { g1v.Value = profile.g1pr8v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr8 == true) { g2v.Value = profile.g2pr8v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr8 == true) { g3v.Value = profile.g3pr8v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr8 == true) { g4v.Value = profile.g4pr8v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr8 == true) { g5v.Value = profile.g5pr8v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr8 == true) { g6v.Value = profile.g6pr8v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr8 == true) { g7v.Value = profile.g7pr8v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr8 == true) { g8v.Value = profile.g8pr8v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr8 == true) { g9v.Value = profile.g9pr8v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr8 == true) { g10v.Value = profile.g10pr8v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr8 != null) { VID_0.Value = profile.vid0pr8; } + if (profile.vid1pr8 != null) { VID_1.Value = profile.vid1pr8; } + if (profile.vid2pr8 != null) { VID_2.Value = profile.vid2pr8; } + if (profile.enablepspr8 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr8 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr8 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr8 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr8 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr8 == true) { a1v.Value = profile.a1pr8v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr8 == true) { a2v.Value = profile.a2pr8v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr8 == true) { a3v.Value = profile.a3pr8v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr8 == true) { a4v.Value = profile.a4pr8v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr8 == true) { a5v.Value = profile.a5pr8v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr8 == true) { a6v.Value = profile.a6pr8v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr8 == true) { a7v.Value = profile.a7pr8v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr8 == true) { a8v.Value = profile.a8pr8v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr8 == true) { a9v.Value = profile.a9pr8v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr8 == true) { a10v.Value = profile.a10pr8v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr8 == true) { a11v.Value = profile.a11pr8v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr8 == true) { a12v.Value = profile.a12pr8v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr8 == true) { a13m.SelectedIndex = profile.a13pr8v; a13.IsChecked = true; } else { a13.IsChecked = false; } + } + private void Init_Pr9() + { + if (profile.v1pr9 == true) { V1V.Value = profile.v1pr9v; V1.IsChecked = true; } else { V1.IsChecked = false; } + if (profile.v2pr9 == true) { V2V.Value = profile.v2pr9v; V2.IsChecked = true; } else { V2.IsChecked = false; } + if (profile.v3pr9 == true) { V3V.Value = profile.v3pr9v; V3.IsChecked = true; } else { V3.IsChecked = false; } + if (profile.v4pr9 == true) { V4V.Value = profile.v4pr9v; V4.IsChecked = true; } else { V4.IsChecked = false; } + if (profile.v5pr9 == true) { V5V.Value = profile.v5pr9v; V5.IsChecked = true; } else { V5.IsChecked = false; } + if (profile.v6pr9 == true) { V6V.Value = profile.v6pr9v; V6.IsChecked = true; } else { V6.IsChecked = false; } + if (profile.v7pr9 == true) { V7V.Value = profile.v7pr9v; V7.IsChecked = true; } else { V7.IsChecked = false; } + if (profile.g1pr9 == true) { g1v.Value = profile.g1pr9v; g1.IsChecked = true; } else { g1.IsChecked = false; } + if (profile.g2pr9 == true) { g2v.Value = profile.g2pr9v; g2.IsChecked = true; } else { g2.IsChecked = false; } + if (profile.g3pr9 == true) { g3v.Value = profile.g3pr9v; g3.IsChecked = true; } else { g3.IsChecked = false; } + if (profile.g4pr9 == true) { g4v.Value = profile.g4pr9v; g4.IsChecked = true; } else { g4.IsChecked = false; } + if (profile.g5pr9 == true) { g5v.Value = profile.g5pr9v; g5.IsChecked = true; } else { g5.IsChecked = false; } + if (profile.g6pr9 == true) { g6v.Value = profile.g6pr9v; g6.IsChecked = true; } else { g6.IsChecked = false; } + if (profile.g7pr9 == true) { g7v.Value = profile.g7pr9v; g7.IsChecked = true; } else { g7.IsChecked = false; } + if (profile.g8pr9 == true) { g8v.Value = profile.g8pr9v; g8.IsChecked = true; } else { g8.IsChecked = false; } + if (profile.g9pr9 == true) { g9v.Value = profile.g9pr9v; g9.IsChecked = true; } else { g9.IsChecked = false; } + if (profile.g10pr9 == true) { g10v.Value = profile.g10pr9v; g10.IsChecked = true; } else { g10.IsChecked = false; } + if (profile.vid0pr9 != null) { VID_0.Value = profile.vid0pr9; } + if (profile.vid1pr9 != null) { VID_1.Value = profile.vid1pr9; } + if (profile.vid2pr9 != null) { VID_2.Value = profile.vid2pr9; } + if (profile.enablepspr9 == true) { EnablePstates.IsOn = true; } else { EnablePstates.IsOn = false; } + if (profile.turboboostpr9 == true) { Turbo_boost.IsOn = true; } else { Turbo_boost.IsOn = false; } + if (profile.autopstatepr9 == true) { Autoapply_1.IsOn = true; } else { Autoapply_1.IsOn = false; } + if (profile.p0ignorewarnpr9 == true) { Without_P0.IsOn = true; } else { Without_P0.IsOn = false; } + if (profile.ignorewarnpr9 == true) { IgnoreWarn.IsOn = true; } else { IgnoreWarn.IsOn = false; } + if (profile.a1pr9 == true) { a1v.Value = profile.a1pr9v; a1.IsChecked = true; } else { a1.IsChecked = false; } + if (profile.a2pr9 == true) { a2v.Value = profile.a2pr9v; a2.IsChecked = true; } else { a2.IsChecked = false; } + if (profile.a3pr9 == true) { a3v.Value = profile.a3pr9v; a3.IsChecked = true; } else { a3.IsChecked = false; } + if (profile.a4pr9 == true) { a4v.Value = profile.a4pr9v; a4.IsChecked = true; } else { a4.IsChecked = false; } + if (profile.a5pr9 == true) { a5v.Value = profile.a5pr9v; a5.IsChecked = true; } else { a5.IsChecked = false; } + if (profile.a6pr9 == true) { a6v.Value = profile.a6pr9v; a6.IsChecked = true; } else { a6.IsChecked = false; } + if (profile.a7pr9 == true) { a7v.Value = profile.a7pr9v; a7.IsChecked = true; } else { a7.IsChecked = false; } + if (profile.a8pr9 == true) { a8v.Value = profile.a8pr9v; a8.IsChecked = true; } else { a8.IsChecked = false; } + if (profile.a9pr9 == true) { a9v.Value = profile.a9pr9v; a9.IsChecked = true; } else { a9.IsChecked = false; } + if (profile.a10pr9 == true) { a10v.Value = profile.a10pr9v; a10.IsChecked = true; } else { a10.IsChecked = false; } + if (profile.a11pr9 == true) { a11v.Value = profile.a11pr9v; a11.IsChecked = true; } else { a11.IsChecked = false; } + if (profile.a12pr9 == true) { a12v.Value = profile.a12pr9v; a12.IsChecked = true; } else { a12.IsChecked = false; } + if (profile.a13pr9 == true) { a13m.SelectedIndex = profile.a13pr9v; a13.IsChecked = true; } else { a13.IsChecked = false; } } private async void ProfileCOM_SelectionChanged(object sender, Microsoft.UI.Xaml.Controls.SelectionChangedEventArgs e) { @@ -4870,1192 +3280,2976 @@ private void g10_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) ProfileSave(); } } - //Параметры процессора, при изменении слайдеров - //Максимальная температура CPU (C) - private async void c1_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + //Расширенные параметры + private void a1_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { - if (c1.IsChecked == true) + if (a1.IsChecked == true) { - devices.c1 = true; - devices.c1v = c1v.Value; + devices.a1 = true; + devices.a1v = a1v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.c1pr1 = true; - profile.c1pr1v = c1v.Value; + profile.a1pr1 = true; + profile.a1pr1v = a1v.Value; break; case 2: - profile.c1pr2 = true; - profile.c1pr2v = c1v.Value; + profile.a1pr2 = true; + profile.a1pr2v = a1v.Value; break; case 3: - profile.c1pr3 = true; - profile.c1pr3v = c1v.Value; + profile.a1pr3 = true; + profile.a1pr3v = a1v.Value; break; case 4: - profile.c1pr4 = true; - profile.c1pr4v = c1v.Value; + profile.a1pr4 = true; + profile.a1pr4v = a1v.Value; break; case 5: - profile.c1pr5 = true; - profile.c1pr5v = c1v.Value; + profile.a1pr5 = true; + profile.a1pr5v = a1v.Value; break; case 6: - profile.c1pr6 = true; - profile.c1pr6v = c1v.Value; + profile.a1pr6 = true; + profile.a1pr6v = a1v.Value; break; case 7: - profile.c1pr7 = true; - profile.c1pr7v = c1v.Value; + profile.a1pr7 = true; + profile.a1pr7v = a1v.Value; break; case 8: - profile.c1pr8 = true; - profile.c1pr8v = c1v.Value; + profile.a1pr8 = true; + profile.a1pr8v = a1v.Value; break; case 9: - profile.c1pr9 = true; - profile.c1pr9v = c1v.Value; + profile.a1pr9 = true; + profile.a1pr9v = a1v.Value; break; } ProfileSave(); } - else { SlidersInit(); } - await Task.Delay(20); - c1t.Content = c1v.Value.ToString(); - } - //Лимит CPU (W) - private async void c2_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) - { - if (c2.IsChecked == true) + else { - devices.c2 = true; - devices.c2v = c2v.Value; + devices.a1 = false; + devices.a1v = 800; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.c2pr1 = true; - profile.c2pr1v = c2v.Value; + profile.a1pr1 = false; break; case 2: - profile.c2pr2 = true; - profile.c2pr2v = c2v.Value; + profile.a1pr2 = false; break; case 3: - profile.c2pr3 = true; - profile.c2pr3v = c2v.Value; + profile.a1pr3 = false; break; case 4: - profile.c2pr4 = true; - profile.c2pr4v = c2v.Value; + profile.a1pr4 = false; break; case 5: - profile.c2pr5 = true; - profile.c2pr5v = c2v.Value; + profile.a1pr5 = false; break; case 6: - profile.c2pr6 = true; - profile.c2pr6v = c2v.Value; + profile.a1pr6 = false; break; case 7: - profile.c2pr7 = true; - profile.c2pr7v = c2v.Value; + profile.a1pr7 = false; break; case 8: - profile.c2pr8 = true; - profile.c2pr8v = c2v.Value; + profile.a1pr8 = false; break; case 9: - profile.c2pr9 = true; - profile.c2pr9v = c2v.Value; + profile.a1pr9 = false; break; } ProfileSave(); } - await Task.Delay(20); - c2t.Content = c2v.Value.ToString(); } - //Реальный CPU (W) - private async void c3_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private void a2_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { - if (c3.IsChecked == true) + if (a2.IsChecked == true) { - devices.c3 = true; - devices.c3v = c3v.Value; + devices.a2 = true; + devices.a2v = a2v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.c3pr1 = true; - profile.c3pr1v = c3v.Value; + profile.a2pr1 = true; + profile.a2pr1v = a2v.Value; break; case 2: - profile.c3pr2 = true; - profile.c3pr2v = c3v.Value; + profile.a2pr2 = true; + profile.a2pr2v = a2v.Value; break; case 3: - profile.c3pr3 = true; - profile.c3pr3v = c3v.Value; + profile.a2pr3 = true; + profile.a2pr3v = a2v.Value; break; case 4: - profile.c3pr4 = true; - profile.c3pr4v = c3v.Value; + profile.a2pr4 = true; + profile.a2pr4v = a2v.Value; break; case 5: - profile.c3pr5 = true; - profile.c3pr5v = c3v.Value; + profile.a2pr5 = true; + profile.a2pr5v = a2v.Value; break; case 6: - profile.c3pr6 = true; - profile.c3pr6v = c3v.Value; + profile.a2pr6 = true; + profile.a2pr6v = a2v.Value; break; case 7: - profile.c3pr7 = true; - profile.c3pr7v = c3v.Value; + profile.a2pr7 = true; + profile.a2pr7v = a2v.Value; break; case 8: - profile.c3pr8 = true; - profile.c3pr8v = c3v.Value; + profile.a2pr8 = true; + profile.a2pr8v = a2v.Value; break; case 9: - profile.c3pr9 = true; - profile.c3pr9v = c3v.Value; + profile.a2pr9 = true; + profile.a2pr9v = a2v.Value; break; } ProfileSave(); } - await Task.Delay(20); - c3t.Content = c3v.Value.ToString(); - } - //Средний CPU(W) - private async void c4_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) - { - if (c4.IsChecked == true) + else { - devices.c4 = true; - devices.c4v = c4v.Value; + devices.a2 = false; + devices.a2v = 1200; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.c4pr1 = true; - profile.c4pr1v = c4v.Value; + profile.a2pr1 = false; break; case 2: - profile.c4pr2 = true; - profile.c4pr2v = c4v.Value; + profile.a2pr2 = false; break; case 3: - profile.c4pr3 = true; - profile.c4pr3v = c4v.Value; + profile.a2pr3 = false; break; case 4: - profile.c4pr4 = true; - profile.c4pr4v = c4v.Value; + profile.a2pr4 = false; break; case 5: - profile.c4pr5 = true; - profile.c4pr5v = c4v.Value; + profile.a2pr5 = false; break; case 6: - profile.c4pr6 = true; - profile.c4pr6v = c4v.Value; + profile.a2pr6 = false; break; case 7: - profile.c4pr7 = true; - profile.c4pr7v = c4v.Value; + profile.a2pr7 = false; break; case 8: - profile.c4pr8 = true; - profile.c4pr8v = c4v.Value; + profile.a2pr8 = false; break; case 9: - profile.c4pr9 = true; - profile.c4pr9v = c4v.Value; + profile.a2pr9 = false; break; } ProfileSave(); } - await Task.Delay(20); - c4t.Content = c4v.Value.ToString(); } - //Тик быстрого разгона (S) - private async void c5_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private void a3_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { - if (c5.IsChecked == true) + if (a3.IsChecked == true) { - devices.c5 = true; - devices.c5v = c5v.Value; + devices.a3 = true; + devices.a3v = a3v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.c5pr1 = true; - profile.c5pr1v = c5v.Value; + profile.a3pr1 = true; + profile.a3pr1v = a3v.Value; break; case 2: - profile.c5pr2 = true; - profile.c5pr2v = c5v.Value; + profile.a3pr2 = true; + profile.a3pr2v = a3v.Value; break; case 3: - profile.c5pr3 = true; - profile.c5pr3v = c5v.Value; + profile.a3pr3 = true; + profile.a3pr3v = a3v.Value; break; case 4: - profile.c5pr4 = true; - profile.c5pr4v = c5v.Value; + profile.a3pr4 = true; + profile.a3pr4v = a3v.Value; break; case 5: - profile.c5pr5 = true; - profile.c5pr5v = c5v.Value; + profile.a3pr5 = true; + profile.a3pr5v = a3v.Value; break; case 6: - profile.c5pr6 = true; - profile.c5pr6v = c5v.Value; + profile.a3pr6 = true; + profile.a3pr6v = a3v.Value; break; case 7: - profile.c5pr7 = true; - profile.c5pr7v = c5v.Value; + profile.a3pr7 = true; + profile.a3pr7v = a3v.Value; break; case 8: - profile.c5pr8 = true; - profile.c5pr8v = c5v.Value; + profile.a3pr8 = true; + profile.a3pr8v = a3v.Value; break; case 9: - profile.c5pr9 = true; - profile.c5pr9v = c5v.Value; + profile.a3pr9 = true; + profile.a3pr9v = a3v.Value; break; } ProfileSave(); } - await Task.Delay(20); - c5t.Content = c5v.Value.ToString(); - } - //Тик медленного разгона (S) - private async void c6_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) - { - if (c6.IsChecked == true) + else { - devices.c6 = true; - devices.c6v = c6v.Value; + devices.a3 = false; + devices.a3v = 800; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.c6pr1 = true; - profile.c6pr1v = c6v.Value; + profile.a3pr1 = false; break; case 2: - profile.c6pr2 = true; - profile.c6pr2v = c6v.Value; + profile.a3pr2 = false; break; case 3: - profile.c6pr3 = true; - profile.c6pr3v = c6v.Value; + profile.a3pr3 = false; break; case 4: - profile.c6pr4 = true; - profile.c6pr4v = c6v.Value; + profile.a3pr4 = false; break; case 5: - profile.c6pr5 = true; - profile.c6pr5v = c6v.Value; + profile.a3pr5 = false; break; case 6: - profile.c6pr6 = true; - profile.c6pr6v = c6v.Value; + profile.a3pr6 = false; break; case 7: - profile.c6pr7 = true; - profile.c6pr7v = c6v.Value; + profile.a3pr7 = false; break; case 8: - profile.c6pr8 = true; - profile.c6pr8v = c6v.Value; + profile.a3pr8 = false; break; case 9: - profile.c6pr9 = true; - profile.c6pr9v = c6v.Value; + profile.a3pr9 = false; break; } ProfileSave(); } - await Task.Delay(20); - c6t.Content = c6v.Value.ToString(); } - //Параметры VRM - private async void v1v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private void a4_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { - if (V1.IsChecked == true) + if (a4.IsChecked == true) { - devices.v1 = true; - devices.v1v = V1V.Value; + devices.a4 = true; + devices.a4v = a4v.Value; DeviceSave(); - } - load = true; - switch (ProfileCOM.SelectedIndex) - { - case 1: - profile.v1pr1 = true; - profile.v1pr1v = V1V.Value; - break; - case 2: - profile.v1pr2 = true; - profile.v1pr2v = V1V.Value; - break; - case 3: - profile.v1pr3 = true; - profile.v1pr3v = V1V.Value; - break; - case 4: - profile.v1pr4 = true; - profile.v1pr4v = V1V.Value; - break; - case 5: - profile.v1pr5 = true; - profile.v1pr5v = V1V.Value; + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a4pr1 = true; + profile.a4pr1v = a4v.Value; + break; + case 2: + profile.a4pr2 = true; + profile.a4pr2v = a4v.Value; + break; + case 3: + profile.a4pr3 = true; + profile.a4pr3v = a4v.Value; + break; + case 4: + profile.a4pr4 = true; + profile.a4pr4v = a4v.Value; + break; + case 5: + profile.a4pr5 = true; + profile.a4pr5v = a4v.Value; + break; + case 6: + profile.a4pr6 = true; + profile.a4pr6v = a4v.Value; + break; + case 7: + profile.a4pr7 = true; + profile.a4pr7v = a4v.Value; + break; + case 8: + profile.a4pr8 = true; + profile.a4pr8v = a4v.Value; + break; + case 9: + profile.a4pr9 = true; + profile.a4pr9v = a4v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a4 = false; + devices.a4v = 1200; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a4pr1 = false; + break; + case 2: + profile.a4pr2 = false; + break; + case 3: + profile.a4pr3 = false; + break; + case 4: + profile.a4pr4 = false; + break; + case 5: + profile.a4pr5 = false; + break; + case 6: + profile.a4pr6 = false; + break; + case 7: + profile.a4pr7 = false; + break; + case 8: + profile.a4pr8 = false; + break; + case 9: + profile.a4pr9 = false; + break; + } + ProfileSave(); + } + } + private void a5_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a5.IsChecked == true) + { + devices.a5 = true; + devices.a5v = a5v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a5pr1 = true; + profile.a5pr1v = a5v.Value; + break; + case 2: + profile.a5pr2 = true; + profile.a5pr2v = a5v.Value; + break; + case 3: + profile.a5pr3 = true; + profile.a5pr3v = a5v.Value; + break; + case 4: + profile.a5pr4 = true; + profile.a5pr4v = a5v.Value; + break; + case 5: + profile.a5pr5 = true; + profile.a5pr5v = a5v.Value; + break; + case 6: + profile.a5pr6 = true; + profile.a5pr6v = a5v.Value; + break; + case 7: + profile.a5pr7 = true; + profile.a5pr7v = a5v.Value; + break; + case 8: + profile.a5pr8 = true; + profile.a5pr8v = a5v.Value; + break; + case 9: + profile.a5pr9 = true; + profile.a5pr9v = a5v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a5 = false; + devices.a5v = 400; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a5pr1 = false; + break; + case 2: + profile.a5pr2 = false; + break; + case 3: + profile.a5pr3 = false; + break; + case 4: + profile.a5pr4 = false; + break; + case 5: + profile.a5pr5 = false; + break; + case 6: + profile.a5pr6 = false; + break; + case 7: + profile.a5pr7 = false; + break; + case 8: + profile.a5pr8 = false; + break; + case 9: + profile.a5pr9 = false; + break; + } + ProfileSave(); + } + } + private void a6_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a6.IsChecked == true) + { + devices.a6 = true; + devices.a6v = a6v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a6pr1 = true; + profile.a6pr1v = a6v.Value; + break; + case 2: + profile.a6pr2 = true; + profile.a6pr2v = a6v.Value; + break; + case 3: + profile.a6pr3 = true; + profile.a6pr3v = a6v.Value; + break; + case 4: + profile.a6pr4 = true; + profile.a6pr4v = a6v.Value; + break; + case 5: + profile.a6pr5 = true; + profile.a6pr5v = a6v.Value; + break; + case 6: + profile.a6pr6 = true; + profile.a6pr6v = a6v.Value; + break; + case 7: + profile.a6pr7 = true; + profile.a6pr7v = a6v.Value; + break; + case 8: + profile.a6pr8 = true; + profile.a6pr8v = a6v.Value; + break; + case 9: + profile.a6pr9 = true; + profile.a6pr9v = a6v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a6 = false; + devices.a6v = 1200; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a6pr1 = false; + break; + case 2: + profile.a6pr2 = false; + break; + case 3: + profile.a6pr3 = false; + break; + case 4: + profile.a6pr4 = false; + break; + case 5: + profile.a6pr5 = false; + break; + case 6: + profile.a6pr6 = false; + break; + case 7: + profile.a6pr7 = false; + break; + case 8: + profile.a6pr8 = false; + break; + case 9: + profile.a6pr9 = false; + break; + } + ProfileSave(); + } + } + private void a7_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a7.IsChecked == true) + { + devices.a7 = true; + devices.a7v = a7v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a7pr1 = true; + profile.a7pr1v = a7v.Value; + break; + case 2: + profile.a7pr2 = true; + profile.a7pr2v = a7v.Value; + break; + case 3: + profile.a7pr3 = true; + profile.a7pr3v = a7v.Value; + break; + case 4: + profile.a7pr4 = true; + profile.a7pr4v = a7v.Value; + break; + case 5: + profile.a7pr5 = true; + profile.a7pr5v = a7v.Value; + break; + case 6: + profile.a7pr6 = true; + profile.a7pr6v = a7v.Value; + break; + case 7: + profile.a7pr7 = true; + profile.a7pr7v = a7v.Value; + break; + case 8: + profile.a7pr8 = true; + profile.a7pr8v = a7v.Value; + break; + case 9: + profile.a7pr9 = true; + profile.a7pr9v = a7v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a7 = false; + devices.a7v = 400; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a7pr1 = false; + break; + case 2: + profile.a7pr2 = false; + break; + case 3: + profile.a7pr3 = false; + break; + case 4: + profile.a7pr4 = false; + break; + case 5: + profile.a7pr5 = false; + break; + case 6: + profile.a7pr6 = false; + break; + case 7: + profile.a7pr7 = false; + break; + case 8: + profile.a7pr8 = false; + break; + case 9: + profile.a7pr9 = false; + break; + } + ProfileSave(); + } + } + private void a8_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a8.IsChecked == true) + { + devices.a8 = true; + devices.a8v = a8v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a8pr1 = true; + profile.a8pr1v = a8v.Value; + break; + case 2: + profile.a8pr2 = true; + profile.a8pr2v = a8v.Value; + break; + case 3: + profile.a8pr3 = true; + profile.a8pr3v = a8v.Value; + break; + case 4: + profile.a8pr4 = true; + profile.a8pr4v = a8v.Value; + break; + case 5: + profile.a8pr5 = true; + profile.a8pr5v = a8v.Value; + break; + case 6: + profile.a8pr6 = true; + profile.a8pr6v = a8v.Value; + break; + case 7: + profile.a8pr7 = true; + profile.a8pr7v = a8v.Value; + break; + case 8: + profile.a8pr8 = true; + profile.a8pr8v = a8v.Value; + break; + case 9: + profile.a8pr9 = true; + profile.a8pr9v = a8v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a8 = false; + devices.a8v = 1200; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a8pr1 = false; + break; + case 2: + profile.a8pr2 = false; + break; + case 3: + profile.a8pr3 = false; + break; + case 4: + profile.a8pr4 = false; + break; + case 5: + profile.a8pr5 = false; + break; + case 6: + profile.a8pr6 = false; + break; + case 7: + profile.a8pr7 = false; + break; + case 8: + profile.a8pr8 = false; + break; + case 9: + profile.a8pr9 = false; + break; + } + ProfileSave(); + } + } + private void a9_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a9.IsChecked == true) + { + devices.a9 = true; + devices.a9v = a9v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a9pr1 = true; + profile.a9pr1v = a9v.Value; + break; + case 2: + profile.a9pr2 = true; + profile.a9pr2v = a9v.Value; + break; + case 3: + profile.a9pr3 = true; + profile.a9pr3v = a9v.Value; + break; + case 4: + profile.a9pr4 = true; + profile.a9pr4v = a9v.Value; + break; + case 5: + profile.a9pr5 = true; + profile.a9pr5v = a9v.Value; + break; + case 6: + profile.a9pr6 = true; + profile.a9pr6v = a9v.Value; + break; + case 7: + profile.a9pr7 = true; + profile.a9pr7v = a9v.Value; + break; + case 8: + profile.a9pr8 = true; + profile.a9pr8v = a9v.Value; + break; + case 9: + profile.a9pr9 = true; + profile.a9pr9v = a9v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a9 = false; + devices.a9v = 400; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a9pr1 = false; + break; + case 2: + profile.a9pr2 = false; + break; + case 3: + profile.a9pr3 = false; + break; + case 4: + profile.a9pr4 = false; + break; + case 5: + profile.a9pr5 = false; + break; + case 6: + profile.a9pr6 = false; + break; + case 7: + profile.a9pr7 = false; + break; + case 8: + profile.a9pr8 = false; + break; + case 9: + profile.a9pr9 = false; + break; + } + ProfileSave(); + } + } + private void a10_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a10.IsChecked == true) + { + devices.a10 = true; + devices.a10v = a10v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a10pr1 = true; + profile.a10pr1v = a10v.Value; + break; + case 2: + profile.a10pr2 = true; + profile.a10pr2v = a10v.Value; + break; + case 3: + profile.a10pr3 = true; + profile.a10pr3v = a10v.Value; + break; + case 4: + profile.a10pr4 = true; + profile.a10pr4v = a10v.Value; + break; + case 5: + profile.a10pr5 = true; + profile.a10pr5v = a10v.Value; + break; + case 6: + profile.a10pr6 = true; + profile.a10pr6v = a10v.Value; + break; + case 7: + profile.a10pr7 = true; + profile.a10pr7v = a10v.Value; + break; + case 8: + profile.a10pr8 = true; + profile.a10pr8v = a10v.Value; + break; + case 9: + profile.a10pr9 = true; + profile.a10pr9v = a10v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a10 = false; + devices.a10v = 1200; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a10pr1 = false; + break; + case 2: + profile.a10pr2 = false; + break; + case 3: + profile.a10pr3 = false; + break; + case 4: + profile.a10pr4 = false; + break; + case 5: + profile.a10pr5 = false; + break; + case 6: + profile.a10pr6 = false; + break; + case 7: + profile.a10pr7 = false; + break; + case 8: + profile.a10pr8 = false; + break; + case 9: + profile.a10pr9 = false; + break; + } + ProfileSave(); + } + } + private void a11_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a11.IsChecked == true) + { + devices.a11 = true; + devices.a11v = a11v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a11pr1 = true; + profile.a11pr1v = a11v.Value; + break; + case 2: + profile.a11pr2 = true; + profile.a11pr2v = a11v.Value; + break; + case 3: + profile.a11pr3 = true; + profile.a11pr3v = a11v.Value; + break; + case 4: + profile.a11pr4 = true; + profile.a11pr4v = a11v.Value; + break; + case 5: + profile.a11pr5 = true; + profile.a11pr5v = a11v.Value; + break; + case 6: + profile.a11pr6 = true; + profile.a11pr6v = a11v.Value; + break; + case 7: + profile.a11pr7 = true; + profile.a11pr7v = a11v.Value; + break; + case 8: + profile.a11pr8 = true; + profile.a11pr8v = a11v.Value; + break; + case 9: + profile.a11pr9 = true; + profile.a11pr9v = a11v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a11 = false; + devices.a11v = 1200; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a11pr1 = false; + break; + case 2: + profile.a11pr2 = false; + break; + case 3: + profile.a11pr3 = false; + break; + case 4: + profile.a11pr4 = false; + break; + case 5: + profile.a11pr5 = false; + break; + case 6: + profile.a11pr6 = false; + break; + case 7: + profile.a11pr7 = false; + break; + case 8: + profile.a11pr8 = false; + break; + case 9: + profile.a11pr9 = false; + break; + } + ProfileSave(); + } + } + private void a12_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a12.IsChecked == true) + { + devices.a12 = true; + devices.a12v = a12v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a12pr1 = true; + profile.a12pr1v = a12v.Value; + break; + case 2: + profile.a12pr2 = true; + profile.a12pr2v = a12v.Value; + break; + case 3: + profile.a12pr3 = true; + profile.a12pr3v = a12v.Value; + break; + case 4: + profile.a12pr4 = true; + profile.a12pr4v = a12v.Value; + break; + case 5: + profile.a12pr5 = true; + profile.a12pr5v = a12v.Value; + break; + case 6: + profile.a12pr6 = true; + profile.a12pr6v = a12v.Value; + break; + case 7: + profile.a12pr7 = true; + profile.a12pr7v = a12v.Value; + break; + case 8: + profile.a12pr8 = true; + profile.a12pr8v = a12v.Value; + break; + case 9: + profile.a12pr9 = true; + profile.a12pr9v = a12v.Value; + break; + } + ProfileSave(); + } + else + { + devices.a12 = false; + devices.a12v = 400; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a12pr1 = false; + break; + case 2: + profile.a12pr2 = false; + break; + case 3: + profile.a12pr3 = false; + break; + case 4: + profile.a12pr4 = false; + break; + case 5: + profile.a12pr5 = false; + break; + case 6: + profile.a12pr6 = false; + break; + case 7: + profile.a12pr7 = false; + break; + case 8: + profile.a12pr8 = false; + break; + case 9: + profile.a12pr9 = false; + break; + } + ProfileSave(); + } + } + private void a13_Checked(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + { + if (a13.IsChecked == true) + { + devices.a13 = true; + devices.a13v = a13m.SelectedIndex; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a13pr1 = true; + profile.a13pr1v = a13m.SelectedIndex; + break; + case 2: + profile.a13pr2 = true; + profile.a13pr2v = a13m.SelectedIndex; + break; + case 3: + profile.a13pr3 = true; + profile.a13pr3v = a13m.SelectedIndex; + break; + case 4: + profile.a13pr4 = true; + profile.a13pr4v = a13m.SelectedIndex; + break; + case 5: + profile.a13pr5 = true; + profile.a13pr5v = a13m.SelectedIndex; + break; + case 6: + profile.a13pr6 = true; + profile.a13pr6v = a13m.SelectedIndex; + break; + case 7: + profile.a13pr7 = true; + profile.a13pr7v = a13m.SelectedIndex; + break; + case 8: + profile.a13pr8 = true; + profile.a13pr8v = a13m.SelectedIndex; + break; + case 9: + profile.a13pr9 = true; + profile.a13pr9v = a13m.SelectedIndex; + break; + } + ProfileSave(); + } + else + { + devices.a13 = false; + devices.a13v = 1200; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.a13pr1 = false; + break; + case 2: + profile.a13pr2 = false; + break; + case 3: + profile.a13pr3 = false; + break; + case 4: + profile.a13pr4 = false; + break; + case 5: + profile.a13pr5 = false; + break; + case 6: + profile.a13pr6 = false; + break; + case 7: + profile.a13pr7 = false; + break; + case 8: + profile.a13pr8 = false; + break; + case 9: + profile.a13pr9 = false; + break; + } + ProfileSave(); + } + } + //Параметры процессора, при изменении слайдеров + //Максимальная температура CPU (C) + private async void c1_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (c1.IsChecked == true) + { + devices.c1 = true; + devices.c1v = c1v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.c1pr1 = true; + profile.c1pr1v = c1v.Value; + break; + case 2: + profile.c1pr2 = true; + profile.c1pr2v = c1v.Value; + break; + case 3: + profile.c1pr3 = true; + profile.c1pr3v = c1v.Value; + break; + case 4: + profile.c1pr4 = true; + profile.c1pr4v = c1v.Value; + break; + case 5: + profile.c1pr5 = true; + profile.c1pr5v = c1v.Value; + break; + case 6: + profile.c1pr6 = true; + profile.c1pr6v = c1v.Value; + break; + case 7: + profile.c1pr7 = true; + profile.c1pr7v = c1v.Value; + break; + case 8: + profile.c1pr8 = true; + profile.c1pr8v = c1v.Value; + break; + case 9: + profile.c1pr9 = true; + profile.c1pr9v = c1v.Value; + break; + } + ProfileSave(); + } + else { SlidersInit(); } + await Task.Delay(20); + c1t.Content = c1v.Value.ToString(); + } + //Лимит CPU (W) + private async void c2_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (c2.IsChecked == true) + { + devices.c2 = true; + devices.c2v = c2v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.c2pr1 = true; + profile.c2pr1v = c2v.Value; + break; + case 2: + profile.c2pr2 = true; + profile.c2pr2v = c2v.Value; + break; + case 3: + profile.c2pr3 = true; + profile.c2pr3v = c2v.Value; + break; + case 4: + profile.c2pr4 = true; + profile.c2pr4v = c2v.Value; + break; + case 5: + profile.c2pr5 = true; + profile.c2pr5v = c2v.Value; + break; + case 6: + profile.c2pr6 = true; + profile.c2pr6v = c2v.Value; + break; + case 7: + profile.c2pr7 = true; + profile.c2pr7v = c2v.Value; + break; + case 8: + profile.c2pr8 = true; + profile.c2pr8v = c2v.Value; + break; + case 9: + profile.c2pr9 = true; + profile.c2pr9v = c2v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + c2t.Content = c2v.Value.ToString(); + } + //Реальный CPU (W) + private async void c3_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (c3.IsChecked == true) + { + devices.c3 = true; + devices.c3v = c3v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.c3pr1 = true; + profile.c3pr1v = c3v.Value; + break; + case 2: + profile.c3pr2 = true; + profile.c3pr2v = c3v.Value; + break; + case 3: + profile.c3pr3 = true; + profile.c3pr3v = c3v.Value; + break; + case 4: + profile.c3pr4 = true; + profile.c3pr4v = c3v.Value; + break; + case 5: + profile.c3pr5 = true; + profile.c3pr5v = c3v.Value; + break; + case 6: + profile.c3pr6 = true; + profile.c3pr6v = c3v.Value; + break; + case 7: + profile.c3pr7 = true; + profile.c3pr7v = c3v.Value; + break; + case 8: + profile.c3pr8 = true; + profile.c3pr8v = c3v.Value; + break; + case 9: + profile.c3pr9 = true; + profile.c3pr9v = c3v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + c3t.Content = c3v.Value.ToString(); + } + //Средний CPU(W) + private async void c4_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (c4.IsChecked == true) + { + devices.c4 = true; + devices.c4v = c4v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.c4pr1 = true; + profile.c4pr1v = c4v.Value; + break; + case 2: + profile.c4pr2 = true; + profile.c4pr2v = c4v.Value; + break; + case 3: + profile.c4pr3 = true; + profile.c4pr3v = c4v.Value; + break; + case 4: + profile.c4pr4 = true; + profile.c4pr4v = c4v.Value; + break; + case 5: + profile.c4pr5 = true; + profile.c4pr5v = c4v.Value; + break; + case 6: + profile.c4pr6 = true; + profile.c4pr6v = c4v.Value; + break; + case 7: + profile.c4pr7 = true; + profile.c4pr7v = c4v.Value; + break; + case 8: + profile.c4pr8 = true; + profile.c4pr8v = c4v.Value; + break; + case 9: + profile.c4pr9 = true; + profile.c4pr9v = c4v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + c4t.Content = c4v.Value.ToString(); + } + //Тик быстрого разгона (S) + private async void c5_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (c5.IsChecked == true) + { + devices.c5 = true; + devices.c5v = c5v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.c5pr1 = true; + profile.c5pr1v = c5v.Value; + break; + case 2: + profile.c5pr2 = true; + profile.c5pr2v = c5v.Value; + break; + case 3: + profile.c5pr3 = true; + profile.c5pr3v = c5v.Value; + break; + case 4: + profile.c5pr4 = true; + profile.c5pr4v = c5v.Value; + break; + case 5: + profile.c5pr5 = true; + profile.c5pr5v = c5v.Value; + break; + case 6: + profile.c5pr6 = true; + profile.c5pr6v = c5v.Value; + break; + case 7: + profile.c5pr7 = true; + profile.c5pr7v = c5v.Value; + break; + case 8: + profile.c5pr8 = true; + profile.c5pr8v = c5v.Value; + break; + case 9: + profile.c5pr9 = true; + profile.c5pr9v = c5v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + c5t.Content = c5v.Value.ToString(); + } + //Тик медленного разгона (S) + private async void c6_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (c6.IsChecked == true) + { + devices.c6 = true; + devices.c6v = c6v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.c6pr1 = true; + profile.c6pr1v = c6v.Value; + break; + case 2: + profile.c6pr2 = true; + profile.c6pr2v = c6v.Value; + break; + case 3: + profile.c6pr3 = true; + profile.c6pr3v = c6v.Value; + break; + case 4: + profile.c6pr4 = true; + profile.c6pr4v = c6v.Value; + break; + case 5: + profile.c6pr5 = true; + profile.c6pr5v = c6v.Value; + break; + case 6: + profile.c6pr6 = true; + profile.c6pr6v = c6v.Value; + break; + case 7: + profile.c6pr7 = true; + profile.c6pr7v = c6v.Value; + break; + case 8: + profile.c6pr8 = true; + profile.c6pr8v = c6v.Value; + break; + case 9: + profile.c6pr9 = true; + profile.c6pr9v = c6v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + c6t.Content = c6v.Value.ToString(); + } + //Параметры VRM + private async void v1v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (V1.IsChecked == true) + { + devices.v1 = true; + devices.v1v = V1V.Value; + DeviceSave(); + } + load = true; + switch (ProfileCOM.SelectedIndex) + { + case 1: + //fixes everytime enabled This parameter on custom preset + // profile.v1pr1 = true; + profile.v1pr1v = V1V.Value; + break; + case 2: + //profile.v1pr2 = true; + profile.v1pr2v = V1V.Value; + break; + case 3: + //profile.v1pr3 = true; + profile.v1pr3v = V1V.Value; + break; + case 4: + //profile.v1pr4 = true; + profile.v1pr4v = V1V.Value; + break; + case 5: + // profile.v1pr5 = true; + profile.v1pr5v = V1V.Value; break; case 6: - profile.v1pr6 = true; + //profile.v1pr6 = true; profile.v1pr6v = V1V.Value; break; case 7: - profile.v1pr7 = true; + // profile.v1pr7 = true; profile.v1pr7v = V1V.Value; break; case 8: - profile.v1pr8 = true; + // profile.v1pr8 = true; profile.v1pr8v = V1V.Value; break; case 9: - profile.v1pr9 = true; + // profile.v1pr9 = true; profile.v1pr9v = V1V.Value; break; } - ProfileSave(); + ProfileSave(); + await Task.Delay(20); + v1t.Content = V1V.Value.ToString(); + } + private async void v2v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (V2.IsChecked == true) + { + devices.v2 = true; + devices.v2v = V2V.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.v2pr1 = true; + profile.v2pr1v = V2V.Value; + break; + case 2: + profile.v2pr2 = true; + profile.v2pr2v = V2V.Value; + break; + case 3: + profile.v2pr3 = true; + profile.v2pr3v = V2V.Value; + break; + case 4: + profile.v2pr4 = true; + profile.v2pr4v = V2V.Value; + break; + case 5: + profile.v2pr5 = true; + profile.v2pr5v = V2V.Value; + break; + case 6: + profile.v2pr6 = true; + profile.v2pr6v = V2V.Value; + break; + case 7: + profile.v2pr7 = true; + profile.v2pr7v = V2V.Value; + break; + case 8: + profile.v2pr8 = true; + profile.v2pr8v = V2V.Value; + break; + case 9: + profile.v2pr9 = true; + profile.v2pr9v = V2V.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + v2t.Content = V2V.Value.ToString(); + } + private async void v3v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (V3.IsChecked == true) + { + devices.v3 = true; + devices.v3v = V3V.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.v3pr1 = true; + profile.v3pr1v = V3V.Value; + break; + case 2: + profile.v3pr2 = true; + profile.v3pr2v = V3V.Value; + break; + case 3: + profile.v3pr3 = true; + profile.v3pr3v = V3V.Value; + break; + case 4: + profile.v3pr4 = true; + profile.v3pr4v = V3V.Value; + break; + case 5: + profile.v3pr5 = true; + profile.v3pr5v = V3V.Value; + break; + case 6: + profile.v3pr6 = true; + profile.v3pr6v = V3V.Value; + break; + case 7: + profile.v3pr7 = true; + profile.v3pr7v = V3V.Value; + break; + case 8: + profile.v3pr8 = true; + profile.v3pr8v = V3V.Value; + break; + case 9: + profile.v3pr9 = true; + profile.v3pr9v = V3V.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + v3t.Content = V3V.Value.ToString(); + } + private async void v4v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (V4.IsChecked == true) + { + devices.v4 = true; + devices.v4v = V4V.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.v4pr1 = true; + profile.v4pr1v = V4V.Value; + break; + case 2: + profile.v4pr2 = true; + profile.v4pr2v = V4V.Value; + break; + case 3: + profile.v4pr3 = true; + profile.v4pr3v = V4V.Value; + break; + case 4: + profile.v4pr4 = true; + profile.v4pr4v = V4V.Value; + break; + case 5: + profile.v4pr5 = true; + profile.v4pr5v = V4V.Value; + break; + case 6: + profile.v4pr6 = true; + profile.v4pr6v = V4V.Value; + break; + case 7: + profile.v4pr7 = true; + profile.v4pr7v = V4V.Value; + break; + case 8: + profile.v4pr8 = true; + profile.v4pr8v = V4V.Value; + break; + case 9: + profile.v4pr9 = true; + profile.v4pr9v = V4V.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + v4t.Content = V4V.Value.ToString(); + } + private async void v5v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (V5.IsChecked == true) + { + devices.v5 = true; + devices.v5v = V5V.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.v5pr1 = true; + profile.v5pr1v = V5V.Value; + break; + case 2: + profile.v5pr2 = true; + profile.v5pr2v = V5V.Value; + break; + case 3: + profile.v5pr3 = true; + profile.v5pr3v = V5V.Value; + break; + case 4: + profile.v5pr4 = true; + profile.v5pr4v = V5V.Value; + break; + case 5: + profile.v5pr5 = true; + profile.v5pr5v = V5V.Value; + break; + case 6: + profile.v5pr6 = true; + profile.v5pr6v = V5V.Value; + break; + case 7: + profile.v5pr7 = true; + profile.v5pr7v = V5V.Value; + break; + case 8: + profile.v5pr8 = true; + profile.v5pr8v = V5V.Value; + break; + case 9: + profile.v5pr9 = true; + profile.v5pr9v = V5V.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + v5t.Content = V5V.Value.ToString(); + } + private async void v6v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (V6.IsChecked == true) + { + devices.v6 = true; + devices.v6v = V6V.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.v6pr1 = true; + profile.v6pr1v = V6V.Value; + break; + case 2: + profile.v6pr2 = true; + profile.v6pr2v = V6V.Value; + break; + case 3: + profile.v6pr3 = true; + profile.v6pr3v = V6V.Value; + break; + case 4: + profile.v6pr4 = true; + profile.v6pr4v = V6V.Value; + break; + case 5: + profile.v6pr5 = true; + profile.v6pr5v = V6V.Value; + break; + case 6: + profile.v6pr6 = true; + profile.v6pr6v = V6V.Value; + break; + case 7: + profile.v6pr7 = true; + profile.v6pr7v = V6V.Value; + break; + case 8: + profile.v6pr8 = true; + profile.v6pr8v = V6V.Value; + break; + case 9: + profile.v6pr9 = true; + profile.v6pr9v = V6V.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + v6t.Content = V6V.Value.ToString(); + } + private async void v7v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (V7.IsChecked == true) + { + devices.v7 = true; + devices.v7v = V7V.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.v7pr1 = true; + profile.v7pr1v = V7V.Value; + break; + case 2: + profile.v7pr2 = true; + profile.v7pr2v = V7V.Value; + break; + case 3: + profile.v7pr3 = true; + profile.v7pr3v = V7V.Value; + break; + case 4: + profile.v7pr4 = true; + profile.v7pr4v = V7V.Value; + break; + case 5: + profile.v7pr5 = true; + profile.v7pr5v = V7V.Value; + break; + case 6: + profile.v7pr6 = true; + profile.v7pr6v = V7V.Value; + break; + case 7: + profile.v7pr7 = true; + profile.v7pr7v = V7V.Value; + break; + case 8: + profile.v7pr8 = true; + profile.v7pr8v = V7V.Value; + break; + case 9: + profile.v7pr9 = true; + profile.v7pr9v = V7V.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + v7t.Content = V7V.Value.ToString(); + } + //Параметры GPU + private async void g1v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (g1.IsChecked == true) + { + devices.g1 = true; + devices.g1v = g1v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.g1pr1 = true; + profile.g1pr1v = g1v.Value; + break; + case 2: + profile.g1pr2 = true; + profile.g1pr2v = g1v.Value; + break; + case 3: + profile.g1pr3 = true; + profile.g1pr3v = g1v.Value; + break; + case 4: + profile.g1pr4 = true; + profile.g1pr4v = g1v.Value; + break; + case 5: + profile.g1pr5 = true; + profile.g1pr5v = g1v.Value; + break; + case 6: + profile.g1pr6 = true; + profile.g1pr6v = g1v.Value; + break; + case 7: + profile.g1pr7 = true; + profile.g1pr7v = g1v.Value; + break; + case 8: + profile.g1pr8 = true; + profile.g1pr8v = g1v.Value; + break; + case 9: + profile.g1pr9 = true; + profile.g1pr9v = g1v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + g1t.Content = g1v.Value.ToString(); + } + private async void g2v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (g2.IsChecked == true) + { + devices.g2 = true; + devices.g2v = g2v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.g2pr1 = true; + profile.g2pr1v = g2v.Value; + break; + case 2: + profile.g2pr2 = true; + profile.g2pr2v = g2v.Value; + break; + case 3: + profile.g2pr3 = true; + profile.g2pr3v = g2v.Value; + break; + case 4: + profile.g2pr4 = true; + profile.g2pr4v = g2v.Value; + break; + case 5: + profile.g2pr5 = true; + profile.g2pr5v = g2v.Value; + break; + case 6: + profile.g2pr6 = true; + profile.g2pr6v = g2v.Value; + break; + case 7: + profile.g2pr7 = true; + profile.g2pr7v = g2v.Value; + break; + case 8: + profile.g2pr8 = true; + profile.g2pr8v = g2v.Value; + break; + case 9: + profile.g2pr9 = true; + profile.g2pr9v = g2v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + g2t.Content = g2v.Value.ToString(); + } + private async void g3v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (g3.IsChecked == true) + { + devices.g3 = true; + devices.g3v = g3v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.g3pr1 = true; + profile.g3pr1v = g3v.Value; + break; + case 2: + profile.g3pr2 = true; + profile.g3pr2v = g3v.Value; + break; + case 3: + profile.g3pr3 = true; + profile.g3pr3v = g3v.Value; + break; + case 4: + profile.g3pr4 = true; + profile.g3pr4v = g3v.Value; + break; + case 5: + profile.g3pr5 = true; + profile.g3pr5v = g3v.Value; + break; + case 6: + profile.g3pr6 = true; + profile.g3pr6v = g3v.Value; + break; + case 7: + profile.g3pr7 = true; + profile.g3pr7v = g3v.Value; + break; + case 8: + profile.g3pr8 = true; + profile.g3pr8v = g3v.Value; + break; + case 9: + profile.g3pr9 = true; + profile.g3pr9v = g3v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + g3t.Content = g3v.Value.ToString(); + } + private async void g4v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (g4.IsChecked == true) + { + devices.g4 = true; + devices.g4v = g4v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.g4pr1 = true; + profile.g4pr1v = g4v.Value; + break; + case 2: + profile.g4pr2 = true; + profile.g4pr2v = g4v.Value; + break; + case 3: + profile.g4pr3 = true; + profile.g4pr3v = g4v.Value; + break; + case 4: + profile.g4pr4 = true; + profile.g4pr4v = g4v.Value; + break; + case 5: + profile.g4pr5 = true; + profile.g4pr5v = g4v.Value; + break; + case 6: + profile.g4pr6 = true; + profile.g4pr6v = g4v.Value; + break; + case 7: + profile.g4pr7 = true; + profile.g4pr7v = g4v.Value; + break; + case 8: + profile.g4pr8 = true; + profile.g4pr8v = g4v.Value; + break; + case 9: + profile.g4pr9 = true; + profile.g4pr9v = g4v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + g4t.Content = g4v.Value.ToString(); + } + private async void g5v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (g5.IsChecked == true) + { + devices.g5 = true; + devices.g5v = g5v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.g5pr1 = true; + profile.g5pr1v = g5v.Value; + break; + case 2: + profile.g5pr2 = true; + profile.g5pr2v = g5v.Value; + break; + case 3: + profile.g5pr3 = true; + profile.g5pr3v = g5v.Value; + break; + case 4: + profile.g5pr4 = true; + profile.g5pr4v = g5v.Value; + break; + case 5: + profile.g5pr5 = true; + profile.g5pr5v = g5v.Value; + break; + case 6: + profile.g5pr6 = true; + profile.g5pr6v = g5v.Value; + break; + case 7: + profile.g5pr7 = true; + profile.g5pr7v = g5v.Value; + break; + case 8: + profile.g5pr8 = true; + profile.g5pr8v = g5v.Value; + break; + case 9: + profile.g5pr9 = true; + profile.g5pr9v = g5v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + g5t.Content = g5v.Value.ToString(); + } + private async void g6v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (g6.IsChecked == true) + { + devices.g6 = true; + devices.g6v = g6v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.g6pr1 = true; + profile.g6pr1v = g6v.Value; + break; + case 2: + profile.g6pr2 = true; + profile.g6pr2v = g6v.Value; + break; + case 3: + profile.g6pr3 = true; + profile.g6pr3v = g6v.Value; + break; + case 4: + profile.g6pr4 = true; + profile.g6pr4v = g6v.Value; + break; + case 5: + profile.g6pr5 = true; + profile.g6pr5v = g6v.Value; + break; + case 6: + profile.g6pr6 = true; + profile.g6pr6v = g6v.Value; + break; + case 7: + profile.g6pr7 = true; + profile.g6pr7v = g6v.Value; + break; + case 8: + profile.g6pr8 = true; + profile.g6pr8v = g6v.Value; + break; + case 9: + profile.g6pr9 = true; + profile.g6pr9v = g6v.Value; + break; + } + ProfileSave(); + } + await Task.Delay(20); + g6t.Content = g6v.Value.ToString(); + } + private async void g7v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + { + if (g7.IsChecked == true) + { + devices.g7 = true; + devices.g7v = g7v.Value; + DeviceSave(); + switch (ProfileCOM.SelectedIndex) + { + case 1: + profile.g7pr1 = true; + profile.g7pr1v = g7v.Value; + break; + case 2: + profile.g7pr2 = true; + profile.g7pr2v = g7v.Value; + break; + case 3: + profile.g7pr3 = true; + profile.g7pr3v = g7v.Value; + break; + case 4: + profile.g7pr4 = true; + profile.g7pr4v = g7v.Value; + break; + case 5: + profile.g7pr5 = true; + profile.g7pr5v = g7v.Value; + break; + case 6: + profile.g7pr6 = true; + profile.g7pr6v = g7v.Value; + break; + case 7: + profile.g7pr7 = true; + profile.g7pr7v = g7v.Value; + break; + case 8: + profile.g7pr8 = true; + profile.g7pr8v = g7v.Value; + break; + case 9: + profile.g7pr9 = true; + profile.g7pr9v = g7v.Value; + break; + } + ProfileSave(); + } await Task.Delay(20); - v1t.Content = V1V.Value.ToString(); + g7t.Content = g7v.Value.ToString(); } - private async void v2v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void g8v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (V2.IsChecked == true) + if (g8.IsChecked == true) { - devices.v2 = true; - devices.v2v = V2V.Value; + devices.g8 = true; + devices.g8v = g8v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.v2pr1 = true; - profile.v2pr1v = V2V.Value; + profile.g8pr1 = true; + profile.g8pr1v = g8v.Value; break; case 2: - profile.v2pr2 = true; - profile.v2pr2v = V2V.Value; + profile.g8pr2 = true; + profile.g8pr2v = g8v.Value; break; case 3: - profile.v2pr3 = true; - profile.v2pr3v = V2V.Value; + profile.g8pr3 = true; + profile.g8pr3v = g8v.Value; break; case 4: - profile.v2pr4 = true; - profile.v2pr4v = V2V.Value; + profile.g8pr4 = true; + profile.g8pr4v = g8v.Value; break; case 5: - profile.v2pr5 = true; - profile.v2pr5v = V2V.Value; + profile.g8pr5 = true; + profile.g8pr5v = g8v.Value; break; case 6: - profile.v2pr6 = true; - profile.v2pr6v = V2V.Value; + profile.g8pr6 = true; + profile.g8pr6v = g8v.Value; break; case 7: - profile.v2pr7 = true; - profile.v2pr7v = V2V.Value; + profile.g8pr7 = true; + profile.g8pr7v = g8v.Value; break; case 8: - profile.v2pr8 = true; - profile.v2pr8v = V2V.Value; + profile.g8pr8 = true; + profile.g8pr8v = g8v.Value; break; case 9: - profile.v2pr9 = true; - profile.v2pr9v = V2V.Value; + profile.g8pr9 = true; + profile.g8pr9v = g8v.Value; break; } ProfileSave(); } await Task.Delay(20); - v2t.Content = V2V.Value.ToString(); + g8t.Content = g8v.Value.ToString(); } - private async void v3v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void g9v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (V3.IsChecked == true) + if (g9.IsChecked == true) { - devices.v3 = true; - devices.v3v = V3V.Value; + devices.g9 = true; + devices.g9v = g9v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.v3pr1 = true; - profile.v3pr1v = V3V.Value; + profile.g9pr1 = true; + profile.g9pr1v = g9v.Value; break; case 2: - profile.v3pr2 = true; - profile.v3pr2v = V3V.Value; + profile.g9pr2 = true; + profile.g9pr2v = g9v.Value; break; case 3: - profile.v3pr3 = true; - profile.v3pr3v = V3V.Value; + profile.g9pr3 = true; + profile.g9pr3v = g9v.Value; break; case 4: - profile.v3pr4 = true; - profile.v3pr4v = V3V.Value; + profile.g9pr4 = true; + profile.g9pr4v = g9v.Value; break; case 5: - profile.v3pr5 = true; - profile.v3pr5v = V3V.Value; + profile.g9pr5 = true; + profile.g9pr5v = g9v.Value; break; case 6: - profile.v3pr6 = true; - profile.v3pr6v = V3V.Value; + profile.g9pr6 = true; + profile.g9pr6v = g9v.Value; break; case 7: - profile.v3pr7 = true; - profile.v3pr7v = V3V.Value; + profile.g9pr7 = true; + profile.g9pr7v = g9v.Value; break; case 8: - profile.v3pr8 = true; - profile.v3pr8v = V3V.Value; + profile.g9pr8 = true; + profile.g9pr8v = g9v.Value; break; case 9: - profile.v3pr9 = true; - profile.v3pr9v = V3V.Value; + profile.g9pr9 = true; + profile.g9pr9v = g9v.Value; break; } ProfileSave(); } await Task.Delay(20); - v3t.Content = V3V.Value.ToString(); + g9t.Content = g9v.Value.ToString(); } - private async void v4v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void g10v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (V4.IsChecked == true) + if (g10.IsChecked == true) { - devices.v4 = true; - devices.v4v = V4V.Value; + devices.g10 = true; + devices.g10v = g10v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.v4pr1 = true; - profile.v4pr1v = V4V.Value; + profile.g10pr1 = true; + profile.g10pr1v = g10v.Value; break; case 2: - profile.v4pr2 = true; - profile.v4pr2v = V4V.Value; + profile.g10pr2 = true; + profile.g10pr2v = g10v.Value; break; case 3: - profile.v4pr3 = true; - profile.v4pr3v = V4V.Value; + profile.g10pr3 = true; + profile.g10pr3v = g10v.Value; break; case 4: - profile.v4pr4 = true; - profile.v4pr4v = V4V.Value; + profile.g10pr4 = true; + profile.g10pr4v = g10v.Value; break; case 5: - profile.v4pr5 = true; - profile.v4pr5v = V4V.Value; + profile.g10pr5 = true; + profile.g10pr5v = g10v.Value; break; case 6: - profile.v4pr6 = true; - profile.v4pr6v = V4V.Value; + profile.g10pr6 = true; + profile.g10pr6v = g10v.Value; break; case 7: - profile.v4pr7 = true; - profile.v4pr7v = V4V.Value; + profile.g10pr7 = true; + profile.g10pr7v = g10v.Value; break; case 8: - profile.v4pr8 = true; - profile.v4pr8v = V4V.Value; + profile.g10pr8 = true; + profile.g10pr8v = g10v.Value; break; case 9: - profile.v4pr9 = true; - profile.v4pr9v = V4V.Value; + profile.g10pr9 = true; + profile.g10pr9v = g10v.Value; break; } ProfileSave(); } await Task.Delay(20); - v4t.Content = V4V.Value.ToString(); + g10t.Content = g10v.Value.ToString(); } - private async void v5v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + //Расширенные параметры + private async void a1v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (V5.IsChecked == true) + if (a1.IsChecked == true) { - devices.v5 = true; - devices.v5v = V5V.Value; + devices.a1 = true; + devices.a1v = a1v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.v5pr1 = true; - profile.v5pr1v = V5V.Value; + profile.a1pr1 = true; + profile.a1pr1v = a1v.Value; break; case 2: - profile.v5pr2 = true; - profile.v5pr2v = V5V.Value; + profile.a1pr2 = true; + profile.a1pr2v = a1v.Value; break; case 3: - profile.v5pr3 = true; - profile.v5pr3v = V5V.Value; + profile.a1pr3 = true; + profile.a1pr3v = a1v.Value; break; case 4: - profile.v5pr4 = true; - profile.v5pr4v = V5V.Value; + profile.a1pr4 = true; + profile.a1pr4v = a1v.Value; break; case 5: - profile.v5pr5 = true; - profile.v5pr5v = V5V.Value; + profile.a1pr5 = true; + profile.a1pr5v = a1v.Value; break; case 6: - profile.v5pr6 = true; - profile.v5pr6v = V5V.Value; + profile.a1pr6 = true; + profile.a1pr6v = a1v.Value; break; case 7: - profile.v5pr7 = true; - profile.v5pr7v = V5V.Value; + profile.a1pr7 = true; + profile.a1pr7v = a1v.Value; break; case 8: - profile.v5pr8 = true; - profile.v5pr8v = V5V.Value; + profile.a1pr8 = true; + profile.a1pr8v = a1v.Value; break; case 9: - profile.v5pr9 = true; - profile.v5pr9v = V5V.Value; + profile.a1pr9 = true; + profile.a1pr9v = a1v.Value; break; } ProfileSave(); } await Task.Delay(20); - v5t.Content = V5V.Value.ToString(); + a1t.Content = a1v.Value.ToString(); } - private async void v6v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a2v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (V6.IsChecked == true) + if (a2.IsChecked == true) { - devices.v6 = true; - devices.v6v = V6V.Value; + devices.a2 = true; + devices.a2v = a2v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.v6pr1 = true; - profile.v6pr1v = V6V.Value; + profile.a2pr1 = true; + profile.a2pr1v = a2v.Value; break; case 2: - profile.v6pr2 = true; - profile.v6pr2v = V6V.Value; + profile.a2pr2 = true; + profile.a2pr2v = a2v.Value; break; case 3: - profile.v6pr3 = true; - profile.v6pr3v = V6V.Value; + profile.a2pr3 = true; + profile.a2pr3v = a2v.Value; break; case 4: - profile.v6pr4 = true; - profile.v6pr4v = V6V.Value; + profile.a2pr4 = true; + profile.a2pr4v = a2v.Value; break; case 5: - profile.v6pr5 = true; - profile.v6pr5v = V6V.Value; + profile.a2pr5 = true; + profile.a2pr5v = a2v.Value; break; case 6: - profile.v6pr6 = true; - profile.v6pr6v = V6V.Value; + profile.a2pr6 = true; + profile.a2pr6v = a2v.Value; break; case 7: - profile.v6pr7 = true; - profile.v6pr7v = V6V.Value; + profile.a2pr7 = true; + profile.a2pr7v = a2v.Value; break; case 8: - profile.v6pr8 = true; - profile.v6pr8v = V6V.Value; + profile.a2pr8 = true; + profile.a2pr8v = a2v.Value; break; case 9: - profile.v6pr9 = true; - profile.v6pr9v = V6V.Value; + profile.a2pr9 = true; + profile.a2pr9v = a2v.Value; break; } ProfileSave(); } await Task.Delay(20); - v6t.Content = V6V.Value.ToString(); + a2t.Content = a2v.Value.ToString(); } - private async void v7v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a3v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (V7.IsChecked == true) + if (a3.IsChecked == true) { - devices.v7 = true; - devices.v7v = V7V.Value; + devices.a3 = true; + devices.a3v = a3v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.v7pr1 = true; - profile.v7pr1v = V7V.Value; + profile.a3pr1 = true; + profile.a3pr1v = a3v.Value; break; case 2: - profile.v7pr2 = true; - profile.v7pr2v = V7V.Value; + profile.a3pr2 = true; + profile.a3pr2v = a3v.Value; break; case 3: - profile.v7pr3 = true; - profile.v7pr3v = V7V.Value; + profile.a3pr3 = true; + profile.a3pr3v = a3v.Value; break; case 4: - profile.v7pr4 = true; - profile.v7pr4v = V7V.Value; + profile.a3pr4 = true; + profile.a3pr4v = a3v.Value; break; case 5: - profile.v7pr5 = true; - profile.v7pr5v = V7V.Value; + profile.a3pr5 = true; + profile.a3pr5v = a3v.Value; break; case 6: - profile.v7pr6 = true; - profile.v7pr6v = V7V.Value; + profile.a3pr6 = true; + profile.a3pr6v = a3v.Value; break; case 7: - profile.v7pr7 = true; - profile.v7pr7v = V7V.Value; + profile.a3pr7 = true; + profile.a3pr7v = a3v.Value; break; case 8: - profile.v7pr8 = true; - profile.v7pr8v = V7V.Value; + profile.a3pr8 = true; + profile.a3pr8v = a3v.Value; break; case 9: - profile.v7pr9 = true; - profile.v7pr9v = V7V.Value; + profile.a3pr9 = true; + profile.a3pr9v = a3v.Value; break; } ProfileSave(); } await Task.Delay(20); - v7t.Content = V7V.Value.ToString(); + a3t.Content = a3v.Value.ToString(); } - //Параметры GPU - private async void g1v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a4v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g1.IsChecked == true) + if (a4.IsChecked == true) { - devices.g1 = true; - devices.g1v = g1v.Value; + devices.a4 = true; + devices.a4v = a4v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g1pr1 = true; - profile.g1pr1v = g1v.Value; + profile.a4pr1 = true; + profile.a4pr1v = a4v.Value; break; case 2: - profile.g1pr2 = true; - profile.g1pr2v = g1v.Value; + profile.a4pr2 = true; + profile.a4pr2v = a4v.Value; break; case 3: - profile.g1pr3 = true; - profile.g1pr3v = g1v.Value; + profile.a4pr3 = true; + profile.a4pr3v = a4v.Value; break; case 4: - profile.g1pr4 = true; - profile.g1pr4v = g1v.Value; + profile.a4pr4 = true; + profile.a4pr4v = a4v.Value; break; case 5: - profile.g1pr5 = true; - profile.g1pr5v = g1v.Value; + profile.a4pr5 = true; + profile.a4pr5v = a4v.Value; break; case 6: - profile.g1pr6 = true; - profile.g1pr6v = g1v.Value; + profile.a4pr6 = true; + profile.a4pr6v = a4v.Value; break; case 7: - profile.g1pr7 = true; - profile.g1pr7v = g1v.Value; + profile.a4pr7 = true; + profile.a4pr7v = a4v.Value; break; case 8: - profile.g1pr8 = true; - profile.g1pr8v = g1v.Value; + profile.a4pr8 = true; + profile.a4pr8v = a4v.Value; break; case 9: - profile.g1pr9 = true; - profile.g1pr9v = g1v.Value; + profile.a4pr9 = true; + profile.a4pr9v = a4v.Value; break; } ProfileSave(); } await Task.Delay(20); - g1t.Content = g1v.Value.ToString(); + a4t.Content = a4v.Value.ToString(); } - private async void g2v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a5v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g2.IsChecked == true) + if (a5.IsChecked == true) { - devices.g2 = true; - devices.g2v = g2v.Value; + devices.a5 = true; + devices.a5v = a5v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g2pr1 = true; - profile.g2pr1v = g2v.Value; + profile.a5pr1 = true; + profile.a5pr1v = a5v.Value; break; case 2: - profile.g2pr2 = true; - profile.g2pr2v = g2v.Value; + profile.a5pr2 = true; + profile.a5pr2v = a5v.Value; break; case 3: - profile.g2pr3 = true; - profile.g2pr3v = g2v.Value; + profile.a5pr3 = true; + profile.a5pr3v = a5v.Value; break; case 4: - profile.g2pr4 = true; - profile.g2pr4v = g2v.Value; + profile.a5pr4 = true; + profile.a5pr4v = a5v.Value; break; case 5: - profile.g2pr5 = true; - profile.g2pr5v = g2v.Value; + profile.a5pr5 = true; + profile.a5pr5v = a5v.Value; break; case 6: - profile.g2pr6 = true; - profile.g2pr6v = g2v.Value; + profile.a5pr6 = true; + profile.a5pr6v = a5v.Value; break; case 7: - profile.g2pr7 = true; - profile.g2pr7v = g2v.Value; + profile.a5pr7 = true; + profile.a5pr7v = a5v.Value; break; case 8: - profile.g2pr8 = true; - profile.g2pr8v = g2v.Value; + profile.a5pr8 = true; + profile.a5pr8v = a5v.Value; break; case 9: - profile.g2pr9 = true; - profile.g2pr9v = g2v.Value; + profile.a5pr9 = true; + profile.a5pr9v = a5v.Value; break; } ProfileSave(); } await Task.Delay(20); - g2t.Content = g2v.Value.ToString(); + a5t.Content = a5v.Value.ToString(); } - private async void g3v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a6v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g3.IsChecked == true) + if (a6.IsChecked == true) { - devices.g3 = true; - devices.g3v = g3v.Value; + devices.a6 = true; + devices.a6v = a6v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g3pr1 = true; - profile.g3pr1v = g3v.Value; + profile.a6pr1 = true; + profile.a6pr1v = a6v.Value; break; case 2: - profile.g3pr2 = true; - profile.g3pr2v = g3v.Value; + profile.a6pr2 = true; + profile.a6pr2v = a6v.Value; break; case 3: - profile.g3pr3 = true; - profile.g3pr3v = g3v.Value; + profile.a6pr3 = true; + profile.a6pr3v = a6v.Value; break; case 4: - profile.g3pr4 = true; - profile.g3pr4v = g3v.Value; + profile.a6pr4 = true; + profile.a6pr4v = a6v.Value; break; case 5: - profile.g3pr5 = true; - profile.g3pr5v = g3v.Value; + profile.a6pr5 = true; + profile.a6pr5v = a6v.Value; break; case 6: - profile.g3pr6 = true; - profile.g3pr6v = g3v.Value; + profile.a6pr6 = true; + profile.a6pr6v = a6v.Value; break; case 7: - profile.g3pr7 = true; - profile.g3pr7v = g3v.Value; + profile.a6pr7 = true; + profile.a6pr7v = a6v.Value; break; case 8: - profile.g3pr8 = true; - profile.g3pr8v = g3v.Value; + profile.a6pr8 = true; + profile.a6pr8v = a6v.Value; break; case 9: - profile.g3pr9 = true; - profile.g3pr9v = g3v.Value; + profile.a6pr9 = true; + profile.a6pr9v = a6v.Value; break; } ProfileSave(); } await Task.Delay(20); - g3t.Content = g3v.Value.ToString(); + a6t.Content = a6v.Value.ToString(); } - private async void g4v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a7v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g4.IsChecked == true) + if (a7.IsChecked == true) { - devices.g4 = true; - devices.g4v = g4v.Value; + devices.a7 = true; + devices.a7v = a7v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g4pr1 = true; - profile.g4pr1v = g4v.Value; + profile.a7pr1 = true; + profile.a7pr1v = a7v.Value; break; case 2: - profile.g4pr2 = true; - profile.g4pr2v = g4v.Value; + profile.a7pr2 = true; + profile.a7pr2v = a7v.Value; break; case 3: - profile.g4pr3 = true; - profile.g4pr3v = g4v.Value; + profile.a7pr3 = true; + profile.a7pr3v = a7v.Value; break; case 4: - profile.g4pr4 = true; - profile.g4pr4v = g4v.Value; + profile.a7pr4 = true; + profile.a7pr4v = a7v.Value; break; case 5: - profile.g4pr5 = true; - profile.g4pr5v = g4v.Value; + profile.a7pr5 = true; + profile.a7pr5v = a7v.Value; break; case 6: - profile.g4pr6 = true; - profile.g4pr6v = g4v.Value; + profile.a7pr6 = true; + profile.a7pr6v = a7v.Value; break; case 7: - profile.g4pr7 = true; - profile.g4pr7v = g4v.Value; + profile.a7pr7 = true; + profile.a7pr7v = a7v.Value; break; case 8: - profile.g4pr8 = true; - profile.g4pr8v = g4v.Value; + profile.a7pr8 = true; + profile.a7pr8v = a7v.Value; break; case 9: - profile.g4pr9 = true; - profile.g4pr9v = g4v.Value; + profile.a7pr9 = true; + profile.a7pr9v = a7v.Value; break; } ProfileSave(); } await Task.Delay(20); - g4t.Content = g4v.Value.ToString(); + a7t.Content = a7v.Value.ToString(); } - private async void g5v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a8v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g5.IsChecked == true) + if (a8.IsChecked == true) { - devices.g5 = true; - devices.g5v = g5v.Value; + devices.a8 = true; + devices.a8v = a8v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g5pr1 = true; - profile.g5pr1v = g5v.Value; + profile.a8pr1 = true; + profile.a8pr1v = a8v.Value; break; case 2: - profile.g5pr2 = true; - profile.g5pr2v = g5v.Value; + profile.a8pr2 = true; + profile.a8pr2v = a8v.Value; break; case 3: - profile.g5pr3 = true; - profile.g5pr3v = g5v.Value; + profile.a8pr3 = true; + profile.a8pr3v = a8v.Value; break; case 4: - profile.g5pr4 = true; - profile.g5pr4v = g5v.Value; + profile.a8pr4 = true; + profile.a8pr4v = a8v.Value; break; case 5: - profile.g5pr5 = true; - profile.g5pr5v = g5v.Value; + profile.a8pr5 = true; + profile.a8pr5v = a8v.Value; break; case 6: - profile.g5pr6 = true; - profile.g5pr6v = g5v.Value; + profile.a8pr6 = true; + profile.a8pr6v = a8v.Value; break; case 7: - profile.g5pr7 = true; - profile.g5pr7v = g5v.Value; + profile.a8pr7 = true; + profile.a8pr7v = a8v.Value; break; case 8: - profile.g5pr8 = true; - profile.g5pr8v = g5v.Value; + profile.a8pr8 = true; + profile.a8pr8v = a8v.Value; break; case 9: - profile.g5pr9 = true; - profile.g5pr9v = g5v.Value; + profile.a8pr9 = true; + profile.a8pr9v = a8v.Value; break; } ProfileSave(); } await Task.Delay(20); - g5t.Content = g5v.Value.ToString(); + a8t.Content = a8v.Value.ToString(); } - private async void g6v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a9v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g6.IsChecked == true) + if (a9.IsChecked == true) { - devices.g6 = true; - devices.g6v = g6v.Value; + devices.a9 = true; + devices.a9v = a9v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g6pr1 = true; - profile.g6pr1v = g6v.Value; + profile.a9pr1 = true; + profile.a9pr1v = a9v.Value; break; case 2: - profile.g6pr2 = true; - profile.g6pr2v = g6v.Value; + profile.a9pr2 = true; + profile.a9pr2v = a9v.Value; break; case 3: - profile.g6pr3 = true; - profile.g6pr3v = g6v.Value; + profile.a9pr3 = true; + profile.a9pr3v = a9v.Value; break; case 4: - profile.g6pr4 = true; - profile.g6pr4v = g6v.Value; + profile.a9pr4 = true; + profile.a9pr4v = a9v.Value; break; case 5: - profile.g6pr5 = true; - profile.g6pr5v = g6v.Value; + profile.a9pr5 = true; + profile.a9pr5v = a9v.Value; break; case 6: - profile.g6pr6 = true; - profile.g6pr6v = g6v.Value; + profile.a9pr6 = true; + profile.a9pr6v = a9v.Value; break; case 7: - profile.g6pr7 = true; - profile.g6pr7v = g6v.Value; + profile.a9pr7 = true; + profile.a9pr7v = a9v.Value; break; case 8: - profile.g6pr8 = true; - profile.g6pr8v = g6v.Value; + profile.a9pr8 = true; + profile.a9pr8v = a9v.Value; break; case 9: - profile.g6pr9 = true; - profile.g6pr9v = g6v.Value; + profile.a9pr9 = true; + profile.a9pr9v = a9v.Value; break; } ProfileSave(); } await Task.Delay(20); - g6t.Content = g6v.Value.ToString(); + a9t.Content = a9v.Value.ToString(); } - private async void g7v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a10v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g7.IsChecked == true) + if (a10.IsChecked == true) { - devices.g7 = true; - devices.g7v = g7v.Value; + devices.a10 = true; + devices.a10v = a10v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g7pr1 = true; - profile.g7pr1v = g7v.Value; + profile.a10pr1 = true; + profile.a10pr1v = a10v.Value; break; case 2: - profile.g7pr2 = true; - profile.g7pr2v = g7v.Value; + profile.a10pr2 = true; + profile.a10pr2v = a10v.Value; break; case 3: - profile.g7pr3 = true; - profile.g7pr3v = g7v.Value; + profile.a10pr3 = true; + profile.a10pr3v = a10v.Value; break; case 4: - profile.g7pr4 = true; - profile.g7pr4v = g7v.Value; + profile.a10pr4 = true; + profile.a10pr4v = a10v.Value; break; case 5: - profile.g7pr5 = true; - profile.g7pr5v = g7v.Value; + profile.a10pr5 = true; + profile.a10pr5v = a10v.Value; break; case 6: - profile.g7pr6 = true; - profile.g7pr6v = g7v.Value; + profile.a10pr6 = true; + profile.a10pr6v = a10v.Value; break; case 7: - profile.g7pr7 = true; - profile.g7pr7v = g7v.Value; + profile.a10pr7 = true; + profile.a10pr7v = a10v.Value; break; case 8: - profile.g7pr8 = true; - profile.g7pr8v = g7v.Value; + profile.a10pr8 = true; + profile.a10pr8v = a10v.Value; break; case 9: - profile.g7pr9 = true; - profile.g7pr9v = g7v.Value; + profile.a10pr9 = true; + profile.a10pr9v = a10v.Value; break; } ProfileSave(); } await Task.Delay(20); - g7t.Content = g7v.Value.ToString(); + a10t.Content = a10v.Value.ToString(); } - private async void g8v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a11v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g8.IsChecked == true) + if (a11.IsChecked == true) { - devices.g8 = true; - devices.g8v = g8v.Value; + devices.a11 = true; + devices.a11v = a11v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g8pr1 = true; - profile.g8pr1v = g8v.Value; + profile.a11pr1 = true; + profile.a11pr1v = a11v.Value; break; case 2: - profile.g8pr2 = true; - profile.g8pr2v = g8v.Value; + profile.a11pr2 = true; + profile.a11pr2v = a11v.Value; break; case 3: - profile.g8pr3 = true; - profile.g8pr3v = g8v.Value; + profile.a11pr3 = true; + profile.a11pr3v = a11v.Value; break; case 4: - profile.g8pr4 = true; - profile.g8pr4v = g8v.Value; + profile.a11pr4 = true; + profile.a11pr4v = a11v.Value; break; case 5: - profile.g8pr5 = true; - profile.g8pr5v = g8v.Value; + profile.a11pr5 = true; + profile.a11pr5v = a11v.Value; break; case 6: - profile.g8pr6 = true; - profile.g8pr6v = g8v.Value; + profile.a11pr6 = true; + profile.a11pr6v = a11v.Value; break; case 7: - profile.g8pr7 = true; - profile.g8pr7v = g8v.Value; + profile.a11pr7 = true; + profile.a11pr7v = a11v.Value; break; case 8: - profile.g8pr8 = true; - profile.g8pr8v = g8v.Value; + profile.a11pr8 = true; + profile.a11pr8v = a11v.Value; break; case 9: - profile.g8pr9 = true; - profile.g8pr9v = g8v.Value; + profile.a11pr9 = true; + profile.a11pr9v = a11v.Value; break; } ProfileSave(); } await Task.Delay(20); - g8t.Content = g8v.Value.ToString(); + a11t.Content = a11v.Value.ToString(); } - private async void g9v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a12v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) { - if (g9.IsChecked == true) + if (a12.IsChecked == true) { - devices.g9 = true; - devices.g9v = g9v.Value; + devices.a12 = true; + devices.a12v = a12v.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g9pr1 = true; - profile.g9pr1v = g9v.Value; + profile.a12pr1 = true; + profile.a12pr1v = a12v.Value; break; case 2: - profile.g9pr2 = true; - profile.g9pr2v = g9v.Value; + profile.a12pr2 = true; + profile.a12pr2v = a12v.Value; break; case 3: - profile.g9pr3 = true; - profile.g9pr3v = g9v.Value; + profile.a12pr3 = true; + profile.a12pr3v = a12v.Value; break; case 4: - profile.g9pr4 = true; - profile.g9pr4v = g9v.Value; + profile.a12pr4 = true; + profile.a12pr4v = a12v.Value; break; case 5: - profile.g9pr5 = true; - profile.g9pr5v = g9v.Value; + profile.a12pr5 = true; + profile.a12pr5v = a12v.Value; break; case 6: - profile.g9pr6 = true; - profile.g9pr6v = g9v.Value; + profile.a12pr6 = true; + profile.a12pr6v = a12v.Value; break; case 7: - profile.g9pr7 = true; - profile.g9pr7v = g9v.Value; + profile.a12pr7 = true; + profile.a12pr7v = a12v.Value; break; case 8: - profile.g9pr8 = true; - profile.g9pr8v = g9v.Value; + profile.a12pr8 = true; + profile.a12pr8v = a12v.Value; break; case 9: - profile.g9pr9 = true; - profile.g9pr9v = g9v.Value; + profile.a12pr9 = true; + profile.a12pr9v = a12v.Value; break; } ProfileSave(); } await Task.Delay(20); - g9t.Content = g9v.Value.ToString(); + a12t.Content = a12v.Value.ToString(); } - private async void g10v_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e) + private async void a13m_SelectedIndexChanged(object sender, Microsoft.UI.Xaml.Controls.SelectionChangedEventArgs e) { - if (g10.IsChecked == true) + if (a13.IsChecked == true) { - devices.g10 = true; - devices.g10v = g10v.Value; + devices.a13 = true; + devices.a13v = a13m.SelectedIndex; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: - profile.g10pr1 = true; - profile.g10pr1v = g10v.Value; + profile.a13pr1 = true; + profile.a13pr1v = a13m.SelectedIndex; break; case 2: - profile.g10pr2 = true; - profile.g10pr2v = g10v.Value; + profile.a13pr2 = true; + profile.a13pr2v = a13m.SelectedIndex; break; case 3: - profile.g10pr3 = true; - profile.g10pr3v = g10v.Value; + profile.a13pr3 = true; + profile.a13pr3v = a13m.SelectedIndex; break; case 4: - profile.g10pr4 = true; - profile.g10pr4v = g10v.Value; + profile.a13pr4 = true; + profile.a13pr4v = a13m.SelectedIndex; break; case 5: - profile.g10pr5 = true; - profile.g10pr5v = g10v.Value; + profile.a13pr5 = true; + profile.a13pr5v = a13m.SelectedIndex; break; case 6: - profile.g10pr6 = true; - profile.g10pr6v = g10v.Value; + profile.a13pr6 = true; + profile.a13pr6v = a13m.SelectedIndex; break; case 7: - profile.g10pr7 = true; - profile.g10pr7v = g10v.Value; + profile.a13pr7 = true; + profile.a13pr7v = a13m.SelectedIndex; break; case 8: - profile.g10pr8 = true; - profile.g10pr8v = g10v.Value; + profile.a13pr8 = true; + profile.a13pr8v = a13m.SelectedIndex; break; case 9: - profile.g10pr9 = true; - profile.g10pr9v = g10v.Value; + profile.a13pr9 = true; + profile.a13pr9v = a13m.SelectedIndex; break; } ProfileSave(); } await Task.Delay(20); - g10t.Content = g10v.Value.ToString(); + a13t.Content = a13m.SelectedIndex.ToString(); } //Кнопка применить, итоговый выход, Ryzen ADJ - private void Apply_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + private async void Apply_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { if (c1.IsChecked == true) { @@ -6153,6 +6347,72 @@ private void Apply_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { adjline += " --min-socclk-frequency=" + g10v.Value; } + //set_enable_oc is not supported on this family + ocmode = ""; + Init_OC_Mode(); + if (ocmode != "set_enable_oc is not supported on this family") + { + //advanced + if (a1.IsChecked == true) + { + adjline += " --vrmgfx-current=" + a1v.Value + "000"; + } + if (a2.IsChecked == true) + { + adjline += " --vrmcvip-current=" + a2v.Value + "000"; + } + if (a3.IsChecked == true) + { + adjline += " --vrmgfxmax_current=" + a3v.Value + "000"; + } + if (a4.IsChecked == true) + { + adjline += " --psi3cpu_current=" + a4v.Value + "000"; + } + if (a5.IsChecked == true) + { + adjline += " --psi3gfx_current=" + a5v.Value + "000"; + } + if (a6.IsChecked == true) + { + adjline += " --apu-skin-temp=" + a6v.Value; + } + if (a7.IsChecked == true) + { + adjline += " --dgpu-skin-temp=" + a7v.Value; + } + if (a8.IsChecked == true) + { + adjline += " --apu-slow-limit=" + a8v.Value + "000"; + } + if (a9.IsChecked == true) + { + adjline += " --skin-temp-limit=" + a9v.Value + "000"; + } + if (a10.IsChecked == true) + { + adjline += " --gfx-clk=" + a10v.Value; + } + if (a11.IsChecked == true) + { + adjline += " --oc-clk=" + a11v.Value; + } + if (a12.IsChecked == true) + { + adjline += " --oc-volt=" + Math.Round((1.55 - a12v.Value / 1000) / 0.00625); + } + if (a13.IsChecked == true) + { + if (a13m.SelectedIndex == 1) + { + adjline += " --max-performance"; + } + if (a13m.SelectedIndex == 2) + { + adjline += " --power-saving"; + } + } + } config.adjline = adjline; adjline = ""; ConfigSave(); @@ -6165,9 +6425,34 @@ private void Apply_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { ReadPstate(); } - App.MainWindow.ShowMessageDialogAsync("You have successfully set your settings! \n" + config.adjline, "Setted successfully!"); + Apply_tooltip.IsOpen = true; + await Task.Delay(3000); + Apply_tooltip.IsOpen = false; + //App.MainWindow.ShowMessageDialogAsync("Set_settings".GetLocalized() + " \n" + config.adjline, "Set_succ".GetLocalized()); } - private void Save_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + private void Init_OC_Mode() + { + ocmode = ""; + var p = new Process(); + p.StartInfo.UseShellExecute = false; + p.StartInfo.FileName = @"ryzenadj.exe"; + p.StartInfo.Arguments = "--enable-oc"; + p.StartInfo.CreateNoWindow = true; + p.StartInfo.RedirectStandardError = true; + p.StartInfo.RedirectStandardInput = true; + p.StartInfo.RedirectStandardOutput = true; + p.Start(); + StreamReader outputWriter = p.StandardOutput; + var line = outputWriter.ReadLine(); + if (line != "") + { + ocmode = line; + } + line = outputWriter.ReadLine(); + p.WaitForExit(); + line = null; + } + private async void Save_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { if (SaveName.Text != "") { @@ -6270,7 +6555,10 @@ private void Save_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) } else { - App.MainWindow.ShowMessageDialogAsync("You can't add more than 9 profiles at one time! \n", "Profiles error!"); + //App.MainWindow.ShowMessageDialogAsync("You can't add more than 9 profiles at one time! \n", "Profiles error!"); + Add_tooltip_Max.IsOpen = true; + await Task.Delay(3000); + Add_tooltip_Max.IsOpen = false; } } } @@ -6283,79 +6571,115 @@ private void Save_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) } else { - App.MainWindow.ShowMessageDialogAsync("You can't add profile without name! \n", "Corrupted Name!"); + Add_tooltip_Error.IsOpen = true; + await Task.Delay(3000); + Add_tooltip_Error.IsOpen = false; + //App.MainWindow.ShowMessageDialogAsync("You can't add profile without name! \n", "Corrupted Name!"); } ProfileSave(); } - private void Edit_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) + private async void Edit_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) { if (SaveName.Text != "") { switch (ProfileCOM.SelectedIndex) { case 0: - App.MainWindow.ShowMessageDialogAsync("You can't rename unsaved preset! \n", "Corrupted Name!"); + Unsaved_tooltip.IsOpen = true; + await Task.Delay(3000); + Unsaved_tooltip.IsOpen = false; + //App.MainWindow.ShowMessageDialogAsync("You can't rename unsaved preset! \n", "Corrupted Name!"); break; case 1: ProfileCOM_1.Content = SaveName.Text; profile.pr1name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 1; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 2: ProfileCOM_2.Content = SaveName.Text; profile.pr2name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 2; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 3: ProfileCOM_3.Content = SaveName.Text; profile.pr3name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 3; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 4: ProfileCOM_4.Content = SaveName.Text; profile.pr4name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 4; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 5: ProfileCOM_5.Content = SaveName.Text; profile.pr5name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 5; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 6: ProfileCOM_6.Content = SaveName.Text; profile.pr6name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 6; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 7: ProfileCOM_7.Content = SaveName.Text; profile.pr7name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 7; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 8: ProfileCOM_8.Content = SaveName.Text; profile.pr8name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 8; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; case 9: ProfileCOM_9.Content = SaveName.Text; profile.pr9name = SaveName.Text; ProfileCOM.SelectedIndex = 0; ProfileCOM.SelectedIndex = 9; + Edit_tooltip.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip.IsOpen = false; break; } ProfileSave(); } else { - App.MainWindow.ShowMessageDialogAsync("You can't edit profile without name! \n", "Corrupted Name!"); + Edit_tooltip_Error.IsOpen = true; + await Task.Delay(3000); + Edit_tooltip_Error.IsOpen = false; + //App.MainWindow.ShowMessageDialogAsync("You can't edit profile without name! \n", "Corrupted Name!"); } } private async void Delete_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e) @@ -6382,7 +6706,10 @@ private async void Delete_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs switch (ProfileCOM.SelectedIndex) { case 0: - await App.MainWindow.ShowMessageDialogAsync("You can't delete unsaved preset!", "Can't Delete!"); + Delete_tooltip_error.IsOpen = true; + await Task.Delay(3000); + Delete_tooltip_error.IsOpen = false; + //await App.MainWindow.ShowMessageDialogAsync("You can't delete unsaved preset!", "Can't Delete!"); break; case 1: profile.pr1 = false; @@ -6515,11 +6842,11 @@ public async void BtnPstateWrite_Click() } } } - + } public void WritePstates() { - if (devices.autopstate == true) + if (devices.autopstate == true) { if (profile.Unsaved == true || profile.pr1 == true || profile.pr2 == true || profile.pr3 == true || profile.pr4 == true || profile.pr5 == true || profile.pr6 == true || profile.pr7 == true || profile.pr8 == true || profile.pr9 == true) { DID_0.Text = devices.did0; DID_1.Text = devices.did1; DID_2.Text = devices.did2; FID_0.Text = devices.fid0; FID_1.Text = devices.fid1; FID_2.Text = devices.fid2; } } @@ -6539,6 +6866,7 @@ public void WritePstates() uint CpuFid = 0x0; var Didtext = "12"; var Fidtext = "102"; + var Vidtext = 56.0; if (!cpu.ReadMsr(Convert.ToUInt32(Convert.ToInt64(0xC0010064) + pstateId), ref eax, ref edx)) { MessageBox.Show("Error reading PState! ID = " + pstateId); @@ -6550,14 +6878,17 @@ public void WritePstates() case 0: Didtext = DID_0.Text; Fidtext = FID_0.Text; + Vidtext = VID_0.Value; break; case 1: Didtext = DID_1.Text; Fidtext = FID_1.Text; + Vidtext = VID_1.Value; break; case 2: Didtext = DID_2.Text; Fidtext = FID_2.Text; + Vidtext = VID_2.Value; break; } eax = (IddDiv & 0xFF) << 30 | (IddVal & 0xFF) << 22 | (CpuVid & 0xFF) << 14 | (uint.Parse(Didtext) & 0xFF) << 8 | uint.Parse(Fidtext) & 0xFF; @@ -6577,6 +6908,17 @@ public void WritePstates() { MessageBox.Show("Error writing PState! ID = " + pstateId); } + equalvid = (Math.Round((1.55 - Vidtext / 1000) / 0.00625)).ToString(); + var f = new Process(); + f.StartInfo.UseShellExecute = false; + f.StartInfo.FileName = @"ryzenps.exe"; + f.StartInfo.Arguments = "-p=" + p + " -v=" + equalvid; + f.StartInfo.CreateNoWindow = true; + f.StartInfo.RedirectStandardError = true; + f.StartInfo.RedirectStandardInput = true; + f.StartInfo.RedirectStandardOutput = true; + f.Start(); + f.WaitForExit(); } ReadPstate(); } @@ -6954,8 +7296,12 @@ private void EnablePstatess() } private void TurboBoost() { + //Турбобуст... + Turboo_Boost(); + //Сохранение if (Turbo_boost.IsOn == true) { + turbobboost = true; devices.turboboost = true; DeviceSave(); switch (ProfileCOM.SelectedIndex) @@ -6992,6 +7338,7 @@ private void TurboBoost() } else { + turbobboost = false; devices.turboboost = false; DeviceSave(); switch (ProfileCOM.SelectedIndex) @@ -7027,6 +7374,73 @@ private void TurboBoost() ProfileSave(); } } + public void Turboo_Boost() + { + if (Turbo_boost.IsOn == true) + { + SetActive(); + Enable(); + } + else + { + SetActive(); + Disable(); + } + void Enable() + { + Process p = new Process();//AC + p.StartInfo.UseShellExecute = false; + p.StartInfo.FileName = "powercfg.exe"; + p.StartInfo.Arguments = "/SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 54533251-82be-4824-96c1-47b60b740d00 be337238-0d82-4146-a960-4f3749d470c7 002"; + p.StartInfo.CreateNoWindow = true; + p.StartInfo.RedirectStandardError = true; + p.StartInfo.RedirectStandardInput = true; + p.StartInfo.RedirectStandardOutput = true; + p.Start(); + Process p1 = new Process();//DC + p1.StartInfo.UseShellExecute = false; + p1.StartInfo.FileName = "powercfg.exe"; + p1.StartInfo.Arguments = "/SETDCVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 54533251-82be-4824-96c1-47b60b740d00 be337238-0d82-4146-a960-4f3749d470c7 002"; + p1.StartInfo.CreateNoWindow = true; + p1.StartInfo.RedirectStandardError = true; + p1.StartInfo.RedirectStandardInput = true; + p1.StartInfo.RedirectStandardOutput = true; + p1.Start(); + } + void Disable() + { + Process p = new Process();//AC + p.StartInfo.UseShellExecute = false; + p.StartInfo.FileName = "powercfg.exe"; + p.StartInfo.Arguments = "/SETACVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 54533251-82be-4824-96c1-47b60b740d00 be337238-0d82-4146-a960-4f3749d470c7 000"; + p.StartInfo.CreateNoWindow = true; + p.StartInfo.RedirectStandardError = true; + p.StartInfo.RedirectStandardInput = true; + p.StartInfo.RedirectStandardOutput = true; + p.Start(); + Process p1 = new Process();//DC + p1.StartInfo.UseShellExecute = false; + p1.StartInfo.FileName = "powercfg.exe"; + p1.StartInfo.Arguments = "/SETDCVALUEINDEX 381b4222-f694-41f0-9685-ff5bb260df2e 54533251-82be-4824-96c1-47b60b740d00 be337238-0d82-4146-a960-4f3749d470c7 000"; + p1.StartInfo.CreateNoWindow = true; + p1.StartInfo.RedirectStandardError = true; + p1.StartInfo.RedirectStandardInput = true; + p1.StartInfo.RedirectStandardOutput = true; + p1.Start(); + } + void SetActive() + { + Process p = new Process(); + p.StartInfo.UseShellExecute = false; + p.StartInfo.FileName = "powercfg.exe"; + p.StartInfo.Arguments = "/s 381b4222-f694-41f0-9685-ff5bb260df2e"; + p.StartInfo.CreateNoWindow = true; + p.StartInfo.RedirectStandardError = true; + p.StartInfo.RedirectStandardInput = true; + p.StartInfo.RedirectStandardOutput = true; + p.Start(); + } + } private void Autoapply() { if (Autoapply_1.IsOn == true) @@ -7317,7 +7731,7 @@ private async void Mult_0_SelectionChanged(object sender, SelectionChangedEventA } } - private async void DID_0_ValueChanged(NumberBox sender, NumberBoxValueChangedEventArgs args) + private async void DID_0_ValueChanged(NumberBox sender, NumberBoxValueChangedEventArgs args) { await Task.Delay(20); float Mult_0_v; @@ -7415,19 +7829,19 @@ private async void FID_2_ValueChanged(NumberBox sender, NumberBoxValueChangedEve { if (relay == false) { - await Task.Delay(20); - float Mult_2_v; - _ = int.TryParse(DID_2.Text, out var Did_value); - _ = int.TryParse(FID_2.Text, out var Fid_value); - Mult_2_v = (Fid_value / Did_value * 2); - if ((Fid_value / Did_value) % 2 == 5) { Mult_2_v -= 3; } else { Mult_2_v -= 4; } - - if (Mult_2_v <= 0) - { - Mult_2_v = 0; - } - P2_Freq.Content = (Mult_2_v + 4) * 100; - Mult_2.SelectedIndex = (int)(Mult_2_v); + await Task.Delay(20); + float Mult_2_v; + _ = int.TryParse(DID_2.Text, out var Did_value); + _ = int.TryParse(FID_2.Text, out var Fid_value); + Mult_2_v = (Fid_value / Did_value * 2); + if ((Fid_value / Did_value) % 2 == 5) { Mult_2_v -= 3; } else { Mult_2_v -= 4; } + + if (Mult_2_v <= 0) + { + Mult_2_v = 0; + } + P2_Freq.Content = (Mult_2_v + 4) * 100; + Mult_2.SelectedIndex = (int)(Mult_2_v); } else { relay = false; } Save_ID2(); @@ -7451,140 +7865,182 @@ private async void DID_2_ValueChanged(NumberBox sender, NumberBoxValueChangedEve } public void Save_ID0() { - devices.did0 = DID_0.Text; devices.fid0 = FID_0.Text; + devices.did0 = DID_0.Text; devices.fid0 = FID_0.Text; devices.vid0 = VID_0.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: profile.did0pr1 = DID_0.Text; profile.fid0pr1 = FID_0.Text; + profile.vid0pr1 = VID_0.Value; break; case 2: profile.did0pr2 = DID_0.Text; profile.fid0pr2 = FID_0.Text; + profile.vid0pr2 = VID_0.Value; break; case 3: profile.did0pr3 = DID_0.Text; profile.fid0pr3 = DID_0.Text; + profile.vid0pr3 = VID_0.Value; break; case 4: profile.did0pr4 = DID_0.Text; profile.fid0pr4 = FID_0.Text; + profile.vid0pr4 = VID_0.Value; break; case 5: profile.did0pr5 = DID_0.Text; profile.fid0pr5 = FID_0.Text; + profile.vid0pr5 = VID_0.Value; break; case 6: profile.did0pr6 = DID_0.Text; profile.fid0pr6 = FID_0.Text; + profile.vid0pr6 = VID_0.Value; break; case 7: profile.did0pr7 = DID_0.Text; profile.fid0pr7 = FID_0.Text; + profile.vid0pr7 = VID_0.Value; break; case 8: profile.did0pr8 = DID_0.Text; profile.fid0pr8 = FID_0.Text; + profile.vid0pr8 = VID_0.Value; break; case 9: profile.did0pr9 = DID_0.Text; profile.fid0pr9 = FID_0.Text; + profile.vid0pr9 = VID_0.Value; break; } ProfileSave(); } public void Save_ID1() { - devices.did1 = DID_1.Text; devices.fid1 = FID_1.Text; + devices.did1 = DID_1.Text; devices.fid1 = FID_1.Text; devices.vid1 = VID_1.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: profile.did1pr1 = DID_1.Text; profile.fid1pr1 = FID_1.Text; + profile.vid1pr1 = VID_1.Value; break; case 2: profile.did1pr2 = DID_1.Text; profile.fid1pr2 = FID_1.Text; + profile.vid1pr2 = VID_1.Value; break; case 3: profile.did1pr3 = DID_1.Text; profile.fid1pr3 = DID_1.Text; + profile.vid1pr3 = VID_1.Value; break; case 4: profile.did1pr4 = DID_1.Text; profile.fid1pr4 = FID_1.Text; + profile.vid1pr4 = VID_1.Value; break; case 5: profile.did1pr5 = DID_1.Text; profile.fid1pr5 = FID_1.Text; + profile.vid1pr5 = VID_1.Value; break; case 6: profile.did1pr6 = DID_1.Text; profile.fid1pr6 = FID_1.Text; + profile.vid1pr6 = VID_1.Value; break; case 7: profile.did1pr7 = DID_1.Text; profile.fid1pr7 = FID_1.Text; + profile.vid1pr7 = VID_1.Value; break; case 8: profile.did1pr8 = DID_1.Text; profile.fid1pr8 = FID_1.Text; + profile.vid1pr8 = VID_1.Value; break; case 9: profile.did1pr9 = DID_1.Text; profile.fid1pr9 = FID_1.Text; + profile.vid1pr9 = VID_1.Value; break; } ProfileSave(); } public void Save_ID2() { - devices.did2 = DID_2.Text; devices.fid2 = FID_2.Text; + devices.did2 = DID_2.Text; devices.fid2 = FID_2.Text; devices.vid2 = VID_2.Value; DeviceSave(); switch (ProfileCOM.SelectedIndex) { case 1: profile.did2pr1 = DID_2.Text; profile.fid2pr1 = FID_2.Text; + profile.vid2pr1 = VID_2.Value; break; case 2: profile.did2pr2 = DID_2.Text; profile.fid2pr2 = FID_2.Text; + profile.vid2pr2 = VID_2.Value; break; case 3: profile.did2pr3 = DID_2.Text; profile.fid2pr3 = DID_2.Text; + profile.vid2pr3 = VID_2.Value; break; case 4: profile.did2pr4 = DID_2.Text; profile.fid2pr4 = FID_2.Text; + profile.vid2pr4 = VID_2.Value; break; case 5: profile.did2pr5 = DID_2.Text; profile.fid2pr5 = FID_2.Text; + profile.vid2pr5 = VID_2.Value; break; case 6: profile.did2pr6 = DID_2.Text; profile.fid2pr6 = FID_2.Text; + profile.vid2pr6 = VID_2.Value; break; case 7: profile.did2pr7 = DID_2.Text; profile.fid2pr7 = FID_2.Text; + profile.vid2pr7 = VID_2.Value; break; case 8: profile.did2pr8 = DID_2.Text; profile.fid2pr8 = FID_2.Text; + profile.vid2pr8 = VID_2.Value; break; case 9: profile.did2pr9 = DID_2.Text; profile.fid2pr9 = FID_2.Text; + profile.vid2pr9 = VID_2.Value; break; } ProfileSave(); } + private void VID_0_ValueChanged(NumberBox sender, NumberBoxValueChangedEventArgs args) + { + Save_ID0(); + } + + private void VID_1_ValueChanged(NumberBox sender, NumberBoxValueChangedEventArgs args) + { + Save_ID1(); + } + + private void VID_2_ValueChanged(NumberBox sender, NumberBoxValueChangedEventArgs args) + { + Save_ID2(); + } + #pragma warning restore CS8618 // Поле, не допускающее значения NULL, должно содержать значение, отличное от NULL, при выходе из конструктора. Возможно, стоит объявить поле как допускающее значения NULL. #pragma warning restore CS8601 // Возможно, назначение-ссылка, допускающее значение NULL. } diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Microsoft.Win32.SystemEvents.dll b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Microsoft.Win32.SystemEvents.dll index 6b79f05..eb3c1a7 100644 Binary files a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Microsoft.Win32.SystemEvents.dll and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Microsoft.Win32.SystemEvents.dll differ diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/OpenHardwareMonitorLib.dll b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/OpenHardwareMonitorLib.dll new file mode 100644 index 0000000..85b3d67 Binary files /dev/null and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/OpenHardwareMonitorLib.dll differ diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.deps.json b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.deps.json index e1a3d6e..f646802 100644 --- a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.deps.json +++ b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.deps.json @@ -17,8 +17,11 @@ "Microsoft.WindowsAppSDK": "1.4.231008000", "Microsoft.Xaml.Behaviors.WinUI.Managed": "2.0.9", "Newtonsoft.Json": "13.0.3", + "OpenHardwareMonitor": "0.9.6", "TaskScheduler": "2.10.1", "WinUIEx": "2.3.2", + "System.Management": "4.0.0.0", + "ZenStates-Core": "1.6.7.0", "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "7.0.14", "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "7.0.14", "runtimepack.Microsoft.Windows.SDK.NET.Ref": "10.0.19041.31" @@ -1465,6 +1468,14 @@ } } }, + "OpenHardwareMonitor/0.9.6": { + "runtime": { + "lib/net45/OpenHardwareMonitorLib.dll": { + "assemblyVersion": "0.9.6.0", + "fileVersion": "0.9.6.0" + } + } + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" @@ -1547,6 +1558,22 @@ "runtime": { "Saku Overclock.Core.dll": {} } + }, + "System.Management/4.0.0.0": { + "runtime": { + "System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.8.3761.0" + } + } + }, + "ZenStates-Core/1.6.7.0": { + "runtime": { + "ZenStates-Core.dll": { + "assemblyVersion": "1.6.7.0", + "fileVersion": "1.6.7.0" + } + } } } }, @@ -1823,6 +1850,13 @@ "path": "newtonsoft.json/13.0.3", "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, + "OpenHardwareMonitor/0.9.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vbx870Mi1nzz99VYx4yF0uaH2a8jtQ94Y+vT+0pRZz3alvCzaiJlbre7ArV8oP2YDNO1oVuvYxKZSoWSFUFj3Q==", + "path": "openhardwaremonitor/0.9.6", + "hashPath": "openhardwaremonitor.0.9.6.nupkg.sha512" + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "serviceable": true, @@ -1890,6 +1924,16 @@ "type": "project", "serviceable": false, "sha512": "" + }, + "System.Management/4.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "ZenStates-Core/1.6.7.0": { + "type": "reference", + "serviceable": false, + "sha512": "" } }, "runtimes": { diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.dll b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.dll index 41c81ad..4ee5c2d 100644 Binary files a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.dll and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.dll differ diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.pdb b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.pdb index 1cda7c2..4a7d861 100644 Binary files a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.pdb and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/Saku Overclock.pdb differ diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/System.Drawing.Common.dll b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/System.Drawing.Common.dll index 9d2252a..dec3e4f 100644 Binary files a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/System.Drawing.Common.dll and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/System.Drawing.Common.dll differ diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/System.Management.dll b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/System.Management.dll new file mode 100644 index 0000000..1ca05cb Binary files /dev/null and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/System.Management.dll differ diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/ZenStates-Core.dll b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/ZenStates-Core.dll new file mode 100644 index 0000000..ed06884 Binary files /dev/null and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/ZenStates-Core.dll differ diff --git a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/resources.pri b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/resources.pri index e5518bc..6e9511a 100644 Binary files a/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/resources.pri and b/Saku Overclock/bin/Debug/net7.0-windows10.0.19041.0/win10-x64/publish/resources.pri differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/AppxManifest.xml b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/AppxManifest.xml index 226da1e..64e0260 100644 --- a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/AppxManifest.xml +++ b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/AppxManifest.xml @@ -7,7 +7,7 @@ Дополнительные сведения о файлах манифестов приложений см. по адресу http://go.microsoft.com/fwlink/?LinkID=241727 --> - + Saku Overclock @@ -17,7 +17,6 @@ - @@ -25,7 +24,7 @@ - + diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/CoreMessagingXP.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/CoreMessagingXP.dll new file mode 100644 index 0000000..423e30f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/CoreMessagingXP.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/DWriteCore.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/DWriteCore.dll new file mode 100644 index 0000000..ccd381e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/DWriteCore.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/DwmSceneI.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/DwmSceneI.dll new file mode 100644 index 0000000..1b1500e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/DwmSceneI.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/MRM.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/MRM.dll new file mode 100644 index 0000000..3045d63 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/MRM.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.DirectManipulation.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.DirectManipulation.dll new file mode 100644 index 0000000..946be1e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.DirectManipulation.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Display.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Display.dll new file mode 100644 index 0000000..88675c3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Graphics.Display.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.InputStateManager.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.InputStateManager.dll new file mode 100644 index 0000000..b53b2b5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.InputStateManager.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Internal.FrameworkUdk.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Internal.FrameworkUdk.dll new file mode 100644 index 0000000..603e0e8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Internal.FrameworkUdk.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Composition.OSSupport.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Composition.OSSupport.dll new file mode 100644 index 0000000..08adf07 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Composition.OSSupport.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Input.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Input.dll new file mode 100644 index 0000000..319a7d2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Input.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Windowing.Core.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Windowing.Core.dll new file mode 100644 index 0000000..c37b91b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Windowing.Core.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Windowing.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Windowing.dll new file mode 100644 index 0000000..0ab129b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Windowing.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Controls.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Controls.dll new file mode 100644 index 0000000..ee61b7f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Controls.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Controls.pri b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Controls.pri new file mode 100644 index 0000000..ac27433 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Controls.pri differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Internal.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Internal.dll new file mode 100644 index 0000000..1f22a56 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Internal.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Phone.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Phone.dll new file mode 100644 index 0000000..eee4e7f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml.Phone.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png new file mode 100644 index 0000000..41de173 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.dll new file mode 100644 index 0000000..e869af6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.UI.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Web.WebView2.Core.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Web.WebView2.Core.dll new file mode 100644 index 0000000..269a0a8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Web.WebView2.Core.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.Resources.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.Resources.dll new file mode 100644 index 0000000..3992866 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.ApplicationModel.Resources.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Widgets.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Widgets.dll new file mode 100644 index 0000000..8450aed Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.Windows.Widgets.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Insights.Resource.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Insights.Resource.dll new file mode 100644 index 0000000..c1a9a87 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.Insights.Resource.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.dll new file mode 100644 index 0000000..d76175a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.WindowsAppRuntime.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.dll new file mode 100644 index 0000000..25ea98e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.resources.19h1.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.resources.19h1.dll new file mode 100644 index 0000000..9c99f7f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.resources.19h1.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.resources.common.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.resources.common.dll new file mode 100644 index 0000000..984df39 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Microsoft.ui.xaml.resources.common.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/PushNotificationsLongRunningTask.ProxyStub.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/PushNotificationsLongRunningTask.ProxyStub.dll new file mode 100644 index 0000000..00853f4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/PushNotificationsLongRunningTask.ProxyStub.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/RestartAgent.exe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/RestartAgent.exe new file mode 100644 index 0000000..61962e0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/RestartAgent.exe differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.Core.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.Core.dll index 201b055..e8a74b2 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.Core.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.Core.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.deps.json b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.deps.json index f646802..f6e1c8f 100644 --- a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.deps.json +++ b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.deps.json @@ -18,9 +18,9 @@ "Microsoft.Xaml.Behaviors.WinUI.Managed": "2.0.9", "Newtonsoft.Json": "13.0.3", "OpenHardwareMonitor": "0.9.6", + "System.Management": "8.0.0", "TaskScheduler": "2.10.1", "WinUIEx": "2.3.2", - "System.Management": "4.0.0.0", "ZenStates-Core": "1.6.7.0", "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "7.0.14", "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "7.0.14", @@ -824,10 +824,6 @@ "assemblyVersion": "7.0.0.0", "fileVersion": "7.0.1423.52002" }, - "System.CodeDom.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.1423.51910" - }, "System.Configuration.ConfigurationManager.dll": { "assemblyVersion": "7.0.0.0", "fileVersion": "7.0.1423.51910" @@ -1476,12 +1472,31 @@ } } }, + "System.CodeDom/8.0.0": { + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, "System.Diagnostics.EventLog/6.0.0": {}, + "System.Management/8.0.0": { + "dependencies": { + "System.CodeDom": "8.0.0" + }, + "runtime": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, "System.Security.AccessControl/5.0.0": { "dependencies": { @@ -1559,14 +1574,6 @@ "Saku Overclock.Core.dll": {} } }, - "System.Management/4.0.0.0": { - "runtime": { - "System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.8.3761.0" - } - } - }, "ZenStates-Core/1.6.7.0": { "runtime": { "ZenStates-Core.dll": { @@ -1857,6 +1864,13 @@ "path": "openhardwaremonitor/0.9.6", "hashPath": "openhardwaremonitor.0.9.6.nupkg.sha512" }, + "System.CodeDom/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", + "path": "system.codedom/8.0.0", + "hashPath": "system.codedom.8.0.0.nupkg.sha512" + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "serviceable": true, @@ -1871,6 +1885,13 @@ "path": "system.diagnostics.eventlog/6.0.0", "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" }, + "System.Management/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", + "path": "system.management/8.0.0", + "hashPath": "system.management.8.0.0.nupkg.sha512" + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "serviceable": true, @@ -1925,11 +1946,6 @@ "serviceable": false, "sha512": "" }, - "System.Management/4.0.0.0": { - "type": "reference", - "serviceable": false, - "sha512": "" - }, "ZenStates-Core/1.6.7.0": { "type": "reference", "serviceable": false, diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.dll index 4245e9d..087001d 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.exe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.exe index a2c4e41..e928f72 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.exe and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/Saku Overclock.exe differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.CodeDom.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.CodeDom.dll index 9567eea..d53d957 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.CodeDom.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.CodeDom.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.Management.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.Management.dll index 1ca05cb..35eeb59 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.Management.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/System.Management.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WinUIEdit.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WinUIEdit.dll new file mode 100644 index 0000000..824fac3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WinUIEdit.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppRuntime.png b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppRuntime.png new file mode 100644 index 0000000..217b6a3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppRuntime.png differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll new file mode 100644 index 0000000..cf8656c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll new file mode 100644 index 0000000..160b910 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c36cb1c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/af-ZA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/af-ZA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1aa7698 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/af-ZA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/am-ET/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/am-ET/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..a4c01c2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/am-ET/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/am-ET/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/am-ET/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1fd7ec8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/am-ET/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c74db00 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ar-SA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ar-SA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..f7fb244 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ar-SA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/as-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/as-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f51c14a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/as-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/as-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/as-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7174639 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/as-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0aff439 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/az-Latn-AZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/az-Latn-AZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0220cc3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/az-Latn-AZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e94828c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bg-BG/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bg-BG/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..07f9f5f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bg-BG/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e3c7431 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bn-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bn-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2f7776 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bn-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9321d86 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bs-Latn-BA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bs-Latn-BA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c3b75cf Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/bs-Latn-BA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4900033 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12998d4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1d14422 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b84b784 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..fb08110 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cs-CZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cs-CZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5dd80ed Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cs-CZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..bc4175c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cy-GB/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cy-GB/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d9b9527 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/cy-GB/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/da-DK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/da-DK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5165bec Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/da-DK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/da-DK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/da-DK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b029c9b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/da-DK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/dcompi.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/dcompi.dll new file mode 100644 index 0000000..7d1c00b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/dcompi.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/de-DE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/de-DE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6f979d9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/de-DE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/de-DE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/de-DE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0e18054 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/de-DE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/dwmcorei.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/dwmcorei.dll new file mode 100644 index 0000000..99e434a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/dwmcorei.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/el-GR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/el-GR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..fda2eef Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/el-GR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/el-GR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/el-GR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5fd5e54 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/el-GR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-GB/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-GB/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ea87dd3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-GB/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-GB/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-GB/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d8211c1 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-GB/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-us/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-us/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..952fa1b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-us/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-us/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-us/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..75d67d6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/en-us/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..238a2ee Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..10cea5d Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-MX/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-MX/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b61f5b6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-MX/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-MX/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-MX/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0a500af Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/es-MX/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/et-EE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/et-EE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ba8cec0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/et-EE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/et-EE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/et-EE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..78c9ad0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/et-EE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4e441f9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/eu-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/eu-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..be26283 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/eu-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..005c26f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fa-IR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fa-IR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12f6407 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fa-IR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e03bedf Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fi-FI/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fi-FI/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..75d55a9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fi-FI/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f2a62ff Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fil-PH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fil-PH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..02e29e3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fil-PH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b863e3f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-CA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-CA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..85733cb Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-CA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..36366fd Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-FR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-FR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c7115ba Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/fr-FR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..76bab2c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ga-IE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ga-IE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..375febe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ga-IE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5b076f8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gd-gb/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gd-gb/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3957d48 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gd-gb/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..86248ff Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gl-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gl-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..af5bfed Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gl-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0d0ca3e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gu-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gu-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7a0d01a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/gu-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/he-IL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/he-IL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5dd22cb Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/he-IL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/he-IL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/he-IL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..687c815 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/he-IL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2c22b99 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hi-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hi-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..10a5e8b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hi-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..77b00c2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hr-HR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hr-HR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..98a2157 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hr-HR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f76cd32 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hu-HU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hu-HU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..abcc612 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hu-HU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..45913f5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hy-AM/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hy-AM/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e65e0be Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/hy-AM/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/id-ID/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/id-ID/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..cef6f7b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/id-ID/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/id-ID/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/id-ID/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..fac472e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/id-ID/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/is-IS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/is-IS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4a351b5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/is-IS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/is-IS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/is-IS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1b44691 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/is-IS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/it-IT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/it-IT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..571ed63 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/it-IT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/it-IT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/it-IT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c81ce77 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/it-IT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9ad9bdf Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ja-JP/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ja-JP/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..ac28260 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ja-JP/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..342ea6b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ka-GE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ka-GE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e4d33fd Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ka-GE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4f5c08e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kk-KZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kk-KZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..cabb426 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kk-KZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/km-KH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/km-KH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f3715d1 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/km-KH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/km-KH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/km-KH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0db589f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/km-KH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..66c3196 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kn-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kn-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..26f686c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kn-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..a1aa107 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ko-KR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ko-KR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..645eaf5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ko-KR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6150b9b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kok-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kok-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1194128 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/kok-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..325fd28 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lb-LU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lb-LU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..802a5cc Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lb-LU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..98fb1bd Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lo-LA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lo-LA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..8edda26 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lo-LA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b2959a4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lt-LT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lt-LT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..21a1ef7 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lt-LT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..47e8e53 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lv-LV/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lv-LV/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c8d6ff2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/lv-LV/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/marshal.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/marshal.dll new file mode 100644 index 0000000..56c4218 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/marshal.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8c38afe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mi-NZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mi-NZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c257936 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mi-NZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..3c02807 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mk-MK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mk-MK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5c038c1 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mk-MK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..774cfae Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ml-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ml-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..23eec00 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ml-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..73a5491 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mr-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mr-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d08f0a2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mr-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8a965c8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ms-MY/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ms-MY/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..f2b796c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ms-MY/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1c25258 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mt-MT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mt-MT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2b7d8c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/mt-MT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b7a473b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nb-NO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nb-NO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c27b23a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nb-NO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..bcea314 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ne-NP/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ne-NP/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..ca23da9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ne-NP/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ed5a2fe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nl-NL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nl-NL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..8b23a35 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nl-NL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b6c8060 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nn-NO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nn-NO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..bbc6002 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/nn-NO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/or-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/or-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..850df13 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/or-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/or-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/or-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..31ba8d8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/or-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..84a04ca Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pa-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pa-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b142c6f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pa-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1732ffc Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pl-PL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pl-PL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3b12962 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pl-PL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b07b614 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3497e37 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-BR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2181824 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-PT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-PT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b385a66 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/pt-PT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..7264e06 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/quz-PE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/quz-PE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12ca029 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/quz-PE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/resources.pri b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/resources.pri index 8b04791..48168eb 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/resources.pri and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/resources.pri differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..564ff0b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ro-RO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ro-RO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7fdf322 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ro-RO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4106589 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ru-RU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ru-RU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..a2b3ee4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ru-RU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ryzenps.exe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ryzenps.exe new file mode 100644 index 0000000..a9cfaac Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ryzenps.exe differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..959f753 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sk-SK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sk-SK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e553a8a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sk-SK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4d5d903 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sl-SI/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sl-SI/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..faf5468 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sl-SI/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..228047e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sq-AL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sq-AL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d385d4f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sq-AL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6368178 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..681c55f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0eb098c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..af0c90c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..3bdb890 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Latn-RS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Latn-RS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..44c8bf3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sr-Latn-RS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9ded8a7 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sv-SE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sv-SE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e363b67 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/sv-SE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..270d260 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ta-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ta-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2f73c6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ta-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/te-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/te-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1afe85f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/te-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/te-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/te-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..29c5231 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/te-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/th-TH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/th-TH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4ab329f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/th-TH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/th-TH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/th-TH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5971054 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/th-TH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..99d08d9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tr-TR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tr-TR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0ff371e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tr-TR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..12cd47d Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tt-RU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tt-RU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..a5c9382 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/tt-RU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2cd4495 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ug-CN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ug-CN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..2c47322 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ug-CN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8fa4d78 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uk-UA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uk-UA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..203cb87 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uk-UA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..774d3c0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ur-PK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ur-PK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e598c07 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/ur-PK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b6cdd73 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..9ee4644 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c7f0dbb Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vi-VN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vi-VN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..9fbbfbe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vi-VN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vs.appxrecipe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vs.appxrecipe index 019b510..3c72db1 100644 --- a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vs.appxrecipe +++ b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/vs.appxrecipe @@ -18,32 +18,32 @@ false C:\Program Files %28x86%29\Windows Kits\10\ C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\AppX - 3EBE18D5C5BCAEA4A791A3798E880BCB79936922B52106EAA09A5693E82FE6D5 - 129fe03a-4520-4c47-b74c-ba9210dc2f62_1.0.5.0_x64__8fghyvnsg2qm8 + C56770600F43B83336D0FD981CAABF29FF2476800EF2E78D9DC435EB570237D6 + 129fe03a-4520-4c47-b74c-ba9210dc2f62_1.0.6.0_x64__8fghyvnsg2qm8 129fe03a-4520-4c47-b74c-ba9210dc2f62_8fghyvnsg2qm8!App 129fe03a-4520-4c47-b74c-ba9210dc2f62 CN=Sakura - 1.0.5.0 + 1.0.6.0 AppxManifest.xml true - 2024-01-28T18:57:14.664 + 2024-02-04T18:43:41.389 resources.pri - 2024-01-28T18:57:12.594 + 2024-02-04T18:43:39.603 Saku Overclock.runtimeconfig.json - 2024-01-25T15:30:39.008 + 2024-02-04T07:54:56.902 Saku Overclock.dll - 2024-01-28T18:57:10.904 + 2024-02-04T18:43:38.045 Accord.dll.config @@ -929,6 +929,10 @@ ryzenadj.exe 2023-10-18T06:32:12.000 + + ryzenps.exe + 2020-10-23T12:06:54.437 + temp.ps1 2024-01-04T15:32:54.878 @@ -943,11 +947,843 @@ Saku Overclock.exe - 2024-01-28T18:57:10.988 + 2024-02-04T18:43:38.136 + + + CoreMessagingXP.dll + 2023-10-08T11:01:28.000 + + + dcompi.dll + 2023-10-08T11:01:28.000 + + + dwmcorei.dll + 2023-10-08T11:01:28.000 + + + DwmSceneI.dll + 2023-10-08T11:01:28.000 + + + DWriteCore.dll + 2023-10-08T11:01:26.000 + + + marshal.dll + 2023-10-08T11:01:28.000 + + + Microsoft.DirectManipulation.dll + 2023-10-08T11:01:28.000 + + + Microsoft.Graphics.Display.dll + 2023-10-08T11:01:28.000 + + + Microsoft.InputStateManager.dll + 2023-10-08T11:01:28.000 + + + Microsoft.Internal.FrameworkUdk.dll + 2023-10-08T11:01:26.000 + + + Microsoft.UI.Composition.OSSupport.dll + 2023-10-08T11:01:28.000 + + + Microsoft.UI.dll + 2023-10-08T11:01:28.000 + + + Microsoft.UI.Input.dll + 2023-10-08T11:01:28.000 + + + Microsoft.UI.Windowing.Core.dll + 2023-10-08T11:01:28.000 + + + Microsoft.UI.Windowing.dll + 2023-10-08T11:01:26.000 + + + Microsoft.UI.Xaml.Controls.dll + 2023-10-08T11:01:28.000 + + + Microsoft.ui.xaml.dll + 2023-10-08T11:01:30.000 + + + Microsoft.UI.Xaml.Internal.dll + 2023-10-08T11:01:28.000 + + + Microsoft.UI.Xaml.Phone.dll + 2023-10-08T11:01:28.000 + + + Microsoft.ui.xaml.resources.19h1.dll + 2023-10-08T11:01:28.000 + + + Microsoft.ui.xaml.resources.common.dll + 2023-10-08T11:01:28.000 + + + Microsoft.Web.WebView2.Core.dll + 2023-10-08T11:01:28.000 + + + Microsoft.Windows.ApplicationModel.Resources.dll + 2023-10-08T11:01:28.000 + + + Microsoft.Windows.Widgets.dll + 2023-10-08T11:01:26.000 + + + Microsoft.WindowsAppRuntime.Bootstrap.dll + 2023-10-08T11:01:28.000 + + + Microsoft.WindowsAppRuntime.dll + 2023-10-08T11:01:28.000 + + + Microsoft.WindowsAppRuntime.Insights.Resource.dll + 2023-10-08T11:01:30.000 + + + MRM.dll + 2023-10-08T11:01:28.000 + + + PushNotificationsLongRunningTask.ProxyStub.dll + 2023-10-08T11:01:28.000 + + + WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll + 2023-10-08T11:01:28.000 + + + WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll + 2023-10-08T11:01:28.000 + + + WinUIEdit.dll + 2023-10-08T11:01:28.000 + + + wuceffectsi.dll + 2023-10-08T11:01:28.000 + + + RestartAgent.exe + 2023-10-08T11:01:28.000 + + + af-ZA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + af-ZA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + am-ET\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + am-ET\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ar-SA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ar-SA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + as-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + as-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + az-Latn-AZ\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + az-Latn-AZ\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + bg-BG\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + bg-BG\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + bn-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + bn-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + bs-Latn-BA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + bs-Latn-BA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ca-Es-VALENCIA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ca-Es-VALENCIA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ca-ES\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ca-ES\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + cs-CZ\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + cs-CZ\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + cy-GB\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + cy-GB\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + da-DK\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + da-DK\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + de-DE\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + de-DE\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + el-GR\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + el-GR\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + en-GB\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + en-GB\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + en-us\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + en-us\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + es-ES\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + es-ES\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + es-MX\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + es-MX\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + et-EE\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + et-EE\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + eu-ES\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + eu-ES\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + fa-IR\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + fa-IR\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + fi-FI\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + fi-FI\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + fil-PH\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + fil-PH\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + fr-CA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + fr-CA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + fr-FR\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + fr-FR\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ga-IE\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ga-IE\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + gd-gb\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + gd-gb\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + gl-ES\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + gl-ES\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + gu-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + gu-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + he-IL\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + he-IL\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + hi-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + hi-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + hr-HR\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + hr-HR\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + hu-HU\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + hu-HU\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + hy-AM\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + hy-AM\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + id-ID\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + id-ID\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + is-IS\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + is-IS\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + it-IT\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + it-IT\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ja-JP\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ja-JP\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ka-GE\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ka-GE\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + kk-KZ\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + kk-KZ\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + km-KH\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + km-KH\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + kn-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + kn-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ko-KR\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ko-KR\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + kok-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + kok-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + lb-LU\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + lb-LU\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + lo-LA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + lo-LA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + lt-LT\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + lt-LT\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + lv-LV\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + lv-LV\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + mi-NZ\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + mi-NZ\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + mk-MK\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + mk-MK\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ml-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ml-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + mr-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + mr-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ms-MY\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ms-MY\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + mt-MT\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + mt-MT\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + nb-NO\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + nb-NO\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ne-NP\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ne-NP\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + nl-NL\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + nl-NL\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + nn-NO\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + nn-NO\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + or-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + or-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + pa-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + pa-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + pl-PL\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + pl-PL\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + pt-BR\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + pt-BR\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + pt-PT\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + pt-PT\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + quz-PE\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + quz-PE\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ro-RO\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ro-RO\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ru-RU\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ru-RU\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + sk-SK\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + sk-SK\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + sl-SI\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + sl-SI\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + sq-AL\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + sq-AL\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + sr-Cyrl-BA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + sr-Cyrl-BA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + sr-Cyrl-RS\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + sr-Cyrl-RS\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + sr-Latn-RS\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + sr-Latn-RS\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + sv-SE\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + sv-SE\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ta-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ta-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + te-IN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + te-IN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + th-TH\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + th-TH\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + tr-TR\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + tr-TR\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + tt-RU\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + tt-RU\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ug-CN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ug-CN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + uk-UA\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + uk-UA\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + ur-PK\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + ur-PK\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + uz-Latn-UZ\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + uz-Latn-UZ\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + vi-VN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + vi-VN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + zh-CN\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + zh-CN\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + zh-TW\Microsoft.ui.xaml.dll.mui + 2023-10-08T11:01:30.000 + + + zh-TW\Microsoft.UI.Xaml.Phone.dll.mui + 2023-10-08T11:01:30.000 + + + Microsoft.UI.Xaml\Assets\NoiseAsset_256x256_PNG.png + 2023-10-08T11:01:30.000 + + + WindowsAppRuntime.png + 2023-10-08T11:01:30.000 Saku Overclock.deps.json - 2024-01-28T18:57:12.157 + 2024-02-04T07:54:56.635 Microsoft.CSharp.dll @@ -1693,10 +2529,6 @@ ReachFramework.dll 2023-10-21T00:11:30.000 - - System.CodeDom.dll - 2023-10-21T00:11:04.000 - System.Configuration.ConfigurationManager.dll 2023-10-21T00:11:04.000 @@ -2985,6 +3817,14 @@ OpenHardwareMonitorLib.dll 2021-05-02T09:26:00.000 + + System.CodeDom.dll + 2023-10-31T15:04:16.000 + + + System.Management.dll + 2023-10-31T15:07:58.000 + Microsoft.Win32.TaskScheduler.dll 2022-02-10T23:07:24.000 @@ -3025,22 +3865,18 @@ zh-Hant\Microsoft.Win32.TaskScheduler.resources.dll 2022-02-10T23:07:34.000 - - Microsoft.WindowsAppRuntime.Bootstrap.dll - 2023-10-06T14:57:28.000 - Saku Overclock.Core.dll - 2024-01-01T11:29:02.359 - - - System.Management.dll - 2019-03-27T23:11:14.000 + 2024-02-03T18:39:33.430 ZenStates-Core.dll 2023-12-17T22:39:09.000 + + Microsoft.UI.Xaml.Controls.pri + 2023-10-08T11:01:30.000 + Microsoft.Xaml.Interactions.pri 2022-09-29T14:11:46.000 @@ -3127,41 +3963,5 @@ - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - x86 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.4.msix - - - - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - win32 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.4.msix - - - - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - x64 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-x64\Microsoft.WindowsAppRuntime.1.4.msix - - - - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - arm64 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-arm64\Microsoft.WindowsAppRuntime.1.4.msix - - - \ No newline at end of file diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/wuceffectsi.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/wuceffectsi.dll new file mode 100644 index 0000000..4b08efa Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/wuceffectsi.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1d09f3a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-CN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-CN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7f2c7db Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-CN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..610f790 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-TW/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-TW/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7cd7809 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppX/zh-TW/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppxManifest.xml b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppxManifest.xml index 226da1e..64e0260 100644 --- a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppxManifest.xml +++ b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/AppxManifest.xml @@ -7,7 +7,7 @@ Дополнительные сведения о файлах манифестов приложений см. по адресу http://go.microsoft.com/fwlink/?LinkID=241727 --> - + Saku Overclock @@ -17,7 +17,6 @@ - @@ -25,7 +24,7 @@ - + diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/CoreMessagingXP.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/CoreMessagingXP.dll new file mode 100644 index 0000000..423e30f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/CoreMessagingXP.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/DWriteCore.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/DWriteCore.dll new file mode 100644 index 0000000..ccd381e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/DWriteCore.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/DwmSceneI.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/DwmSceneI.dll new file mode 100644 index 0000000..1b1500e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/DwmSceneI.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MRM.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MRM.dll new file mode 100644 index 0000000..3045d63 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MRM.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf index 5b04ba0..ed07e9a 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.DirectManipulation.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.DirectManipulation.dll new file mode 100644 index 0000000..946be1e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.DirectManipulation.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Display.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Display.dll new file mode 100644 index 0000000..88675c3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Graphics.Display.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.InputStateManager.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.InputStateManager.dll new file mode 100644 index 0000000..b53b2b5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.InputStateManager.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Internal.FrameworkUdk.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Internal.FrameworkUdk.dll new file mode 100644 index 0000000..603e0e8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Internal.FrameworkUdk.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Composition.OSSupport.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Composition.OSSupport.dll new file mode 100644 index 0000000..08adf07 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Composition.OSSupport.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Input.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Input.dll new file mode 100644 index 0000000..319a7d2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Input.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Windowing.Core.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Windowing.Core.dll new file mode 100644 index 0000000..c37b91b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Windowing.Core.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Windowing.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Windowing.dll new file mode 100644 index 0000000..0ab129b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Windowing.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Controls.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Controls.dll new file mode 100644 index 0000000..ee61b7f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Controls.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Controls.pri b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Controls.pri new file mode 100644 index 0000000..ac27433 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Controls.pri differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Internal.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Internal.dll new file mode 100644 index 0000000..1f22a56 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Internal.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Phone.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Phone.dll new file mode 100644 index 0000000..eee4e7f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml.Phone.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png new file mode 100644 index 0000000..41de173 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.dll new file mode 100644 index 0000000..e869af6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.UI.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Web.WebView2.Core.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Web.WebView2.Core.dll new file mode 100644 index 0000000..269a0a8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Web.WebView2.Core.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.Resources.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.Resources.dll new file mode 100644 index 0000000..3992866 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.ApplicationModel.Resources.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Widgets.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Widgets.dll new file mode 100644 index 0000000..8450aed Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.Windows.Widgets.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Insights.Resource.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Insights.Resource.dll new file mode 100644 index 0000000..c1a9a87 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.Insights.Resource.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.dll new file mode 100644 index 0000000..d76175a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.WindowsAppRuntime.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.dll new file mode 100644 index 0000000..25ea98e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.resources.19h1.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.resources.19h1.dll new file mode 100644 index 0000000..9c99f7f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.resources.19h1.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.resources.common.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.resources.common.dll new file mode 100644 index 0000000..984df39 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Microsoft.ui.xaml.resources.common.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/PushNotificationsLongRunningTask.ProxyStub.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/PushNotificationsLongRunningTask.ProxyStub.dll new file mode 100644 index 0000000..00853f4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/PushNotificationsLongRunningTask.ProxyStub.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/RestartAgent.exe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/RestartAgent.exe new file mode 100644 index 0000000..61962e0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/RestartAgent.exe differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.dll index 201b055..e8a74b2 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.pdb b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.pdb index 2515bd2..537a4dd 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.pdb and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.Core.pdb differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.build.appxrecipe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.build.appxrecipe index 0295666..31bbab2 100644 --- a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.build.appxrecipe +++ b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.build.appxrecipe @@ -697,6 +697,9 @@ ryzenadj.exe + + ryzenps.exe + temp.ps1 @@ -709,6 +712,630 @@ Saku Overclock.exe + + CoreMessagingXP.dll + + + dcompi.dll + + + dwmcorei.dll + + + DwmSceneI.dll + + + DWriteCore.dll + + + marshal.dll + + + Microsoft.DirectManipulation.dll + + + Microsoft.Graphics.Display.dll + + + Microsoft.InputStateManager.dll + + + Microsoft.Internal.FrameworkUdk.dll + + + Microsoft.UI.Composition.OSSupport.dll + + + Microsoft.UI.dll + + + Microsoft.UI.Input.dll + + + Microsoft.UI.Windowing.Core.dll + + + Microsoft.UI.Windowing.dll + + + Microsoft.UI.Xaml.Controls.dll + + + Microsoft.ui.xaml.dll + + + Microsoft.UI.Xaml.Internal.dll + + + Microsoft.UI.Xaml.Phone.dll + + + Microsoft.ui.xaml.resources.19h1.dll + + + Microsoft.ui.xaml.resources.common.dll + + + Microsoft.Web.WebView2.Core.dll + + + Microsoft.Windows.ApplicationModel.Resources.dll + + + Microsoft.Windows.Widgets.dll + + + Microsoft.WindowsAppRuntime.Bootstrap.dll + + + Microsoft.WindowsAppRuntime.dll + + + Microsoft.WindowsAppRuntime.Insights.Resource.dll + + + MRM.dll + + + PushNotificationsLongRunningTask.ProxyStub.dll + + + WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll + + + WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll + + + WinUIEdit.dll + + + wuceffectsi.dll + + + RestartAgent.exe + + + af-ZA\Microsoft.ui.xaml.dll.mui + + + af-ZA\Microsoft.UI.Xaml.Phone.dll.mui + + + am-ET\Microsoft.ui.xaml.dll.mui + + + am-ET\Microsoft.UI.Xaml.Phone.dll.mui + + + ar-SA\Microsoft.ui.xaml.dll.mui + + + ar-SA\Microsoft.UI.Xaml.Phone.dll.mui + + + as-IN\Microsoft.ui.xaml.dll.mui + + + as-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + az-Latn-AZ\Microsoft.ui.xaml.dll.mui + + + az-Latn-AZ\Microsoft.UI.Xaml.Phone.dll.mui + + + bg-BG\Microsoft.ui.xaml.dll.mui + + + bg-BG\Microsoft.UI.Xaml.Phone.dll.mui + + + bn-IN\Microsoft.ui.xaml.dll.mui + + + bn-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + bs-Latn-BA\Microsoft.ui.xaml.dll.mui + + + bs-Latn-BA\Microsoft.UI.Xaml.Phone.dll.mui + + + ca-Es-VALENCIA\Microsoft.ui.xaml.dll.mui + + + ca-Es-VALENCIA\Microsoft.UI.Xaml.Phone.dll.mui + + + ca-ES\Microsoft.ui.xaml.dll.mui + + + ca-ES\Microsoft.UI.Xaml.Phone.dll.mui + + + cs-CZ\Microsoft.ui.xaml.dll.mui + + + cs-CZ\Microsoft.UI.Xaml.Phone.dll.mui + + + cy-GB\Microsoft.ui.xaml.dll.mui + + + cy-GB\Microsoft.UI.Xaml.Phone.dll.mui + + + da-DK\Microsoft.ui.xaml.dll.mui + + + da-DK\Microsoft.UI.Xaml.Phone.dll.mui + + + de-DE\Microsoft.ui.xaml.dll.mui + + + de-DE\Microsoft.UI.Xaml.Phone.dll.mui + + + el-GR\Microsoft.ui.xaml.dll.mui + + + el-GR\Microsoft.UI.Xaml.Phone.dll.mui + + + en-GB\Microsoft.ui.xaml.dll.mui + + + en-GB\Microsoft.UI.Xaml.Phone.dll.mui + + + en-us\Microsoft.ui.xaml.dll.mui + + + en-us\Microsoft.UI.Xaml.Phone.dll.mui + + + es-ES\Microsoft.ui.xaml.dll.mui + + + es-ES\Microsoft.UI.Xaml.Phone.dll.mui + + + es-MX\Microsoft.ui.xaml.dll.mui + + + es-MX\Microsoft.UI.Xaml.Phone.dll.mui + + + et-EE\Microsoft.ui.xaml.dll.mui + + + et-EE\Microsoft.UI.Xaml.Phone.dll.mui + + + eu-ES\Microsoft.ui.xaml.dll.mui + + + eu-ES\Microsoft.UI.Xaml.Phone.dll.mui + + + fa-IR\Microsoft.ui.xaml.dll.mui + + + fa-IR\Microsoft.UI.Xaml.Phone.dll.mui + + + fi-FI\Microsoft.ui.xaml.dll.mui + + + fi-FI\Microsoft.UI.Xaml.Phone.dll.mui + + + fil-PH\Microsoft.ui.xaml.dll.mui + + + fil-PH\Microsoft.UI.Xaml.Phone.dll.mui + + + fr-CA\Microsoft.ui.xaml.dll.mui + + + fr-CA\Microsoft.UI.Xaml.Phone.dll.mui + + + fr-FR\Microsoft.ui.xaml.dll.mui + + + fr-FR\Microsoft.UI.Xaml.Phone.dll.mui + + + ga-IE\Microsoft.ui.xaml.dll.mui + + + ga-IE\Microsoft.UI.Xaml.Phone.dll.mui + + + gd-gb\Microsoft.ui.xaml.dll.mui + + + gd-gb\Microsoft.UI.Xaml.Phone.dll.mui + + + gl-ES\Microsoft.ui.xaml.dll.mui + + + gl-ES\Microsoft.UI.Xaml.Phone.dll.mui + + + gu-IN\Microsoft.ui.xaml.dll.mui + + + gu-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + he-IL\Microsoft.ui.xaml.dll.mui + + + he-IL\Microsoft.UI.Xaml.Phone.dll.mui + + + hi-IN\Microsoft.ui.xaml.dll.mui + + + hi-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + hr-HR\Microsoft.ui.xaml.dll.mui + + + hr-HR\Microsoft.UI.Xaml.Phone.dll.mui + + + hu-HU\Microsoft.ui.xaml.dll.mui + + + hu-HU\Microsoft.UI.Xaml.Phone.dll.mui + + + hy-AM\Microsoft.ui.xaml.dll.mui + + + hy-AM\Microsoft.UI.Xaml.Phone.dll.mui + + + id-ID\Microsoft.ui.xaml.dll.mui + + + id-ID\Microsoft.UI.Xaml.Phone.dll.mui + + + is-IS\Microsoft.ui.xaml.dll.mui + + + is-IS\Microsoft.UI.Xaml.Phone.dll.mui + + + it-IT\Microsoft.ui.xaml.dll.mui + + + it-IT\Microsoft.UI.Xaml.Phone.dll.mui + + + ja-JP\Microsoft.ui.xaml.dll.mui + + + ja-JP\Microsoft.UI.Xaml.Phone.dll.mui + + + ka-GE\Microsoft.ui.xaml.dll.mui + + + ka-GE\Microsoft.UI.Xaml.Phone.dll.mui + + + kk-KZ\Microsoft.ui.xaml.dll.mui + + + kk-KZ\Microsoft.UI.Xaml.Phone.dll.mui + + + km-KH\Microsoft.ui.xaml.dll.mui + + + km-KH\Microsoft.UI.Xaml.Phone.dll.mui + + + kn-IN\Microsoft.ui.xaml.dll.mui + + + kn-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + ko-KR\Microsoft.ui.xaml.dll.mui + + + ko-KR\Microsoft.UI.Xaml.Phone.dll.mui + + + kok-IN\Microsoft.ui.xaml.dll.mui + + + kok-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + lb-LU\Microsoft.ui.xaml.dll.mui + + + lb-LU\Microsoft.UI.Xaml.Phone.dll.mui + + + lo-LA\Microsoft.ui.xaml.dll.mui + + + lo-LA\Microsoft.UI.Xaml.Phone.dll.mui + + + lt-LT\Microsoft.ui.xaml.dll.mui + + + lt-LT\Microsoft.UI.Xaml.Phone.dll.mui + + + lv-LV\Microsoft.ui.xaml.dll.mui + + + lv-LV\Microsoft.UI.Xaml.Phone.dll.mui + + + mi-NZ\Microsoft.ui.xaml.dll.mui + + + mi-NZ\Microsoft.UI.Xaml.Phone.dll.mui + + + mk-MK\Microsoft.ui.xaml.dll.mui + + + mk-MK\Microsoft.UI.Xaml.Phone.dll.mui + + + ml-IN\Microsoft.ui.xaml.dll.mui + + + ml-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + mr-IN\Microsoft.ui.xaml.dll.mui + + + mr-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + ms-MY\Microsoft.ui.xaml.dll.mui + + + ms-MY\Microsoft.UI.Xaml.Phone.dll.mui + + + mt-MT\Microsoft.ui.xaml.dll.mui + + + mt-MT\Microsoft.UI.Xaml.Phone.dll.mui + + + nb-NO\Microsoft.ui.xaml.dll.mui + + + nb-NO\Microsoft.UI.Xaml.Phone.dll.mui + + + ne-NP\Microsoft.ui.xaml.dll.mui + + + ne-NP\Microsoft.UI.Xaml.Phone.dll.mui + + + nl-NL\Microsoft.ui.xaml.dll.mui + + + nl-NL\Microsoft.UI.Xaml.Phone.dll.mui + + + nn-NO\Microsoft.ui.xaml.dll.mui + + + nn-NO\Microsoft.UI.Xaml.Phone.dll.mui + + + or-IN\Microsoft.ui.xaml.dll.mui + + + or-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + pa-IN\Microsoft.ui.xaml.dll.mui + + + pa-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + pl-PL\Microsoft.ui.xaml.dll.mui + + + pl-PL\Microsoft.UI.Xaml.Phone.dll.mui + + + pt-BR\Microsoft.ui.xaml.dll.mui + + + pt-BR\Microsoft.UI.Xaml.Phone.dll.mui + + + pt-PT\Microsoft.ui.xaml.dll.mui + + + pt-PT\Microsoft.UI.Xaml.Phone.dll.mui + + + quz-PE\Microsoft.ui.xaml.dll.mui + + + quz-PE\Microsoft.UI.Xaml.Phone.dll.mui + + + ro-RO\Microsoft.ui.xaml.dll.mui + + + ro-RO\Microsoft.UI.Xaml.Phone.dll.mui + + + ru-RU\Microsoft.ui.xaml.dll.mui + + + ru-RU\Microsoft.UI.Xaml.Phone.dll.mui + + + sk-SK\Microsoft.ui.xaml.dll.mui + + + sk-SK\Microsoft.UI.Xaml.Phone.dll.mui + + + sl-SI\Microsoft.ui.xaml.dll.mui + + + sl-SI\Microsoft.UI.Xaml.Phone.dll.mui + + + sq-AL\Microsoft.ui.xaml.dll.mui + + + sq-AL\Microsoft.UI.Xaml.Phone.dll.mui + + + sr-Cyrl-BA\Microsoft.ui.xaml.dll.mui + + + sr-Cyrl-BA\Microsoft.UI.Xaml.Phone.dll.mui + + + sr-Cyrl-RS\Microsoft.ui.xaml.dll.mui + + + sr-Cyrl-RS\Microsoft.UI.Xaml.Phone.dll.mui + + + sr-Latn-RS\Microsoft.ui.xaml.dll.mui + + + sr-Latn-RS\Microsoft.UI.Xaml.Phone.dll.mui + + + sv-SE\Microsoft.ui.xaml.dll.mui + + + sv-SE\Microsoft.UI.Xaml.Phone.dll.mui + + + ta-IN\Microsoft.ui.xaml.dll.mui + + + ta-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + te-IN\Microsoft.ui.xaml.dll.mui + + + te-IN\Microsoft.UI.Xaml.Phone.dll.mui + + + th-TH\Microsoft.ui.xaml.dll.mui + + + th-TH\Microsoft.UI.Xaml.Phone.dll.mui + + + tr-TR\Microsoft.ui.xaml.dll.mui + + + tr-TR\Microsoft.UI.Xaml.Phone.dll.mui + + + tt-RU\Microsoft.ui.xaml.dll.mui + + + tt-RU\Microsoft.UI.Xaml.Phone.dll.mui + + + ug-CN\Microsoft.ui.xaml.dll.mui + + + ug-CN\Microsoft.UI.Xaml.Phone.dll.mui + + + uk-UA\Microsoft.ui.xaml.dll.mui + + + uk-UA\Microsoft.UI.Xaml.Phone.dll.mui + + + ur-PK\Microsoft.ui.xaml.dll.mui + + + ur-PK\Microsoft.UI.Xaml.Phone.dll.mui + + + uz-Latn-UZ\Microsoft.ui.xaml.dll.mui + + + uz-Latn-UZ\Microsoft.UI.Xaml.Phone.dll.mui + + + vi-VN\Microsoft.ui.xaml.dll.mui + + + vi-VN\Microsoft.UI.Xaml.Phone.dll.mui + + + zh-CN\Microsoft.ui.xaml.dll.mui + + + zh-CN\Microsoft.UI.Xaml.Phone.dll.mui + + + zh-TW\Microsoft.ui.xaml.dll.mui + + + zh-TW\Microsoft.UI.Xaml.Phone.dll.mui + + + Microsoft.UI.Xaml\Assets\NoiseAsset_256x256_PNG.png + + + WindowsAppRuntime.png + Saku Overclock.deps.json @@ -1270,9 +1897,6 @@ ReachFramework.dll - - System.CodeDom.dll - System.Configuration.ConfigurationManager.dll @@ -2239,6 +2863,12 @@ OpenHardwareMonitorLib.dll + + System.CodeDom.dll + + + System.Management.dll + Microsoft.Win32.TaskScheduler.dll @@ -2269,18 +2899,15 @@ zh-Hant\Microsoft.Win32.TaskScheduler.resources.dll - - Microsoft.WindowsAppRuntime.Bootstrap.dll - Saku Overclock.Core.dll - - System.Management.dll - ZenStates-Core.dll + + Microsoft.UI.Xaml.Controls.pri + Microsoft.Xaml.Interactions.pri @@ -2346,37 +2973,5 @@ - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - x86 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.4.msix - - - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - win32 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-x86\Microsoft.WindowsAppRuntime.1.4.msix - - - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - x64 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-x64\Microsoft.WindowsAppRuntime.1.4.msix - - - - Microsoft.WindowsAppRuntime.1.4 - 4000.1010.1349.0 - arm64 - Name = Microsoft.WindowsAppRuntime.1.4, MinVersion = 4000.1010.1349.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 - C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\buildTransitive\..\tools\MSIX\win10-arm64\Microsoft.WindowsAppRuntime.1.4.msix - - diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.deps.json b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.deps.json index f646802..f6e1c8f 100644 --- a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.deps.json +++ b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.deps.json @@ -18,9 +18,9 @@ "Microsoft.Xaml.Behaviors.WinUI.Managed": "2.0.9", "Newtonsoft.Json": "13.0.3", "OpenHardwareMonitor": "0.9.6", + "System.Management": "8.0.0", "TaskScheduler": "2.10.1", "WinUIEx": "2.3.2", - "System.Management": "4.0.0.0", "ZenStates-Core": "1.6.7.0", "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "7.0.14", "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "7.0.14", @@ -824,10 +824,6 @@ "assemblyVersion": "7.0.0.0", "fileVersion": "7.0.1423.52002" }, - "System.CodeDom.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.1423.51910" - }, "System.Configuration.ConfigurationManager.dll": { "assemblyVersion": "7.0.0.0", "fileVersion": "7.0.1423.51910" @@ -1476,12 +1472,31 @@ } } }, + "System.CodeDom/8.0.0": { + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, "System.Diagnostics.EventLog/6.0.0": {}, + "System.Management/8.0.0": { + "dependencies": { + "System.CodeDom": "8.0.0" + }, + "runtime": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, "System.Security.AccessControl/5.0.0": { "dependencies": { @@ -1559,14 +1574,6 @@ "Saku Overclock.Core.dll": {} } }, - "System.Management/4.0.0.0": { - "runtime": { - "System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.8.3761.0" - } - } - }, "ZenStates-Core/1.6.7.0": { "runtime": { "ZenStates-Core.dll": { @@ -1857,6 +1864,13 @@ "path": "openhardwaremonitor/0.9.6", "hashPath": "openhardwaremonitor.0.9.6.nupkg.sha512" }, + "System.CodeDom/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", + "path": "system.codedom/8.0.0", + "hashPath": "system.codedom.8.0.0.nupkg.sha512" + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "serviceable": true, @@ -1871,6 +1885,13 @@ "path": "system.diagnostics.eventlog/6.0.0", "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" }, + "System.Management/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", + "path": "system.management/8.0.0", + "hashPath": "system.management.8.0.0.nupkg.sha512" + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "serviceable": true, @@ -1925,11 +1946,6 @@ "serviceable": false, "sha512": "" }, - "System.Management/4.0.0.0": { - "type": "reference", - "serviceable": false, - "sha512": "" - }, "ZenStates-Core/1.6.7.0": { "type": "reference", "serviceable": false, diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll index 4245e9d..087001d 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.exe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.exe index a2c4e41..e928f72 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.exe and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.exe differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb index 46cf31b..4729950 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.CodeDom.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.CodeDom.dll index 9567eea..d53d957 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.CodeDom.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.CodeDom.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.Management.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.Management.dll index 1ca05cb..35eeb59 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.Management.dll and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/System.Management.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf index b2a9a59..9b03310 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf differ diff --git "a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" "b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" index 53a6388..d4a7272 100644 Binary files "a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" and "b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" differ diff --git "a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" "b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" index 9a641b8..33c130e 100644 Binary files "a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" and "b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" differ diff --git "a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" "b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" index 77c5515..5728684 100644 Binary files "a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" and "b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WinUIEdit.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WinUIEdit.dll new file mode 100644 index 0000000..824fac3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WinUIEdit.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppRuntime.png b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppRuntime.png new file mode 100644 index 0000000..217b6a3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppRuntime.png differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll new file mode 100644 index 0000000..cf8656c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll new file mode 100644 index 0000000..160b910 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c36cb1c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/af-ZA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/af-ZA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1aa7698 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/af-ZA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/am-ET/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/am-ET/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..a4c01c2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/am-ET/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/am-ET/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/am-ET/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1fd7ec8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/am-ET/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c74db00 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ar-SA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ar-SA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..f7fb244 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ar-SA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/as-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/as-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f51c14a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/as-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/as-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/as-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7174639 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/as-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0aff439 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/az-Latn-AZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/az-Latn-AZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0220cc3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/az-Latn-AZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e94828c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bg-BG/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bg-BG/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..07f9f5f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bg-BG/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e3c7431 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bn-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bn-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2f7776 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bn-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9321d86 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bs-Latn-BA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bs-Latn-BA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c3b75cf Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/bs-Latn-BA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4900033 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12998d4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1d14422 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b84b784 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..fb08110 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cs-CZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cs-CZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5dd80ed Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cs-CZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..bc4175c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cy-GB/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cy-GB/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d9b9527 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/cy-GB/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/da-DK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/da-DK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5165bec Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/da-DK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/da-DK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/da-DK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b029c9b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/da-DK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/dcompi.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/dcompi.dll new file mode 100644 index 0000000..7d1c00b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/dcompi.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/de-DE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/de-DE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6f979d9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/de-DE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/de-DE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/de-DE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0e18054 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/de-DE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/dwmcorei.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/dwmcorei.dll new file mode 100644 index 0000000..99e434a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/dwmcorei.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/el-GR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/el-GR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..fda2eef Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/el-GR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/el-GR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/el-GR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5fd5e54 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/el-GR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-GB/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-GB/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ea87dd3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-GB/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-GB/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-GB/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d8211c1 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-GB/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-us/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-us/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..952fa1b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-us/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-us/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-us/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..75d67d6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/en-us/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..238a2ee Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..10cea5d Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-MX/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-MX/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b61f5b6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-MX/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-MX/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-MX/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0a500af Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/es-MX/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/et-EE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/et-EE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ba8cec0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/et-EE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/et-EE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/et-EE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..78c9ad0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/et-EE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4e441f9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/eu-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/eu-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..be26283 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/eu-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..005c26f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fa-IR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fa-IR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12f6407 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fa-IR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e03bedf Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fi-FI/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fi-FI/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..75d55a9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fi-FI/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f2a62ff Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fil-PH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fil-PH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..02e29e3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fil-PH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b863e3f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-CA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-CA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..85733cb Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-CA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..36366fd Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-FR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-FR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c7115ba Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/fr-FR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..76bab2c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ga-IE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ga-IE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..375febe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ga-IE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5b076f8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gd-gb/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gd-gb/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3957d48 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gd-gb/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..86248ff Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gl-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gl-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..af5bfed Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gl-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0d0ca3e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gu-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gu-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7a0d01a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/gu-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/he-IL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/he-IL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5dd22cb Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/he-IL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/he-IL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/he-IL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..687c815 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/he-IL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2c22b99 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hi-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hi-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..10a5e8b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hi-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..77b00c2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hr-HR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hr-HR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..98a2157 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hr-HR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f76cd32 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hu-HU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hu-HU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..abcc612 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hu-HU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..45913f5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hy-AM/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hy-AM/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e65e0be Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/hy-AM/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/id-ID/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/id-ID/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..cef6f7b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/id-ID/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/id-ID/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/id-ID/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..fac472e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/id-ID/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/is-IS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/is-IS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4a351b5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/is-IS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/is-IS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/is-IS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1b44691 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/is-IS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/it-IT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/it-IT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..571ed63 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/it-IT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/it-IT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/it-IT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c81ce77 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/it-IT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9ad9bdf Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ja-JP/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ja-JP/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..ac28260 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ja-JP/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..342ea6b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ka-GE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ka-GE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e4d33fd Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ka-GE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4f5c08e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kk-KZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kk-KZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..cabb426 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kk-KZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/km-KH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/km-KH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f3715d1 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/km-KH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/km-KH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/km-KH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0db589f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/km-KH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..66c3196 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kn-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kn-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..26f686c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kn-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..a1aa107 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ko-KR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ko-KR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..645eaf5 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ko-KR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6150b9b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kok-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kok-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1194128 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/kok-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..325fd28 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lb-LU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lb-LU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..802a5cc Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lb-LU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..98fb1bd Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lo-LA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lo-LA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..8edda26 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lo-LA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b2959a4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lt-LT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lt-LT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..21a1ef7 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lt-LT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..47e8e53 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lv-LV/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lv-LV/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c8d6ff2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/lv-LV/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/marshal.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/marshal.dll new file mode 100644 index 0000000..56c4218 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/marshal.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8c38afe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mi-NZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mi-NZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c257936 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mi-NZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..3c02807 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mk-MK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mk-MK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5c038c1 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mk-MK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..774cfae Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ml-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ml-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..23eec00 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ml-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..73a5491 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mr-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mr-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d08f0a2 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mr-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8a965c8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ms-MY/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ms-MY/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..f2b796c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ms-MY/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1c25258 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mt-MT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mt-MT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2b7d8c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/mt-MT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b7a473b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nb-NO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nb-NO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c27b23a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nb-NO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..bcea314 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ne-NP/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ne-NP/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..ca23da9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ne-NP/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ed5a2fe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nl-NL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nl-NL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..8b23a35 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nl-NL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b6c8060 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nn-NO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nn-NO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..bbc6002 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/nn-NO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/or-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/or-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..850df13 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/or-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/or-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/or-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..31ba8d8 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/or-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..84a04ca Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pa-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pa-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b142c6f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pa-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1732ffc Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pl-PL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pl-PL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3b12962 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pl-PL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b07b614 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3497e37 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-BR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2181824 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-PT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-PT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b385a66 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pt-PT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..7264e06 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/quz-PE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/quz-PE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12ca029 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/quz-PE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/resources.pri b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/resources.pri index 8b04791..48168eb 100644 Binary files a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/resources.pri and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/resources.pri differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..564ff0b Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ro-RO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ro-RO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7fdf322 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ro-RO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4106589 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ru-RU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ru-RU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..a2b3ee4 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ru-RU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ryzenps.exe b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ryzenps.exe new file mode 100644 index 0000000..a9cfaac Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ryzenps.exe differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..959f753 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sk-SK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sk-SK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e553a8a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sk-SK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4d5d903 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sl-SI/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sl-SI/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..faf5468 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sl-SI/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..228047e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sq-AL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sq-AL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d385d4f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sq-AL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6368178 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..681c55f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0eb098c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..af0c90c Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..3bdb890 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Latn-RS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Latn-RS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..44c8bf3 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sr-Latn-RS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9ded8a7 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sv-SE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sv-SE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e363b67 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/sv-SE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..270d260 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ta-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ta-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2f73c6 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ta-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/te-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/te-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1afe85f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/te-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/te-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/te-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..29c5231 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/te-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/th-TH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/th-TH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4ab329f Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/th-TH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/th-TH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/th-TH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5971054 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/th-TH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..99d08d9 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tr-TR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tr-TR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0ff371e Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tr-TR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..12cd47d Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tt-RU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tt-RU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..a5c9382 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/tt-RU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2cd4495 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ug-CN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ug-CN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..2c47322 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ug-CN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8fa4d78 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uk-UA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uk-UA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..203cb87 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uk-UA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..774d3c0 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ur-PK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ur-PK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e598c07 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ur-PK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b6cdd73 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..9ee4644 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c7f0dbb Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/vi-VN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/vi-VN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..9fbbfbe Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/vi-VN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/wuceffectsi.dll b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/wuceffectsi.dll new file mode 100644 index 0000000..4b08efa Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/wuceffectsi.dll differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1d09f3a Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-CN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-CN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7f2c7db Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-CN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..610f790 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-TW/Microsoft.ui.xaml.dll.mui b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-TW/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7cd7809 Binary files /dev/null and b/Saku Overclock/bin/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/zh-TW/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/config.cs b/Saku Overclock/config.cs index 5bc19c5..81d9eb0 100644 --- a/Saku Overclock/config.cs +++ b/Saku Overclock/config.cs @@ -3,6 +3,7 @@ namespace Saku_Overclock; #pragma warning disable CS0649 // , NULL, , NULL, . , NULL. internal class Config { + public bool bluetheme; public bool Infoupdate; public string fanvalue; public int fanconfig; diff --git a/Saku Overclock/devices.cs b/Saku Overclock/devices.cs index 1f7e150..e86a55d 100644 --- a/Saku Overclock/devices.cs +++ b/Saku Overclock/devices.cs @@ -57,6 +57,33 @@ internal class Devices public double g8v; public double g9v; public double g10v; + //ADVANCED config + public bool a1; + public bool a2; + public bool a3; + public bool a4; + public bool a5; + public bool a6; + public bool a7; + public bool a8; + public bool a9; + public bool a10; + public bool a11; + public bool a12; + public bool a13; + public double a1v; + public double a2v; + public double a3v; + public double a4v; + public double a5v; + public double a6v; + public double a7v; + public double a8v; + public double a9v; + public double a10v; + public double a11v; + public double a12v; + public int a13v; //Pstates config public string? did0; public string? did1; @@ -64,6 +91,9 @@ internal class Devices public string? fid0; public string? fid1; public string? fid2; + public double vid0; + public double vid1; + public double vid2; public bool enableps; public bool turboboost; public bool autopstate; diff --git a/Saku Overclock/obj/Saku Overclock.csproj.nuget.dgspec.json b/Saku Overclock/obj/Saku Overclock.csproj.nuget.dgspec.json index 86f661b..9095c72 100644 --- a/Saku Overclock/obj/Saku Overclock.csproj.nuget.dgspec.json +++ b/Saku Overclock/obj/Saku Overclock.csproj.nuget.dgspec.json @@ -149,6 +149,10 @@ "target": "Package", "version": "[0.9.6, )" }, + "System.Management": { + "target": "Package", + "version": "[8.0.0, )" + }, "TaskScheduler": { "target": "Package", "version": "[2.10.1, )" diff --git a/Saku Overclock/obj/project.assets.json b/Saku Overclock/obj/project.assets.json index 298cbdb..c4bc69f 100644 --- a/Saku Overclock/obj/project.assets.json +++ b/Saku Overclock/obj/project.assets.json @@ -742,6 +742,22 @@ "lib/net45/OpenHardwareMonitorLib.dll": {} } }, + "System.CodeDom/8.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "dependencies": { @@ -787,6 +803,31 @@ } } }, + "System.Management/8.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "8.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { @@ -1692,6 +1733,22 @@ "lib/net45/OpenHardwareMonitorLib.dll": {} } }, + "System.CodeDom/8.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "dependencies": { @@ -1728,6 +1785,25 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, + "System.Management/8.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "8.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { @@ -2611,6 +2687,22 @@ "lib/net45/OpenHardwareMonitorLib.dll": {} } }, + "System.CodeDom/8.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "dependencies": { @@ -2647,6 +2739,25 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, + "System.Management/8.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "8.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { @@ -3530,6 +3641,22 @@ "lib/net45/OpenHardwareMonitorLib.dll": {} } }, + "System.CodeDom/8.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", "dependencies": { @@ -3566,6 +3693,25 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, + "System.Management/8.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "8.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { @@ -5451,6 +5597,35 @@ "openhardwaremonitor.nuspec" ] }, + "System.CodeDom/8.0.0": { + "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", + "type": "package", + "path": "system.codedom/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/net7.0/System.CodeDom.dll", + "lib/net7.0/System.CodeDom.xml", + "lib/net8.0/System.CodeDom.dll", + "lib/net8.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.8.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Diagnostics.DiagnosticSource/6.0.0": { "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", "type": "package", @@ -5507,6 +5682,39 @@ "useSharedDesignerContext.txt" ] }, + "System.Management/8.0.0": { + "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", + "type": "package", + "path": "system.management/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/net8.0/System.Management.dll", + "lib/net8.0/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "runtimes/win/lib/net8.0/System.Management.dll", + "runtimes/win/lib/net8.0/System.Management.xml", + "system.management.8.0.0.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", "type": "package", @@ -5876,6 +6084,7 @@ "Newtonsoft.Json >= 13.0.3", "OpenHardwareMonitor >= 0.9.6", "Saku Overclock.Core >= 1.0.0", + "System.Management >= 8.0.0", "TaskScheduler >= 2.10.1", "WinUIEx >= 2.3.2" ] @@ -5964,6 +6173,10 @@ "target": "Package", "version": "[0.9.6, )" }, + "System.Management": { + "target": "Package", + "version": "[8.0.0, )" + }, "TaskScheduler": { "target": "Package", "version": "[2.10.1, )" diff --git a/Saku Overclock/obj/project.nuget.cache b/Saku Overclock/obj/project.nuget.cache index f5fbc73..fa40514 100644 --- a/Saku Overclock/obj/project.nuget.cache +++ b/Saku Overclock/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "H/EqEzgG30GIuY2VFJqASznhnYnvsFGcDpNoPyASfXAiGZRqDgMtExnVTZzOuBP2T3w24FWc6L1ehrF0i0dS0w==", + "dgSpecHash": "M2slEqbnfAQcrA1q8fqq6FNJUtq4PJ3EYuHennD+2YhmV3zzNCou2F62dbSjP5FdP0jrN79hMTpJ04f9hfb7Vg==", "success": true, "projectFilePath": "C:\\Users\\Sakura\\source\\repos\\Saku Overclock\\Saku Overclock\\Saku Overclock.csproj", "expectedPackageFiles": [ @@ -41,8 +41,10 @@ "C:\\Users\\Sakura\\.nuget\\packages\\microsoft.xaml.behaviors.winui.managed\\2.0.9\\microsoft.xaml.behaviors.winui.managed.2.0.9.nupkg.sha512", "C:\\Users\\Sakura\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", "C:\\Users\\Sakura\\.nuget\\packages\\openhardwaremonitor\\0.9.6\\openhardwaremonitor.0.9.6.nupkg.sha512", + "C:\\Users\\Sakura\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512", "C:\\Users\\Sakura\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", "C:\\Users\\Sakura\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\Sakura\\.nuget\\packages\\system.management\\8.0.0\\system.management.8.0.0.nupkg.sha512", "C:\\Users\\Sakura\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", "C:\\Users\\Sakura\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", "C:\\Users\\Sakura\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.cs b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.cs index 74e0530..e7e096e 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.cs +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CAC048F1159F8C6BDD73ADD435AC346AE0FABC67C02EDD7D0CE3349AA27F9F53" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "014DC2D4863530EA5D1D40644F290C3214D0AFEFC8A213F3894B2E271694BAF8" //------------------------------------------------------------------------------ // // This code was generated by a tool. diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.i.cs b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.i.cs index 8f066a4..e869abe 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.i.cs +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CAC048F1159F8C6BDD73ADD435AC346AE0FABC67C02EDD7D0CE3349AA27F9F53" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "014DC2D4863530EA5D1D40644F290C3214D0AFEFC8A213F3894B2E271694BAF8" //------------------------------------------------------------------------------ // // This code was generated by a tool. diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xaml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xaml index 263bd0c..dea5d42 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xaml +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xaml @@ -6,7 +6,6 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:windowex="using:WinUIEx" - xmlns:tb="using:H.NotifyIcon" MinWidth="967" MinHeight="500" PersistenceId="MainWindow" diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf index 5b04ba0..ed07e9a 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MainWindow.xbf differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Manifests/WindowsAppSDK.manifest b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Manifests/WindowsAppSDK.manifest new file mode 100644 index 0000000..ebafbbf --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Manifests/WindowsAppSDK.manifest @@ -0,0 +1,4368 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Manifests/app.manifest b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Manifests/app.manifest new file mode 100644 index 0000000..64962a8 --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Manifests/app.manifest @@ -0,0 +1,2 @@ + +true/PMPerMonitorV2, PerMonitor \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxBlockMap.xml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxBlockMap.xml new file mode 100644 index 0000000..476d8f3 --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxBlockMap.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxManifest.xml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxManifest.xml new file mode 100644 index 0000000..592fb51 --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxManifest.xml @@ -0,0 +1,999 @@ + + + + + true + WindowsAppRuntime.1.4 + Microsoft Corporation + Microsoft Windows App Runtime 1.4 (4000.1010.1349.0 x64 ) + WindowsAppRuntime.png + + + + + + + + + + + Microsoft.Windows.ApplicationModel.Resources.dll + + + + + + + + + Microsoft.WindowsAppRuntime.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PushNotificationsLongRunningTask.ProxyStub.dll + + + + + + + + Microsoft.UI.Xaml.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Microsoft.UI.Xaml.Controls.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Microsoft.UI.Xaml.Phone.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WinUIEdit.dll + + + + + + + Microsoft.Web.WebView2.Core.dll + + + + + + + + + CoreMessagingXP.dll + + + + + + + + dcompi.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Microsoft.Graphics.Display.dll + + + + + + Microsoft.UI.dll + + + + + + Microsoft.UI.Input.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Microsoft.UI.Windowing.dll + + + + + + + + + + + Microsoft.UI.Windowing.Core.dll + + + + + + wuceffectsi.dll + + + + + + + + Microsoft.Windows.Widgets.dll + + + + + + + + Microsoft.Windows.Widgets.dll + + + + + + + + WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll + + + + + + \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxMetadata/CodeIntegrity.cat b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxMetadata/CodeIntegrity.cat new file mode 100644 index 0000000..e0e1f26 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxMetadata/CodeIntegrity.cat differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxSignature.p7x b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxSignature.p7x new file mode 100644 index 0000000..4d8960c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/AppxSignature.p7x differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/CoreMessagingXP.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/CoreMessagingXP.dll new file mode 100644 index 0000000..423e30f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/CoreMessagingXP.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DWriteCore.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DWriteCore.dll new file mode 100644 index 0000000..ccd381e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DWriteCore.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DeploymentAgent.exe b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DeploymentAgent.exe new file mode 100644 index 0000000..501144c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DeploymentAgent.exe differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DwmSceneI.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DwmSceneI.dll new file mode 100644 index 0000000..1b1500e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DwmSceneI.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DynamicDependency-Override.json b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DynamicDependency-Override.json new file mode 100644 index 0000000..3ceaf2b --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/DynamicDependency-Override.json @@ -0,0 +1,14 @@ +{ + "LIBID": "1BF712E5-41ED-46a5-8402-2D40725F691E", + "DataStore": { + "CLSID": { + "UUID": "D1AD16C7-EC59-4765-BF95-9A243EB00507" + } + }, + "LifetimeManager": { + "CLSID": { + "UUID": "b58cb8d0-2dba-44bc-9399-18924d13682e", + "GUID": "0xb58cb8d0, 0x2dba, 0x44bc, { 0x93, 0x99, 0x18, 0x92, 0x4d, 0x13, 0x68, 0x2e }" + } + } +} diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/EventLog-Instrumentation.man b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/EventLog-Instrumentation.man new file mode 100644 index 0000000..2b0809d --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/EventLog-Instrumentation.man @@ -0,0 +1,569 @@ + + + + + + + + + + + + + 5242880 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MRM.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MRM.dll new file mode 100644 index 0000000..3045d63 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MRM.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/Main.msix b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/Main.msix new file mode 100644 index 0000000..f887397 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/Main.msix differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/Singleton.msix b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/Singleton.msix new file mode 100644 index 0000000..36e2b7f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/Singleton.msix differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/main_license.xml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/main_license.xml new file mode 100644 index 0000000..516b17e --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/main_license.xml @@ -0,0 +1 @@ +9NGZV9X04M5Zmicrosoftcorporationii.winappruntime.main.1.4_8wekyb3d8bbwebd96e9a5-db72-46f8-8b50-2e2c9fb70d562c3f1d47-426d-c7d7-face-ef1add208818False2023-07-13T17:32:06.8328208Z2023-07-13T17:32:06.8280968Z2023-07-13T17:32:06.8280965ZFAAAAOAAAADJAAAACgAAAAMAAQAXNbBkAgDLAAAAEAAAAG+op21+nTg3au0in7NPugbOAAAAeAAAAG0AaQBjAHIAbwBzAG8AZgB0AGMAbwByAHAAbwByAGEAdABpAG8AbgBpAGkALgB3AGkAbgBhAHAAcAByAHUAbgB0AGkAbQBlAC4AbQBhAGkAbgAuADEALgA0AF8AOAB3AGUAawB5AGIAMwBkADgAYgBiAHcAZQAAAM0AAAAiAAAAAQCOXXrF2SPXz8qWfJLsrxMpKOHAXqF2C7p4I0VyhRFhZiAAAAAEAAAAFzWwZMwAAABEAAAAAQACADEohI4Du/WGyQD1IrJAVsOaTLqHs5jC87bXiuO7v+6RB73ZH5n/h0ddFoqbO3XyAXcZyxcy4FT62cDnh09wQrs=IpYxsCWBs/SGTQfV50Ya9fW5O1LbKZnJ7nb6NVQztCA=OlX8Lx+R+9BOhtncPHEflrE9B6q9uecdIWYCCvKJ+lNBieLx5ZchNEOAu1w3vC0Jz1CuJl+dWcK6v/s2Pgb7k4hCsKniXDoS78AT2u2yG1zq8gDZ44HXwYmriQj4MNXURfMdwttGdG744lfchrlWvwR3so1IJ3XVSLG5EFNDM8MJBGgqsXteVR6uTdnnGNXYNLLCx/NuwYkgd3nTBAVdSBU81DpBhXX1mMXFZk0PRfB+oBn4Ao/Rdsh0CdUKV48z7zy5hLl5jYsVaa7ZI14kARFVhfw/QoguzTZnKNNRX4nZuSBB/e4n3+6vY8Iqw4yZhsbOmT/df8SRltKQ+lsPOA==oVSJXItDsaAIfwyR9bhh/ZSppCAO+in9POLWdC2/TQodgeHZzbdBvxJvKhpbrq6ZP0FsSElLwRoLAmv7zIuVw3Vb7tfQt5bjCDHRAG9fesNlYKV3ybyNrHyzglfZPRB5UJZw32yi03zQa+LLa05fjs6joEmlHc5BrGQrGrbNMBahz4cmuxKC4/dhEb7JZFUkc0MRhs/M3Ve511HQfKuG+92g1OffJdRsAPzWRdskPoN35knnqno7F85OBmGV/LNBgdtDWUH6di1eUCQFeKGfMp+Q/LFUX9jawTTEPn72tYbpYASug05Skcg6KTHlcLGzevxGw7BYsOsqfDka5n0YGw==AAEAAQ== \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/singleton_license.xml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/singleton_license.xml new file mode 100644 index 0000000..1c2e22e --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/MSIX/singleton_license.xml @@ -0,0 +1 @@ +9P5Z076K079Hmicrosoftcorporationii.winappruntime.singleton_8wekyb3d8bbweef20fa1e-da46-4cf6-9888-36e2d744e1832c3f1d47-426d-c7d7-face-ef1add208818False2022-05-11T19:13:22.4712003Z2022-05-11T19:13:22.463368Z2022-05-11T19:13:22.4633659ZFAAAAOIAAADJAAAACgAAAAMAAQDSCnxiAgDLAAAAEAAAAL8pie5OHi+jfCcGQRUbrpLOAAAAegAAAG0AaQBjAHIAbwBzAG8AZgB0AGMAbwByAHAAbwByAGEAdABpAG8AbgBpAGkALgB3AGkAbgBhAHAAcAByAHUAbgB0AGkAbQBlAC4AcwBpAG4AZwBsAGUAdABvAG4AXwA4AHcAZQBrAHkAYgAzAGQAOABiAGIAdwBlAAAAzQAAACIAAAABAJE7TXRfckSOueW06XKFynL0hpgGib2j4wdl/d0ZCl13IAAAAAQAAADSCnxizAAAAEQAAAABAAIA3oQImG19nc67urxNyHMkp2bY1dh0JFUuHo8F4sHGJkz4mKmCFbiRm2qIdgEYcpKCI8G2NHHJCgDbQ6k3c24bTw==matZdBX/ujzzubdH+aFKM4bAA7uYSvsg1vLVhBuBu8Q=R/YTWzou/qWoRlslDC6Dz48gmpSpLwDjXMdiQFecUHZiKs0lwUWFBhc2oebaH1L51xJ37zar+qUoyPAFlBJrRGRIfiENy/gOU7n+NwW4ZohFtuMNX9jmmVXOtMf1hwIuR9q7ZqNPNyb5IGXP6MzaCRQEBlJP2hO/O0XMNTlqsa1m40GXe1OXPkFavsLsOdT8HCoX29+QucnSb1JrpQMQwVCSvsAIp5MHzW3uc34gx3rBEc9TpQW2GSeiaSgmia8cVJLrPlk29nv7/5iejFhD3ObtEnrE81RH/01bsiaZuiC/m540M+8eZI0DsgnKs6G+9sBS2RuiExsodWpr+8iLHA==oVSJXItDsaAIfwyR9bhh/ZSppCAO+in9POLWdC2/TQodgeHZzbdBvxJvKhpbrq6ZP0FsSElLwRoLAmv7zIuVw3Vb7tfQt5bjCDHRAG9fesNlYKV3ybyNrHyzglfZPRB5UJZw32yi03zQa+LLa05fjs6joEmlHc5BrGQrGrbNMBahz4cmuxKC4/dhEb7JZFUkc0MRhs/M3Ve511HQfKuG+92g1OffJdRsAPzWRdskPoN35knnqno7F85OBmGV/LNBgdtDWUH6di1eUCQFeKGfMp+Q/LFUX9jawTTEPn72tYbpYASug05Skcg6KTHlcLGzevxGw7BYsOsqfDka5n0YGw==AAEAAQ== \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.DirectManipulation.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.DirectManipulation.dll new file mode 100644 index 0000000..946be1e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.DirectManipulation.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Foundation.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Foundation.winmd new file mode 100644 index 0000000..73b8c39 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Foundation.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Graphics.Display.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Graphics.Display.dll new file mode 100644 index 0000000..88675c3 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Graphics.Display.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Graphics.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Graphics.winmd new file mode 100644 index 0000000..c9f3b3a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Graphics.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.InputStateManager.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.InputStateManager.dll new file mode 100644 index 0000000..b53b2b5 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.InputStateManager.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Internal.FrameworkUdk.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Internal.FrameworkUdk.dll new file mode 100644 index 0000000..603e0e8 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Internal.FrameworkUdk.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Composition.OSSupport.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Composition.OSSupport.dll new file mode 100644 index 0000000..08adf07 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Composition.OSSupport.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Input.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Input.dll new file mode 100644 index 0000000..319a7d2 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Input.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Text.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Text.winmd new file mode 100644 index 0000000..ad053cd Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Text.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Windowing.Core.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Windowing.Core.dll new file mode 100644 index 0000000..c37b91b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Windowing.Core.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Windowing.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Windowing.dll new file mode 100644 index 0000000..0ab129b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Windowing.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Controls.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Controls.dll new file mode 100644 index 0000000..ee61b7f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Controls.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Controls.pri b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Controls.pri new file mode 100644 index 0000000..ac27433 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Controls.pri differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Internal.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Internal.dll new file mode 100644 index 0000000..1f22a56 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Internal.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Phone.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Phone.dll new file mode 100644 index 0000000..eee4e7f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.Phone.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.winmd new file mode 100644 index 0000000..c7847ea Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png new file mode 100644 index 0000000..41de173 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.dll new file mode 100644 index 0000000..e869af6 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.winmd new file mode 100644 index 0000000..384ff1d Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.UI.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Web.WebView2.Core.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Web.WebView2.Core.dll new file mode 100644 index 0000000..269a0a8 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Web.WebView2.Core.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Web.WebView2.Core.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Web.WebView2.Core.winmd new file mode 100644 index 0000000..cf9f158 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Web.WebView2.Core.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppLifecycle.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppLifecycle.winmd new file mode 100644 index 0000000..400f6a7 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppLifecycle.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppNotifications.Builder.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppNotifications.Builder.winmd new file mode 100644 index 0000000..7789760 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppNotifications.Builder.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppNotifications.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppNotifications.winmd new file mode 100644 index 0000000..c1a166d Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.AppNotifications.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.DynamicDependency.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.DynamicDependency.winmd new file mode 100644 index 0000000..dbc8f76 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.DynamicDependency.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.Resources.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.Resources.dll new file mode 100644 index 0000000..3992866 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.Resources.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.Resources.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.Resources.winmd new file mode 100644 index 0000000..ce4d4ac Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.Resources.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.winmd new file mode 100644 index 0000000..75f39d0 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.PushNotifications.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.PushNotifications.winmd new file mode 100644 index 0000000..0526f4e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.PushNotifications.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Security.AccessControl.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Security.AccessControl.winmd new file mode 100644 index 0000000..fd41dcd Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Security.AccessControl.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.System.Power.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.System.Power.winmd new file mode 100644 index 0000000..df4c67a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.System.Power.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.System.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.System.winmd new file mode 100644 index 0000000..f179957 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.System.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Widgets.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Widgets.dll new file mode 100644 index 0000000..8450aed Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Widgets.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Widgets.winmd b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Widgets.winmd new file mode 100644 index 0000000..bf96bb4 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.Windows.Widgets.winmd differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Bootstrap.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Bootstrap.dll new file mode 100644 index 0000000..b400f17 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Bootstrap.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Insights.Resource.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Insights.Resource.dll new file mode 100644 index 0000000..c1a9a87 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Insights.Resource.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Release%211.4.0 b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Release%211.4.0 new file mode 100644 index 0000000..70cfed4 --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.Release%211.4.0 @@ -0,0 +1 @@ +Microsoft.WindowsAppRuntime.Release!1.4.0 diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.dll new file mode 100644 index 0000000..d76175a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.WindowsAppRuntime.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.dll new file mode 100644 index 0000000..25ea98e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.resources.19h1.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.resources.19h1.dll new file mode 100644 index 0000000..9c99f7f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.resources.19h1.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.resources.common.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.resources.common.dll new file mode 100644 index 0000000..984df39 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/Microsoft.ui.xaml.resources.common.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/PushNotifications-Override.json b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/PushNotifications-Override.json new file mode 100644 index 0000000..6ffe1bc --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/PushNotifications-Override.json @@ -0,0 +1,25 @@ +{ + "LIBID": "CE96C745-3017-460E-895B-4FD98E1194F2", + "ComServer": { + "CLSID": { + "UUID": "E739C755-0D09-48DF-A468-A5DF0B5422DC" + } + }, + "ComInterfaces": { + "LRP": { + "CLSID": { + "UUID": "60FC21B2-B396-4D49-94F0-7555869FB93C" + } + }, + "ForegroundSink": { + "CLSID": { + "UUID": "25604D55-9B17-426F-9D67-2B11B3A65598" + } + }, + "ForegroundSink2": { + "CLSID": { + "UUID": "559B4205-F810-4947-B02B-3EA9A311C6AD" + } + } + } +} diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/PushNotificationsLongRunningTask.ProxyStub.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/PushNotificationsLongRunningTask.ProxyStub.dll new file mode 100644 index 0000000..00853f4 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/PushNotificationsLongRunningTask.ProxyStub.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/RestartAgent.exe b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/RestartAgent.exe new file mode 100644 index 0000000..61962e0 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/RestartAgent.exe differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WinUIEdit.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WinUIEdit.dll new file mode 100644 index 0000000..824fac3 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WinUIEdit.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppRuntime.png b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppRuntime.png new file mode 100644 index 0000000..217b6a3 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppRuntime.png differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll new file mode 100644 index 0000000..cf8656c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.pdb b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.pdb new file mode 100644 index 0000000..f9130d7 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.pdb differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll new file mode 100644 index 0000000..160b910 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/[Content_Types].xml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/[Content_Types].xml new file mode 100644 index 0000000..9c89e15 --- /dev/null +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/[Content_Types].xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c36cb1c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/af-ZA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/af-ZA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/af-ZA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1aa7698 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/af-ZA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/am-ET/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/am-ET/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..a4c01c2 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/am-ET/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/am-ET/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/am-ET/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1fd7ec8 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/am-ET/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c74db00 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ar-SA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ar-SA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ar-SA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..f7fb244 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ar-SA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/as-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/as-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f51c14a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/as-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/as-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/as-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7174639 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/as-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0aff439 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/az-Latn-AZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/az-Latn-AZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/az-Latn-AZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0220cc3 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/az-Latn-AZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e94828c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bg-BG/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bg-BG/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bg-BG/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..07f9f5f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bg-BG/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e3c7431 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bn-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bn-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bn-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2f7776 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bn-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9321d86 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bs-Latn-BA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bs-Latn-BA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bs-Latn-BA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c3b75cf Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/bs-Latn-BA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4900033 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12998d4 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1d14422 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-Es-VALENCIA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b84b784 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ca-Es-VALENCIA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..fb08110 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cs-CZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cs-CZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cs-CZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5dd80ed Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cs-CZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..bc4175c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cy-GB/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cy-GB/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cy-GB/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d9b9527 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/cy-GB/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/da-DK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/da-DK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5165bec Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/da-DK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/da-DK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/da-DK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b029c9b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/da-DK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/dcompi.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/dcompi.dll new file mode 100644 index 0000000..7d1c00b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/dcompi.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/de-DE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/de-DE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6f979d9 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/de-DE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/de-DE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/de-DE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0e18054 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/de-DE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/dwmcorei.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/dwmcorei.dll new file mode 100644 index 0000000..99e434a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/dwmcorei.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/el-GR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/el-GR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..fda2eef Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/el-GR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/el-GR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/el-GR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5fd5e54 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/el-GR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-GB/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-GB/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ea87dd3 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-GB/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-GB/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-GB/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d8211c1 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-GB/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-us/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-us/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..952fa1b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-us/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-us/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-us/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..75d67d6 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/en-us/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..238a2ee Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..10cea5d Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-MX/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-MX/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b61f5b6 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-MX/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-MX/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-MX/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0a500af Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/es-MX/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/et-EE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/et-EE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ba8cec0 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/et-EE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/et-EE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/et-EE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..78c9ad0 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/et-EE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4e441f9 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/eu-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/eu-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/eu-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..be26283 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/eu-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..005c26f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fa-IR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fa-IR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fa-IR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12f6407 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fa-IR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..e03bedf Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fi-FI/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fi-FI/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fi-FI/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..75d55a9 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fi-FI/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f2a62ff Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fil-PH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fil-PH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fil-PH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..02e29e3 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fil-PH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b863e3f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-CA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-CA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-CA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..85733cb Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-CA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..36366fd Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-FR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-FR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-FR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c7115ba Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/fr-FR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..76bab2c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ga-IE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ga-IE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ga-IE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..375febe Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ga-IE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5b076f8 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gd-gb/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gd-gb/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gd-gb/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3957d48 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gd-gb/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..86248ff Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gl-ES/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gl-ES/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gl-ES/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..af5bfed Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gl-ES/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0d0ca3e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gu-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gu-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gu-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7a0d01a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/gu-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/he-IL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/he-IL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..5dd22cb Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/he-IL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/he-IL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/he-IL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..687c815 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/he-IL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2c22b99 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hi-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hi-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hi-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..10a5e8b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hi-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..77b00c2 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hr-HR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hr-HR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hr-HR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..98a2157 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hr-HR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f76cd32 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hu-HU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hu-HU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hu-HU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..abcc612 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hu-HU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..45913f5 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hy-AM/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hy-AM/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hy-AM/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e65e0be Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/hy-AM/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/id-ID/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/id-ID/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..cef6f7b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/id-ID/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/id-ID/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/id-ID/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..fac472e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/id-ID/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/is-IS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/is-IS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4a351b5 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/is-IS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/is-IS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/is-IS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1b44691 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/is-IS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/it-IT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/it-IT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..571ed63 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/it-IT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/it-IT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/it-IT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c81ce77 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/it-IT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9ad9bdf Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ja-JP/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ja-JP/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ja-JP/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..ac28260 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ja-JP/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..342ea6b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ka-GE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ka-GE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ka-GE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e4d33fd Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ka-GE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4f5c08e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kk-KZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kk-KZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kk-KZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..cabb426 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kk-KZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/km-KH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/km-KH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..f3715d1 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/km-KH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/km-KH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/km-KH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0db589f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/km-KH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..66c3196 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kn-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kn-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kn-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..26f686c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kn-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..a1aa107 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ko-KR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ko-KR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ko-KR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..645eaf5 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ko-KR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6150b9b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kok-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kok-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kok-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..1194128 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/kok-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..325fd28 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lb-LU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lb-LU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lb-LU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..802a5cc Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lb-LU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..98fb1bd Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lo-LA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lo-LA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lo-LA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..8edda26 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lo-LA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b2959a4 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lt-LT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lt-LT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lt-LT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..21a1ef7 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lt-LT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..47e8e53 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lv-LV/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lv-LV/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lv-LV/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c8d6ff2 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/lv-LV/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/marshal.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/marshal.dll new file mode 100644 index 0000000..56c4218 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/marshal.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8c38afe Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mi-NZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mi-NZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mi-NZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c257936 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mi-NZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..3c02807 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mk-MK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mk-MK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mk-MK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5c038c1 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mk-MK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..774cfae Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ml-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ml-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ml-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..23eec00 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ml-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..73a5491 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mr-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mr-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mr-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d08f0a2 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mr-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8a965c8 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ms-MY/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ms-MY/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ms-MY/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..f2b796c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ms-MY/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1c25258 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mt-MT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mt-MT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mt-MT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2b7d8c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/mt-MT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b7a473b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nb-NO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nb-NO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nb-NO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c27b23a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nb-NO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..bcea314 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ne-NP/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ne-NP/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ne-NP/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..ca23da9 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ne-NP/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..ed5a2fe Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nl-NL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nl-NL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nl-NL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..8b23a35 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nl-NL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b6c8060 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nn-NO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nn-NO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nn-NO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..bbc6002 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/nn-NO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/or-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/or-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..850df13 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/or-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/or-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/or-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..31ba8d8 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/or-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..84a04ca Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pa-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pa-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pa-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b142c6f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pa-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1732ffc Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pl-PL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pl-PL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pl-PL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3b12962 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pl-PL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b07b614 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-BR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-BR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-BR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..3497e37 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-BR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2181824 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-PT/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-PT/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-PT/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..b385a66 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/pt-PT/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..7264e06 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/quz-PE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/quz-PE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/quz-PE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..12ca029 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/quz-PE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..564ff0b Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ro-RO/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ro-RO/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ro-RO/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7fdf322 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ro-RO/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4106589 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ru-RU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ru-RU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ru-RU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..a2b3ee4 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ru-RU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..959f753 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sk-SK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sk-SK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sk-SK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e553a8a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sk-SK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4d5d903 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sl-SI/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sl-SI/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sl-SI/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..faf5468 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sl-SI/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..228047e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sq-AL/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sq-AL/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sq-AL/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..d385d4f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sq-AL/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..6368178 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-BA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..681c55f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-BA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..0eb098c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-RS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..af0c90c Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Cyrl-RS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..3bdb890 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Latn-RS/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Latn-RS/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Latn-RS/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..44c8bf3 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sr-Latn-RS/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..9ded8a7 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sv-SE/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sv-SE/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sv-SE/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e363b67 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/sv-SE/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..270d260 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ta-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ta-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ta-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..c2f73c6 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ta-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/te-IN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/te-IN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1afe85f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/te-IN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/te-IN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/te-IN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..29c5231 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/te-IN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/th-TH/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/th-TH/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..4ab329f Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/th-TH/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/th-TH/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/th-TH/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..5971054 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/th-TH/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..99d08d9 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tr-TR/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tr-TR/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tr-TR/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..0ff371e Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tr-TR/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..12cd47d Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tt-RU/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tt-RU/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tt-RU/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..a5c9382 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/tt-RU/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..2cd4495 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ug-CN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ug-CN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ug-CN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..2c47322 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ug-CN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..8fa4d78 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uk-UA/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uk-UA/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uk-UA/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..203cb87 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uk-UA/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..774d3c0 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ur-PK/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ur-PK/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ur-PK/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..e598c07 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/ur-PK/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..b6cdd73 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uz-Latn-UZ/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..9ee4644 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/uz-Latn-UZ/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..c7f0dbb Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/vi-VN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/vi-VN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/vi-VN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..9fbbfbe Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/vi-VN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/wuceffectsi.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/wuceffectsi.dll new file mode 100644 index 0000000..4b08efa Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/wuceffectsi.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..1d09f3a Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-CN/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-CN/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-CN/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7f2c7db Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-CN/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui new file mode 100644 index 0000000..610f790 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-TW/Microsoft.UI.Xaml.Phone.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-TW/Microsoft.ui.xaml.dll.mui b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-TW/Microsoft.ui.xaml.dll.mui new file mode 100644 index 0000000..7cd7809 Binary files /dev/null and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/MsixContent/zh-TW/Microsoft.ui.xaml.dll.mui differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/PublishOutputs.ea25c7f39d.txt b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/PublishOutputs.ea25c7f39d.txt index 70ad9bf..853966c 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/PublishOutputs.ea25c7f39d.txt +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/PublishOutputs.ea25c7f39d.txt @@ -735,6 +735,7 @@ C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-wind C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\Microsoft.Xaml.Interactions.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\Microsoft.Xaml.Interactivity.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\Newtonsoft.Json.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\OpenHardwareMonitorLib.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\Microsoft.Win32.TaskScheduler.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\WinUIEx.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\de\Microsoft.Win32.TaskScheduler.resources.dll @@ -747,5 +748,7 @@ C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-wind C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\zh-Hant\Microsoft.Win32.TaskScheduler.resources.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\Microsoft.WindowsAppRuntime.Bootstrap.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\Saku Overclock.Core.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\System.Management.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\ZenStates-Core.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\Saku Overclock.Core.pdb C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\Debug\net7.0-windows10.0.19041.0\win10-x64\publish\resources.pri diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfo.cs b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfo.cs index b7dbd2d..ba489c3 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfo.cs +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfo.cs @@ -14,7 +14,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("Saku Overclock")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+bfd05017962a936d03e0db04a7190a8a7188239e")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyProductAttribute("Saku Overclock")] [assembly: System.Reflection.AssemblyTitleAttribute("Saku Overclock")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfoInputs.cache b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfoInputs.cache index 823418f..5987e17 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfoInputs.cache +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.AssemblyInfoInputs.cache @@ -1 +1 @@ -6527040a015a7a442e8e2453a0baea5401f4c917f60ba580b434e72606b3ec38 +4bebefde3f7e38cf103a218084a610f1f6b0853915fc532e3a3c54d77bc8e7b6 diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.assets.cache b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.assets.cache index 7480608..92c33d7 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.assets.cache and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.assets.cache differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.AssemblyReference.cache b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.AssemblyReference.cache index f72611d..47c03d7 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.AssemblyReference.cache and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.AssemblyReference.cache differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.CoreCompileInputs.cache b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.CoreCompileInputs.cache index 68ca6e1..bcdce90 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.CoreCompileInputs.cache +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -f0bd94f1d4d5cba398156ead43ffbe62593601c55bb5e38275a4b3bc04197e67 +252621a390438d2ab91e56fcf2cc2d5ca80073c7e58ee80b0d7bbed9b5a29e34 diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.FileListAbsolute.txt b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.FileListAbsolute.txt index eabcd7b..68c56b2 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.FileListAbsolute.txt +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.csproj.FileListAbsolute.txt @@ -837,3 +837,212 @@ C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0- C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\OpenHardwareMonitorLib.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ZenStates-Core.dll C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\System.Management.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ryzenps.exe +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\CoreMessagingXP.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\dcompi.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\dwmcorei.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\DwmSceneI.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\DWriteCore.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\marshal.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.DirectManipulation.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.Graphics.Display.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.InputStateManager.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.Internal.FrameworkUdk.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Composition.OSSupport.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Input.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Windowing.Core.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Windowing.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Xaml.Controls.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.ui.xaml.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Xaml.Internal.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Xaml.Phone.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.ui.xaml.resources.19h1.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.ui.xaml.resources.common.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.Web.WebView2.Core.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.Windows.ApplicationModel.Resources.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.Windows.Widgets.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.WindowsAppRuntime.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.WindowsAppRuntime.Insights.Resource.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\MRM.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\PushNotificationsLongRunningTask.ProxyStub.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\WindowsAppSdk.AppxDeploymentExtensions.Desktop-EventLog-Instrumentation.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\WindowsAppSdk.AppxDeploymentExtensions.Desktop.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\WinUIEdit.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\wuceffectsi.dll +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\RestartAgent.exe +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\af-ZA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\af-ZA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\am-ET\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\am-ET\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ar-SA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ar-SA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\as-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\as-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\az-Latn-AZ\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\az-Latn-AZ\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\bg-BG\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\bg-BG\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\bn-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\bn-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\bs-Latn-BA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\bs-Latn-BA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ca-Es-VALENCIA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ca-Es-VALENCIA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ca-ES\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ca-ES\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\cs-CZ\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\cs-CZ\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\cy-GB\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\cy-GB\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\da-DK\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\da-DK\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\de-DE\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\de-DE\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\el-GR\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\el-GR\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\en-GB\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\en-GB\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\en-us\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\en-us\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\es-ES\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\es-ES\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\es-MX\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\es-MX\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\et-EE\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\et-EE\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\eu-ES\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\eu-ES\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fa-IR\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fa-IR\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fi-FI\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fi-FI\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fil-PH\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fil-PH\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fr-CA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fr-CA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fr-FR\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\fr-FR\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ga-IE\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ga-IE\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\gd-gb\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\gd-gb\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\gl-ES\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\gl-ES\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\gu-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\gu-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\he-IL\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\he-IL\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hi-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hi-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hr-HR\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hr-HR\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hu-HU\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hu-HU\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hy-AM\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\hy-AM\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\id-ID\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\id-ID\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\is-IS\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\is-IS\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\it-IT\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\it-IT\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ja-JP\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ja-JP\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ka-GE\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ka-GE\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\kk-KZ\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\kk-KZ\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\km-KH\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\km-KH\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\kn-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\kn-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ko-KR\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ko-KR\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\kok-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\kok-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lb-LU\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lb-LU\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lo-LA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lo-LA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lt-LT\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lt-LT\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lv-LV\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\lv-LV\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mi-NZ\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mi-NZ\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mk-MK\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mk-MK\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ml-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ml-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mr-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mr-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ms-MY\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ms-MY\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mt-MT\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\mt-MT\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\nb-NO\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\nb-NO\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ne-NP\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ne-NP\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\nl-NL\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\nl-NL\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\nn-NO\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\nn-NO\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\or-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\or-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pa-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pa-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pl-PL\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pl-PL\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pt-BR\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pt-BR\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pt-PT\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\pt-PT\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\quz-PE\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\quz-PE\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ro-RO\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ro-RO\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ru-RU\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ru-RU\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sk-SK\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sk-SK\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sl-SI\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sl-SI\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sq-AL\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sq-AL\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sr-Cyrl-BA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sr-Cyrl-BA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sr-Cyrl-RS\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sr-Cyrl-RS\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sr-Latn-RS\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sr-Latn-RS\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sv-SE\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\sv-SE\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ta-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ta-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\te-IN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\te-IN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\th-TH\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\th-TH\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\tr-TR\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\tr-TR\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\tt-RU\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\tt-RU\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ug-CN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ug-CN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\uk-UA\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\uk-UA\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ur-PK\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\ur-PK\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\uz-Latn-UZ\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\uz-Latn-UZ\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\vi-VN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\vi-VN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\zh-CN\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\zh-CN\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\zh-TW\Microsoft.ui.xaml.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\zh-TW\Microsoft.UI.Xaml.Phone.dll.mui +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Xaml\Assets\NoiseAsset_256x256_PNG.png +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\WindowsAppRuntime.png +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\bin\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\Microsoft.UI.Xaml.Controls.pri diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll index 4245e9d..087001d 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb index 46cf31b..4729950 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Saku Overclock.pdb differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Symbols/Saku Overclock.pdb b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Symbols/Saku Overclock.pdb index 1cda7c2..4a7d861 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Symbols/Saku Overclock.pdb and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Symbols/Saku Overclock.pdb differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.cs b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.cs index 3989b82..e3e4c63 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.cs +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\SettingsPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "92F9BF7AB5D6D7F23FB58FEEBB1BF983F2F12629E2E9932191504C54767DF216" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\SettingsPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "79C814B5B7C2ACFC8994276C687629BDF949185431CD5353B6E09B5EACAD75FD" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -63,7 +63,7 @@ private class SettingsPage_obj1_Bindings : private global::Microsoft.UI.Xaml.Controls.TextBlock obj7; private global::Microsoft.UI.Xaml.Controls.RadioButton obj8; private global::Microsoft.UI.Xaml.Controls.RadioButton obj9; - private global::Microsoft.UI.Xaml.Controls.RadioButton obj10; + private global::Microsoft.UI.Xaml.Controls.RadioButton obj11; // Static fields for each binding's enabled/disabled state private static bool isobj7TextDisabled = false; @@ -71,8 +71,8 @@ private class SettingsPage_obj1_Bindings : private static bool isobj8IsCheckedDisabled = false; private static bool isobj9CommandDisabled = false; private static bool isobj9IsCheckedDisabled = false; - private static bool isobj10CommandDisabled = false; - private static bool isobj10IsCheckedDisabled = false; + private static bool isobj11CommandDisabled = false; + private static bool isobj11IsCheckedDisabled = false; private SettingsPage_obj1_BindingsTracking bindingsTracking; @@ -83,33 +83,33 @@ public SettingsPage_obj1_Bindings() public void Disable(int lineNumber, int columnNumber) { - if (lineNumber == 68 && columnNumber == 28) + if (lineNumber == 83 && columnNumber == 28) { isobj7TextDisabled = true; } - else if (lineNumber == 34 && columnNumber == 25) + else if (lineNumber == 35 && columnNumber == 25) { isobj8CommandDisabled = true; } - else if (lineNumber == 35 && columnNumber == 25) + else if (lineNumber == 36 && columnNumber == 25) { isobj8IsCheckedDisabled = true; } - else if (lineNumber == 44 && columnNumber == 25) + else if (lineNumber == 47 && columnNumber == 25) { isobj9CommandDisabled = true; } - else if (lineNumber == 45 && columnNumber == 25) + else if (lineNumber == 48 && columnNumber == 25) { isobj9IsCheckedDisabled = true; } - else if (lineNumber == 54 && columnNumber == 25) + else if (lineNumber == 68 && columnNumber == 25) { - isobj10CommandDisabled = true; + isobj11CommandDisabled = true; } - else if (lineNumber == 55 && columnNumber == 25) + else if (lineNumber == 69 && columnNumber == 25) { - isobj10IsCheckedDisabled = true; + isobj11IsCheckedDisabled = true; } } @@ -119,17 +119,17 @@ public void Connect(int connectionId, global::System.Object target) { switch(connectionId) { - case 7: // Views\SettingsPage.xaml line 68 + case 7: // Views\SettingsPage.xaml line 83 this.obj7 = global::WinRT.CastExtensions.As(target); break; case 8: // Views\SettingsPage.xaml line 32 this.obj8 = global::WinRT.CastExtensions.As(target); break; - case 9: // Views\SettingsPage.xaml line 42 + case 9: // Views\SettingsPage.xaml line 44 this.obj9 = global::WinRT.CastExtensions.As(target); break; - case 10: // Views\SettingsPage.xaml line 52 - this.obj10 = global::WinRT.CastExtensions.As(target); + case 11: // Views\SettingsPage.xaml line 65 + this.obj11 = global::WinRT.CastExtensions.As(target); break; default: break; @@ -252,7 +252,7 @@ private void Update_ViewModel_VersionDescription(global::System.String obj, int { if ((phase & ((1 << 0) | NOT_PHASED | DATA_CHANGED)) != 0) { - // Views\SettingsPage.xaml line 68 + // Views\SettingsPage.xaml line 83 if (!isobj7TextDisabled) { XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_TextBlock_Text(this.obj7, obj, null); @@ -268,15 +268,15 @@ private void Update_ViewModel_SwitchThemeCommand(global::System.Windows.Input.IC { XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ButtonBase_Command(this.obj8, obj, null); } - // Views\SettingsPage.xaml line 42 + // Views\SettingsPage.xaml line 44 if (!isobj9CommandDisabled) { XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ButtonBase_Command(this.obj9, obj, null); } - // Views\SettingsPage.xaml line 52 - if (!isobj10CommandDisabled) + // Views\SettingsPage.xaml line 65 + if (!isobj11CommandDisabled) { - XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ButtonBase_Command(this.obj10, obj, null); + XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ButtonBase_Command(this.obj11, obj, null); } } } @@ -289,15 +289,15 @@ private void Update_ViewModel_ElementTheme(global::Microsoft.UI.Xaml.ElementThem { XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ToggleButton_IsChecked(this.obj8, (global::System.Nullable)this.LookupConverter("EnumToBooleanConverter").Convert(obj, typeof(global::System.Nullable), "Light", null), null); } - // Views\SettingsPage.xaml line 42 + // Views\SettingsPage.xaml line 44 if (!isobj9IsCheckedDisabled) { XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ToggleButton_IsChecked(this.obj9, (global::System.Nullable)this.LookupConverter("EnumToBooleanConverter").Convert(obj, typeof(global::System.Nullable), "Dark", null), null); } - // Views\SettingsPage.xaml line 52 - if (!isobj10IsCheckedDisabled) + // Views\SettingsPage.xaml line 65 + if (!isobj11IsCheckedDisabled) { - XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ToggleButton_IsChecked(this.obj10, (global::System.Nullable)this.LookupConverter("EnumToBooleanConverter").Convert(obj, typeof(global::System.Nullable), "Default", null), null); + XamlBindingSetters.Set_Microsoft_UI_Xaml_Controls_Primitives_ToggleButton_IsChecked(this.obj11, (global::System.Nullable)this.LookupConverter("EnumToBooleanConverter").Convert(obj, typeof(global::System.Nullable), "Default", null), null); } } } @@ -436,14 +436,38 @@ public void Connect(int connectionId, object target) ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.CbAutoCheck).Click += this.cbAutoCheck_Click; } break; - case 11: // Views\SettingsPage.xaml line 22 + case 8: // Views\SettingsPage.xaml line 32 + { + this.Light_sel = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.RadioButton)this.Light_sel).Checked += this.Light_sel_Checked; + } + break; + case 9: // Views\SettingsPage.xaml line 44 + { + this.Dark_sel = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.RadioButton)this.Dark_sel).Checked += this.Dark_sel_Checked; + } + break; + case 10: // Views\SettingsPage.xaml line 57 + { + this.Blue_sel = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.RadioButton)this.Blue_sel).Checked += this.Blue_sel_Checked; + } + break; + case 11: // Views\SettingsPage.xaml line 65 + { + this.Default_sel = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.RadioButton)this.Default_sel).Checked += this.Default_sel_Checked; + } + break; + case 12: // Views\SettingsPage.xaml line 22 { this.CbAutoReapply = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.CbAutoReapply).Unchecked += this.cbAutoReapply_Click; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.CbAutoReapply).Click += this.cbAutoReapply_Click; } break; - case 12: // Views\SettingsPage.xaml line 23 + case 13: // Views\SettingsPage.xaml line 23 { this.nudAutoReapply = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.nudAutoReapply).ValueChanged += this.nudAutoReapply_ValueChanged; diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.i.cs b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.i.cs index c8d3293..9df979b 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.i.cs +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\SettingsPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "92F9BF7AB5D6D7F23FB58FEEBB1BF983F2F12629E2E9932191504C54767DF216" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\SettingsPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "79C814B5B7C2ACFC8994276C687629BDF949185431CD5353B6E09B5EACAD75FD" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -27,6 +27,14 @@ partial class SettingsPage : global::Microsoft.UI.Xaml.Controls.Page [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.CheckBox CbAutoCheck; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.RadioButton Light_sel; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.RadioButton Dark_sel; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.RadioButton Blue_sel; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.RadioButton Default_sel; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.CheckBox CbAutoReapply; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox nudAutoReapply; diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xaml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xaml index 24d5984..90796e3 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xaml +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xaml @@ -19,8 +19,8 @@ Запускаться свёрнутым Автоприменять разгон - Автоприменять каждые (с) - + Автоприменять каждые (с) + Автообновления @@ -30,9 +30,11 @@ @@ -40,19 +42,32 @@ Dark + + + + diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf index b2a9a59..9b03310 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/SettingsPage.xbf differ diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.cs" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.cs" index f612287..e5d81de 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.cs" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.cs" @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ГлавнаяPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "87C75E26D72426D10E4C070611A32762229B418DD477EF02F3A5B41D1B3161DD" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ГлавнаяPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9D8B4B17A669C1CD46078D9F9BAD5BA9B8E2CCF145117D08F924C13149712791" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -29,25 +29,25 @@ public void Connect(int connectionId, object target) this.ContentArea = global::WinRT.CastExtensions.As(target); } break; - case 3: // Views\ГлавнаяPage.xaml line 37 + case 3: // Views\ГлавнаяPage.xaml line 36 { global::Microsoft.UI.Xaml.Controls.Button element3 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Button)element3).Click += this.Preset_Click; } break; - case 4: // Views\ГлавнаяPage.xaml line 47 + case 4: // Views\ГлавнаяPage.xaml line 46 { global::Microsoft.UI.Xaml.Controls.Button element4 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Button)element4).Click += this.Param_Click; } break; - case 5: // Views\ГлавнаяPage.xaml line 57 + case 5: // Views\ГлавнаяPage.xaml line 56 { global::Microsoft.UI.Xaml.Controls.Button element5 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Button)element5).Click += this.Info_Click; } break; - case 6: // Views\ГлавнаяPage.xaml line 66 + case 6: // Views\ГлавнаяPage.xaml line 65 { this.Discrd = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Button)this.Discrd).Click += this.Discrd_Click; diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.i.cs" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.i.cs" index a326885..23aa3ce 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.i.cs" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.g.i.cs" @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ГлавнаяPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "87C75E26D72426D10E4C070611A32762229B418DD477EF02F3A5B41D1B3161DD" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ГлавнаяPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9D8B4B17A669C1CD46078D9F9BAD5BA9B8E2CCF145117D08F924C13149712791" //------------------------------------------------------------------------------ // // This code was generated by a tool. diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" index 9f3c93d..0326635 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xaml" @@ -3,7 +3,7 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:ABI.Microsoft.UI.Xaml.Controls" xmlns:emit="using:System.Reflection.Emit" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:ABI.Microsoft.UI.Xaml.Controls" xmlns:emit="using:System.Reflection.Emit" mc:Ignorable="d"> - - - + + diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" index 53a6388..d4a7272 100644 Binary files "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" and "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" differ diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.cs" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.cs" index 138bc83..ed85dfc 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.cs" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.cs" @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ИнформацияPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "51E79ADF9E04119500BCD07471E2CDE74C2D7919B1D879B6B6A408AD1975D203" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ИнформацияPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E78ADFA85F9A3E9E7B7D848727DF32B20D4C30698F665F6FA007B0A871FC6380" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -45,14 +45,85 @@ public void Connect(int connectionId, object target) case 5: // Views\ИнформацияPage.xaml line 15 { this.numberBox = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.numberBox).ValueChanged += this.numberBox_ValueChanged; } break; - case 6: // Views\ИнформацияPage.xaml line 29 + case 6: // Views\ИнформацияPage.xaml line 57 + { + this.sdCPU = global::WinRT.CastExtensions.As(target); + } + break; + case 7: // Views\ИнформацияPage.xaml line 111 + { + this.richTextBox2 = global::WinRT.CastExtensions.As(target); + } + break; + case 8: // Views\ИнформацияPage.xaml line 85 + { + this.tbProcessor = global::WinRT.CastExtensions.As(target); + } + break; + case 9: // Views\ИнформацияPage.xaml line 86 + { + this.tbProducer = global::WinRT.CastExtensions.As(target); + } + break; + case 10: // Views\ИнформацияPage.xaml line 87 + { + this.tbCodename = global::WinRT.CastExtensions.As(target); + } + break; + case 11: // Views\ИнформацияPage.xaml line 88 + { + this.tbCaption = global::WinRT.CastExtensions.As(target); + } + break; + case 12: // Views\ИнформацияPage.xaml line 89 + { + this.tbCores = global::WinRT.CastExtensions.As(target); + } + break; + case 13: // Views\ИнформацияPage.xaml line 90 + { + this.tbThreads = global::WinRT.CastExtensions.As(target); + } + break; + case 14: // Views\ИнформацияPage.xaml line 91 + { + this.tbBaseClock = global::WinRT.CastExtensions.As(target); + } + break; + case 15: // Views\ИнформацияPage.xaml line 92 + { + this.tbL1Cache = global::WinRT.CastExtensions.As(target); + } + break; + case 16: // Views\ИнформацияPage.xaml line 93 + { + this.tbL2Cache = global::WinRT.CastExtensions.As(target); + } + break; + case 17: // Views\ИнформацияPage.xaml line 94 + { + this.tbL3Cache = global::WinRT.CastExtensions.As(target); + } + break; + case 18: // Views\ИнформацияPage.xaml line 95 + { + this.tbInstructions = global::WinRT.CastExtensions.As(target); + } + break; + case 19: // Views\ИнформацияPage.xaml line 74 + { + this.tbCode = global::WinRT.CastExtensions.As(target); + } + break; + case 20: // Views\ИнформацияPage.xaml line 51 { this.DescText = global::WinRT.CastExtensions.As(target); } break; - case 7: // Views\ИнформацияPage.xaml line 24 + case 21: // Views\ИнформацияPage.xaml line 46 { this.richTextBox1 = global::WinRT.CastExtensions.As(target); } diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.i.cs" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.i.cs" index 7e1e06d..78d30e8 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.i.cs" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.g.i.cs" @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ИнформацияPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "51E79ADF9E04119500BCD07471E2CDE74C2D7919B1D879B6B6A408AD1975D203" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ИнформацияPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E78ADFA85F9A3E9E7B7D848727DF32B20D4C30698F665F6FA007B0A871FC6380" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -25,6 +25,34 @@ partial class ИнформацияPage : global::Microsoft.UI.Xaml.Controls.Page [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox numberBox; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Expander sdCPU; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock richTextBox2; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbProcessor; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbProducer; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbCodename; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbCaption; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbCores; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbThreads; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbBaseClock; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbL1Cache; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbL2Cache; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbL3Cache; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbInstructions; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TextBlock tbCode; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.TextBlock DescText; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.TextBlock richTextBox1; diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" index fdb51b1..a2501a3 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xaml" @@ -9,27 +9,113 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Processor + Producer + Codename + Caption + Cores + Threads + Base Clock + L1 Cache + L2 Cache + L3 Cache + Instructions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" index 9a641b8..33c130e 100644 Binary files "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" and "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" differ diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.cs" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.cs" index 8b4b0f5..1872713 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.cs" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.cs" @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ПараметрыPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "ADD4E5FB0333D355E98AA31A7D5B3C090FD45FF3DD8951BAD9617865D237E6B3" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ПараметрыPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D3719E6B28D96276903F3EB0117BA0497D188017F3FDF9864A1B644A9DCE4788" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -35,630 +35,922 @@ public void Connect(int connectionId, object target) ((global::Microsoft.UI.Xaml.Controls.ComboBox)this.ProfileCOM).SelectionChanged += this.ProfileCOM_SelectionChanged; } break; - case 4: // Views\ПараметрыPage.xaml line 776 + case 4: // Views\ПараметрыPage.xaml line 1139 + { + this.Apply_tooltip = global::WinRT.CastExtensions.As(target); + } + break; + case 5: // Views\ПараметрыPage.xaml line 1146 + { + this.Edit_tooltip_Error = global::WinRT.CastExtensions.As(target); + } + break; + case 6: // Views\ПараметрыPage.xaml line 1151 + { + this.Edit_tooltip = global::WinRT.CastExtensions.As(target); + } + break; + case 7: // Views\ПараметрыPage.xaml line 1156 + { + this.Add_tooltip_Error = global::WinRT.CastExtensions.As(target); + } + break; + case 8: // Views\ПараметрыPage.xaml line 1161 + { + this.Add_tooltip_Max = global::WinRT.CastExtensions.As(target); + } + break; + case 9: // Views\ПараметрыPage.xaml line 1166 + { + this.Unsaved_tooltip = global::WinRT.CastExtensions.As(target); + } + break; + case 10: // Views\ПараметрыPage.xaml line 1171 + { + this.Delete_tooltip_error = global::WinRT.CastExtensions.As(target); + } + break; + case 11: // Views\ПараметрыPage.xaml line 1178 { this.SaveName = global::WinRT.CastExtensions.As(target); } break; - case 5: // Views\ПараметрыPage.xaml line 777 + case 12: // Views\ПараметрыPage.xaml line 1179 { - global::Microsoft.UI.Xaml.Controls.Button element5 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element5).Click += this.Apply_Click; + global::Microsoft.UI.Xaml.Controls.Button element12 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element12).Click += this.Apply_Click; } break; - case 6: // Views\ПараметрыPage.xaml line 780 + case 13: // Views\ПараметрыPage.xaml line 1182 { - global::Microsoft.UI.Xaml.Controls.Button element6 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element6).Click += this.Delete_Click; + global::Microsoft.UI.Xaml.Controls.Button element13 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element13).Click += this.Delete_Click; } break; - case 7: // Views\ПараметрыPage.xaml line 783 + case 14: // Views\ПараметрыPage.xaml line 1185 { - global::Microsoft.UI.Xaml.Controls.Button element7 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element7).Click += this.Save_Click; + global::Microsoft.UI.Xaml.Controls.Button element14 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element14).Click += this.Save_Click; } break; - case 8: // Views\ПараметрыPage.xaml line 786 + case 15: // Views\ПараметрыPage.xaml line 1188 { - global::Microsoft.UI.Xaml.Controls.Button element8 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element8).Click += this.Edit_Click; + global::Microsoft.UI.Xaml.Controls.Button element15 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element15).Click += this.Edit_Click; } break; - case 9: // Views\ПараметрыPage.xaml line 173 + case 16: // Views\ПараметрыPage.xaml line 173 { this.Exp1 = global::WinRT.CastExtensions.As(target); } break; - case 10: // Views\ПараметрыPage.xaml line 494 + case 17: // Views\ПараметрыPage.xaml line 494 + { + global::Microsoft.UI.Xaml.Controls.Expander element17 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Expander)element17).Expanding += this.Pstate_Expanding; + } + break; + case 18: // Views\ПараметрыPage.xaml line 781 + { + this.OC_Advanced = global::WinRT.CastExtensions.As(target); + } + break; + case 19: // Views\ПараметрыPage.xaml line 1007 + { + this.a1 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a1).Checked += this.a1_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a1).Unchecked += this.a1_Checked; + } + break; + case 20: // Views\ПараметрыPage.xaml line 1008 + { + this.a1v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a1v).ValueChanged += this.a1v_ValueChanged; + } + break; + case 21: // Views\ПараметрыPage.xaml line 1009 + { + this.a1t = global::WinRT.CastExtensions.As(target); + } + break; + case 22: // Views\ПараметрыPage.xaml line 988 + { + this.a13 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a13).Checked += this.a13_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a13).Unchecked += this.a13_Checked; + } + break; + case 23: // Views\ПараметрыPage.xaml line 989 + { + this.a13m = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.ComboBox)this.a13m).SelectionChanged += this.a13m_SelectedIndexChanged; + } + break; + case 24: // Views\ПараметрыPage.xaml line 994 + { + this.a13t = global::WinRT.CastExtensions.As(target); + } + break; + case 25: // Views\ПараметрыPage.xaml line 973 + { + this.a12 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a12).Checked += this.a12_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a12).Unchecked += this.a12_Checked; + } + break; + case 26: // Views\ПараметрыPage.xaml line 974 + { + this.a12v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a12v).ValueChanged += this.a12v_ValueChanged; + } + break; + case 27: // Views\ПараметрыPage.xaml line 975 + { + this.a12t = global::WinRT.CastExtensions.As(target); + } + break; + case 28: // Views\ПараметрыPage.xaml line 958 + { + this.a11 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a11).Checked += this.a11_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a11).Unchecked += this.a11_Checked; + } + break; + case 29: // Views\ПараметрыPage.xaml line 959 + { + this.a11v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a11v).ValueChanged += this.a11v_ValueChanged; + } + break; + case 30: // Views\ПараметрыPage.xaml line 960 + { + this.a11t = global::WinRT.CastExtensions.As(target); + } + break; + case 31: // Views\ПараметрыPage.xaml line 942 + { + this.a10 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a10).Checked += this.a10_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a10).Unchecked += this.a10_Checked; + } + break; + case 32: // Views\ПараметрыPage.xaml line 943 + { + this.a10v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a10v).ValueChanged += this.a10v_ValueChanged; + } + break; + case 33: // Views\ПараметрыPage.xaml line 945 + { + this.a10t = global::WinRT.CastExtensions.As(target); + } + break; + case 34: // Views\ПараметрыPage.xaml line 926 + { + this.a9 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a9).Checked += this.a9_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a9).Unchecked += this.a9_Checked; + } + break; + case 35: // Views\ПараметрыPage.xaml line 927 { - global::Microsoft.UI.Xaml.Controls.Expander element10 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Expander)element10).Expanding += this.Pstate_Expanding; + this.a9v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a9v).ValueChanged += this.a9v_ValueChanged; } break; - case 11: // Views\ПараметрыPage.xaml line 757 + case 36: // Views\ПараметрыPage.xaml line 929 { - global::Microsoft.UI.Xaml.Controls.Button element11 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element11).Click += this.IgnoreWarn_Click; + this.a9t = global::WinRT.CastExtensions.As(target); } break; - case 12: // Views\ПараметрыPage.xaml line 765 + case 37: // Views\ПараметрыPage.xaml line 911 + { + this.a8 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a8).Checked += this.a8_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a8).Unchecked += this.a8_Checked; + } + break; + case 38: // Views\ПараметрыPage.xaml line 912 + { + this.a8v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a8v).ValueChanged += this.a8v_ValueChanged; + } + break; + case 39: // Views\ПараметрыPage.xaml line 914 + { + this.a8t = global::WinRT.CastExtensions.As(target); + } + break; + case 40: // Views\ПараметрыPage.xaml line 896 + { + this.a7 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a7).Checked += this.a7_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a7).Unchecked += this.a7_Checked; + } + break; + case 41: // Views\ПараметрыPage.xaml line 897 + { + this.a7v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a7v).ValueChanged += this.a7v_ValueChanged; + } + break; + case 42: // Views\ПараметрыPage.xaml line 899 + { + this.a7t = global::WinRT.CastExtensions.As(target); + } + break; + case 43: // Views\ПараметрыPage.xaml line 881 + { + this.a6 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a6).Checked += this.a6_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a6).Unchecked += this.a6_Checked; + } + break; + case 44: // Views\ПараметрыPage.xaml line 882 + { + this.a6v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a6v).ValueChanged += this.a6v_ValueChanged; + } + break; + case 45: // Views\ПараметрыPage.xaml line 884 + { + this.a6t = global::WinRT.CastExtensions.As(target); + } + break; + case 46: // Views\ПараметрыPage.xaml line 866 + { + this.a5 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a5).Checked += this.a5_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a5).Unchecked += this.a5_Checked; + } + break; + case 47: // Views\ПараметрыPage.xaml line 867 + { + this.a5v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a5v).ValueChanged += this.a5v_ValueChanged; + } + break; + case 48: // Views\ПараметрыPage.xaml line 869 + { + this.a5t = global::WinRT.CastExtensions.As(target); + } + break; + case 49: // Views\ПараметрыPage.xaml line 851 + { + this.a4 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a4).Checked += this.a4_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a4).Unchecked += this.a4_Checked; + } + break; + case 50: // Views\ПараметрыPage.xaml line 852 + { + this.a4v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a4v).ValueChanged += this.a4v_ValueChanged; + } + break; + case 51: // Views\ПараметрыPage.xaml line 854 + { + this.a4t = global::WinRT.CastExtensions.As(target); + } + break; + case 52: // Views\ПараметрыPage.xaml line 836 + { + this.a3 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a3).Checked += this.a3_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a3).Unchecked += this.a3_Checked; + } + break; + case 53: // Views\ПараметрыPage.xaml line 837 + { + this.a3v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a3v).ValueChanged += this.a3v_ValueChanged; + } + break; + case 54: // Views\ПараметрыPage.xaml line 839 + { + this.a3t = global::WinRT.CastExtensions.As(target); + } + break; + case 55: // Views\ПараметрыPage.xaml line 821 + { + this.a2 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a2).Checked += this.a2_Checked; + ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.a2).Unchecked += this.a2_Checked; + } + break; + case 56: // Views\ПараметрыPage.xaml line 822 + { + this.a2v = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Slider)this.a2v).ValueChanged += this.a2v_ValueChanged; + } + break; + case 57: // Views\ПараметрыPage.xaml line 824 + { + this.a2t = global::WinRT.CastExtensions.As(target); + } + break; + case 58: // Views\ПараметрыPage.xaml line 767 + { + global::Microsoft.UI.Xaml.Controls.Button element58 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element58).Click += this.IgnoreWarn_Click; + } + break; + case 59: // Views\ПараметрыPage.xaml line 775 { this.IgnoreWarn = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ToggleSwitch)this.IgnoreWarn).Toggled += this.Ignore_Toggled; } break; - case 13: // Views\ПараметрыPage.xaml line 745 + case 60: // Views\ПараметрыPage.xaml line 755 { - global::Microsoft.UI.Xaml.Controls.Button element13 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element13).Click += this.WithoutP0_Click; + global::Microsoft.UI.Xaml.Controls.Button element60 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element60).Click += this.WithoutP0_Click; } break; - case 14: // Views\ПараметрыPage.xaml line 753 + case 61: // Views\ПараметрыPage.xaml line 763 { this.Without_P0 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ToggleSwitch)this.Without_P0).Toggled += this.Without_P0_Toggled; } break; - case 15: // Views\ПараметрыPage.xaml line 733 + case 62: // Views\ПараметрыPage.xaml line 743 { - global::Microsoft.UI.Xaml.Controls.Button element15 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element15).Click += this.Autoapply_Click; + global::Microsoft.UI.Xaml.Controls.Button element62 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element62).Click += this.Autoapply_Click; } break; - case 16: // Views\ПараметрыPage.xaml line 741 + case 63: // Views\ПараметрыPage.xaml line 751 { this.Autoapply_1 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ToggleSwitch)this.Autoapply_1).Toggled += this.Autoapply_1_Toggled; } break; - case 17: // Views\ПараметрыPage.xaml line 721 + case 64: // Views\ПараметрыPage.xaml line 731 { - global::Microsoft.UI.Xaml.Controls.Button element17 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element17).Click += this.TurboBoost_Click; + global::Microsoft.UI.Xaml.Controls.Button element64 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element64).Click += this.TurboBoost_Click; } break; - case 18: // Views\ПараметрыPage.xaml line 729 + case 65: // Views\ПараметрыPage.xaml line 739 { this.Turbo_boost = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ToggleSwitch)this.Turbo_boost).Toggled += this.Turbo_boost_Toggled; } break; - case 19: // Views\ПараметрыPage.xaml line 666 + case 66: // Views\ПараметрыPage.xaml line 673 { this.P2_Freq = global::WinRT.CastExtensions.As(target); } break; - case 20: // Views\ПараметрыPage.xaml line 670 + case 67: // Views\ПараметрыPage.xaml line 677 { this.Mult_2 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ComboBox)this.Mult_2).SelectionChanged += this.Mult_2_SelectionChanged; } break; - case 21: // Views\ПараметрыPage.xaml line 715 + case 68: // Views\ПараметрыPage.xaml line 725 + { + this.VID_2 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.VID_2).ValueChanged += this.VID_2_ValueChanged; + } + break; + case 69: // Views\ПараметрыPage.xaml line 722 { this.DID_2 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.DID_2).ValueChanged += this.DID_2_ValueChanged; } break; - case 22: // Views\ПараметрыPage.xaml line 668 + case 70: // Views\ПараметрыPage.xaml line 675 { this.FID_2 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.FID_2).ValueChanged += this.FID_2_ValueChanged; } break; - case 23: // Views\ПараметрыPage.xaml line 612 + case 71: // Views\ПараметрыPage.xaml line 616 { this.P1_Freq = global::WinRT.CastExtensions.As(target); } break; - case 24: // Views\ПараметрыPage.xaml line 616 + case 72: // Views\ПараметрыPage.xaml line 620 { this.Mult_1 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ComboBox)this.Mult_1).SelectionChanged += this.Mult_1_SelectionChanged; } break; - case 25: // Views\ПараметрыPage.xaml line 661 + case 73: // Views\ПараметрыPage.xaml line 668 + { + this.VID_1 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.VID_1).ValueChanged += this.VID_1_ValueChanged; + } + break; + case 74: // Views\ПараметрыPage.xaml line 665 { this.DID_1 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.DID_1).ValueChanged += this.DID_1_ValueChanged; } break; - case 26: // Views\ПараметрыPage.xaml line 614 + case 75: // Views\ПараметрыPage.xaml line 618 { this.FID_1 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.FID_1).ValueChanged += this.FID_1_ValueChanged; } break; - case 27: // Views\ПараметрыPage.xaml line 558 + case 76: // Views\ПараметрыPage.xaml line 559 { this.P0_Freq = global::WinRT.CastExtensions.As(target); } break; - case 28: // Views\ПараметрыPage.xaml line 562 + case 77: // Views\ПараметрыPage.xaml line 563 { this.Mult_0 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ComboBox)this.Mult_0).SelectionChanged += this.Mult_0_SelectionChanged; } break; - case 29: // Views\ПараметрыPage.xaml line 607 + case 78: // Views\ПараметрыPage.xaml line 611 + { + this.VID_0 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.VID_0).ValueChanged += this.VID_0_ValueChanged; + } + break; + case 79: // Views\ПараметрыPage.xaml line 608 { this.DID_0 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.DID_0).ValueChanged += this.DID_0_ValueChanged; } break; - case 30: // Views\ПараметрыPage.xaml line 560 + case 80: // Views\ПараметрыPage.xaml line 561 { this.FID_0 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.NumberBox)this.FID_0).ValueChanged += this.FID_0_ValueChanged; } break; - case 31: // Views\ПараметрыPage.xaml line 517 + case 81: // Views\ПараметрыPage.xaml line 517 { - global::Microsoft.UI.Xaml.Controls.Button element31 = global::WinRT.CastExtensions.As(target); - ((global::Microsoft.UI.Xaml.Controls.Button)element31).Click += this.EnablePstates_Click; + global::Microsoft.UI.Xaml.Controls.Button element81 = global::WinRT.CastExtensions.As(target); + ((global::Microsoft.UI.Xaml.Controls.Button)element81).Click += this.EnablePstates_Click; } break; - case 32: // Views\ПараметрыPage.xaml line 525 + case 82: // Views\ПараметрыPage.xaml line 525 { this.EnablePstates = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.ToggleSwitch)this.EnablePstates).Toggled += this.EnablePstates_Toggled; } break; - case 33: // Views\ПараметрыPage.xaml line 477 + case 83: // Views\ПараметрыPage.xaml line 477 { this.g1 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g1).Checked += this.g1_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g1).Unchecked += this.g1_Checked; } break; - case 34: // Views\ПараметрыPage.xaml line 478 + case 84: // Views\ПараметрыPage.xaml line 478 { this.g1v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g1v).ValueChanged += this.g1v_ValueChanged; } break; - case 35: // Views\ПараметрыPage.xaml line 480 + case 85: // Views\ПараметрыPage.xaml line 480 { this.g1t = global::WinRT.CastExtensions.As(target); } break; - case 36: // Views\ПараметрыPage.xaml line 462 + case 86: // Views\ПараметрыPage.xaml line 462 { this.g10 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g10).Checked += this.g10_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g10).Unchecked += this.g10_Checked; } break; - case 37: // Views\ПараметрыPage.xaml line 463 + case 87: // Views\ПараметрыPage.xaml line 463 { this.g10v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g10v).ValueChanged += this.g10v_ValueChanged; } break; - case 38: // Views\ПараметрыPage.xaml line 465 + case 88: // Views\ПараметрыPage.xaml line 465 { this.g10t = global::WinRT.CastExtensions.As(target); } break; - case 39: // Views\ПараметрыPage.xaml line 447 + case 89: // Views\ПараметрыPage.xaml line 447 { this.g9 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g9).Checked += this.g9_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g9).Unchecked += this.g9_Checked; } break; - case 40: // Views\ПараметрыPage.xaml line 448 + case 90: // Views\ПараметрыPage.xaml line 448 { this.g9v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g9v).ValueChanged += this.g9v_ValueChanged; } break; - case 41: // Views\ПараметрыPage.xaml line 450 + case 91: // Views\ПараметрыPage.xaml line 450 { this.g9t = global::WinRT.CastExtensions.As(target); } break; - case 42: // Views\ПараметрыPage.xaml line 432 + case 92: // Views\ПараметрыPage.xaml line 432 { this.g8 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g8).Checked += this.g8_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g8).Unchecked += this.g8_Checked; } break; - case 43: // Views\ПараметрыPage.xaml line 433 + case 93: // Views\ПараметрыPage.xaml line 433 { this.g8v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g8v).ValueChanged += this.g8v_ValueChanged; } break; - case 44: // Views\ПараметрыPage.xaml line 435 + case 94: // Views\ПараметрыPage.xaml line 435 { this.g8t = global::WinRT.CastExtensions.As(target); } break; - case 45: // Views\ПараметрыPage.xaml line 417 + case 95: // Views\ПараметрыPage.xaml line 417 { this.g7 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g7).Checked += this.g7_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g7).Unchecked += this.g7_Checked; } break; - case 46: // Views\ПараметрыPage.xaml line 418 + case 96: // Views\ПараметрыPage.xaml line 418 { this.g7v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g7v).ValueChanged += this.g7v_ValueChanged; } break; - case 47: // Views\ПараметрыPage.xaml line 420 + case 97: // Views\ПараметрыPage.xaml line 420 { this.g7t = global::WinRT.CastExtensions.As(target); } break; - case 48: // Views\ПараметрыPage.xaml line 402 + case 98: // Views\ПараметрыPage.xaml line 402 { this.g6 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g6).Checked += this.g6_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g6).Unchecked += this.g6_Checked; } break; - case 49: // Views\ПараметрыPage.xaml line 403 + case 99: // Views\ПараметрыPage.xaml line 403 { this.g6v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g6v).ValueChanged += this.g6v_ValueChanged; } break; - case 50: // Views\ПараметрыPage.xaml line 405 + case 100: // Views\ПараметрыPage.xaml line 405 { this.g6t = global::WinRT.CastExtensions.As(target); } break; - case 51: // Views\ПараметрыPage.xaml line 387 + case 101: // Views\ПараметрыPage.xaml line 387 { this.g5 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g5).Checked += this.g5_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g5).Unchecked += this.g5_Checked; } break; - case 52: // Views\ПараметрыPage.xaml line 388 + case 102: // Views\ПараметрыPage.xaml line 388 { this.g5v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g5v).ValueChanged += this.g5v_ValueChanged; } break; - case 53: // Views\ПараметрыPage.xaml line 390 + case 103: // Views\ПараметрыPage.xaml line 390 { this.g5t = global::WinRT.CastExtensions.As(target); } break; - case 54: // Views\ПараметрыPage.xaml line 372 + case 104: // Views\ПараметрыPage.xaml line 372 { this.g4 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g4).Checked += this.g4_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g4).Unchecked += this.g4_Checked; } break; - case 55: // Views\ПараметрыPage.xaml line 373 + case 105: // Views\ПараметрыPage.xaml line 373 { this.g4v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g4v).ValueChanged += this.g4v_ValueChanged; } break; - case 56: // Views\ПараметрыPage.xaml line 375 + case 106: // Views\ПараметрыPage.xaml line 375 { this.g4t = global::WinRT.CastExtensions.As(target); } break; - case 57: // Views\ПараметрыPage.xaml line 357 + case 107: // Views\ПараметрыPage.xaml line 357 { this.g3 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g3).Checked += this.g3_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g3).Unchecked += this.g3_Checked; } break; - case 58: // Views\ПараметрыPage.xaml line 358 + case 108: // Views\ПараметрыPage.xaml line 358 { this.g3v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g3v).ValueChanged += this.g3v_ValueChanged; } break; - case 59: // Views\ПараметрыPage.xaml line 360 + case 109: // Views\ПараметрыPage.xaml line 360 { this.g3t = global::WinRT.CastExtensions.As(target); } break; - case 60: // Views\ПараметрыPage.xaml line 342 + case 110: // Views\ПараметрыPage.xaml line 342 { this.g2 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g2).Checked += this.g2_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.g2).Unchecked += this.g2_Checked; } break; - case 61: // Views\ПараметрыPage.xaml line 343 + case 111: // Views\ПараметрыPage.xaml line 343 { this.g2v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.g2v).ValueChanged += this.g2v_ValueChanged; } break; - case 62: // Views\ПараметрыPage.xaml line 345 + case 112: // Views\ПараметрыPage.xaml line 345 { this.g2t = global::WinRT.CastExtensions.As(target); } break; - case 63: // Views\ПараметрыPage.xaml line 292 + case 113: // Views\ПараметрыPage.xaml line 292 { this.V1 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V1).Checked += this.v1_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V1).Unchecked += this.v1_Checked; } break; - case 64: // Views\ПараметрыPage.xaml line 293 + case 114: // Views\ПараметрыPage.xaml line 293 { this.V1V = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.V1V).ValueChanged += this.v1v_ValueChanged; } break; - case 65: // Views\ПараметрыPage.xaml line 295 + case 115: // Views\ПараметрыPage.xaml line 295 { this.v1t = global::WinRT.CastExtensions.As(target); } break; - case 66: // Views\ПараметрыPage.xaml line 277 + case 116: // Views\ПараметрыPage.xaml line 277 { this.V7 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V7).Checked += this.v7_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V7).Unchecked += this.v7_Checked; } break; - case 67: // Views\ПараметрыPage.xaml line 278 + case 117: // Views\ПараметрыPage.xaml line 278 { this.V7V = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.V7V).ValueChanged += this.v7v_ValueChanged; } break; - case 68: // Views\ПараметрыPage.xaml line 280 + case 118: // Views\ПараметрыPage.xaml line 280 { this.v7t = global::WinRT.CastExtensions.As(target); } break; - case 69: // Views\ПараметрыPage.xaml line 262 + case 119: // Views\ПараметрыPage.xaml line 262 { this.V6 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V6).Checked += this.v6_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V6).Unchecked += this.v6_Checked; } break; - case 70: // Views\ПараметрыPage.xaml line 263 + case 120: // Views\ПараметрыPage.xaml line 263 { this.V6V = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.V6V).ValueChanged += this.v6v_ValueChanged; } break; - case 71: // Views\ПараметрыPage.xaml line 265 + case 121: // Views\ПараметрыPage.xaml line 265 { this.v6t = global::WinRT.CastExtensions.As(target); } break; - case 72: // Views\ПараметрыPage.xaml line 247 + case 122: // Views\ПараметрыPage.xaml line 247 { this.V5 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V5).Checked += this.v5_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V5).Unchecked += this.v5_Checked; } break; - case 73: // Views\ПараметрыPage.xaml line 248 + case 123: // Views\ПараметрыPage.xaml line 248 { this.V5V = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.V5V).ValueChanged += this.v5v_ValueChanged; } break; - case 74: // Views\ПараметрыPage.xaml line 250 + case 124: // Views\ПараметрыPage.xaml line 250 { this.v5t = global::WinRT.CastExtensions.As(target); } break; - case 75: // Views\ПараметрыPage.xaml line 232 + case 125: // Views\ПараметрыPage.xaml line 232 { this.V4 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V4).Checked += this.v4_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V4).Unchecked += this.v4_Checked; } break; - case 76: // Views\ПараметрыPage.xaml line 233 + case 126: // Views\ПараметрыPage.xaml line 233 { this.V4V = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.V4V).ValueChanged += this.v4v_ValueChanged; } break; - case 77: // Views\ПараметрыPage.xaml line 235 + case 127: // Views\ПараметрыPage.xaml line 235 { this.v4t = global::WinRT.CastExtensions.As(target); } break; - case 78: // Views\ПараметрыPage.xaml line 217 + case 128: // Views\ПараметрыPage.xaml line 217 { this.V3 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V3).Checked += this.v3_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V3).Unchecked += this.v3_Checked; } break; - case 79: // Views\ПараметрыPage.xaml line 218 + case 129: // Views\ПараметрыPage.xaml line 218 { this.V3V = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.V3V).ValueChanged += this.v3v_ValueChanged; } break; - case 80: // Views\ПараметрыPage.xaml line 220 + case 130: // Views\ПараметрыPage.xaml line 220 { this.v3t = global::WinRT.CastExtensions.As(target); } break; - case 81: // Views\ПараметрыPage.xaml line 202 + case 131: // Views\ПараметрыPage.xaml line 202 { this.V2 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V2).Checked += this.v2_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.V2).Unchecked += this.v2_Checked; } break; - case 82: // Views\ПараметрыPage.xaml line 203 + case 132: // Views\ПараметрыPage.xaml line 203 { this.V2V = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.V2V).ValueChanged += this.v2v_ValueChanged; } break; - case 83: // Views\ПараметрыPage.xaml line 205 + case 133: // Views\ПараметрыPage.xaml line 205 { this.v2t = global::WinRT.CastExtensions.As(target); } break; - case 84: // Views\ПараметрыPage.xaml line 155 + case 134: // Views\ПараметрыPage.xaml line 155 { this.c1 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c1).Checked += this.c1_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c1).Unchecked += this.c1_Checked; } break; - case 85: // Views\ПараметрыPage.xaml line 156 + case 135: // Views\ПараметрыPage.xaml line 156 { this.c1v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.c1v).ValueChanged += this.c1_ValueChanged; } break; - case 86: // Views\ПараметрыPage.xaml line 158 + case 136: // Views\ПараметрыPage.xaml line 158 { this.c1t = global::WinRT.CastExtensions.As(target); } break; - case 87: // Views\ПараметрыPage.xaml line 140 + case 137: // Views\ПараметрыPage.xaml line 140 { this.c6 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c6).Checked += this.c6_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c6).Unchecked += this.c6_Checked; } break; - case 88: // Views\ПараметрыPage.xaml line 141 + case 138: // Views\ПараметрыPage.xaml line 141 { this.c6v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.c6v).ValueChanged += this.c6_ValueChanged; } break; - case 89: // Views\ПараметрыPage.xaml line 143 + case 139: // Views\ПараметрыPage.xaml line 143 { this.c6t = global::WinRT.CastExtensions.As(target); } break; - case 90: // Views\ПараметрыPage.xaml line 125 + case 140: // Views\ПараметрыPage.xaml line 125 { this.c5 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c5).Checked += this.c5_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c5).Unchecked += this.c5_Checked; } break; - case 91: // Views\ПараметрыPage.xaml line 126 + case 141: // Views\ПараметрыPage.xaml line 126 { this.c5v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.c5v).ValueChanged += this.c5_ValueChanged; } break; - case 92: // Views\ПараметрыPage.xaml line 128 + case 142: // Views\ПараметрыPage.xaml line 128 { this.c5t = global::WinRT.CastExtensions.As(target); } break; - case 93: // Views\ПараметрыPage.xaml line 110 + case 143: // Views\ПараметрыPage.xaml line 110 { this.c4 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c4).Checked += this.c4_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c4).Unchecked += this.c4_Checked; } break; - case 94: // Views\ПараметрыPage.xaml line 111 + case 144: // Views\ПараметрыPage.xaml line 111 { this.c4v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.c4v).ValueChanged += this.c4_ValueChanged; } break; - case 95: // Views\ПараметрыPage.xaml line 113 + case 145: // Views\ПараметрыPage.xaml line 113 { this.c4t = global::WinRT.CastExtensions.As(target); } break; - case 96: // Views\ПараметрыPage.xaml line 95 + case 146: // Views\ПараметрыPage.xaml line 95 { this.c3 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c3).Checked += this.c3_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c3).Unchecked += this.c3_Checked; } break; - case 97: // Views\ПараметрыPage.xaml line 96 + case 147: // Views\ПараметрыPage.xaml line 96 { this.c3v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.c3v).ValueChanged += this.c3_ValueChanged; } break; - case 98: // Views\ПараметрыPage.xaml line 98 + case 148: // Views\ПараметрыPage.xaml line 98 { this.c3t = global::WinRT.CastExtensions.As(target); } break; - case 99: // Views\ПараметрыPage.xaml line 80 + case 149: // Views\ПараметрыPage.xaml line 80 { this.c2 = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c2).Checked += this.c2_Checked; ((global::Microsoft.UI.Xaml.Controls.CheckBox)this.c2).Unchecked += this.c2_Checked; } break; - case 100: // Views\ПараметрыPage.xaml line 81 + case 150: // Views\ПараметрыPage.xaml line 81 { this.c2v = global::WinRT.CastExtensions.As(target); ((global::Microsoft.UI.Xaml.Controls.Slider)this.c2v).ValueChanged += this.c2_ValueChanged; } break; - case 101: // Views\ПараметрыPage.xaml line 83 + case 151: // Views\ПараметрыPage.xaml line 83 { this.c2t = global::WinRT.CastExtensions.As(target); } break; - case 102: // Views\ПараметрыPage.xaml line 22 + case 152: // Views\ПараметрыPage.xaml line 22 { this.ProfileCOM_1 = global::WinRT.CastExtensions.As(target); } break; - case 103: // Views\ПараметрыPage.xaml line 23 + case 153: // Views\ПараметрыPage.xaml line 23 { this.ProfileCOM_2 = global::WinRT.CastExtensions.As(target); } break; - case 104: // Views\ПараметрыPage.xaml line 24 + case 154: // Views\ПараметрыPage.xaml line 24 { this.ProfileCOM_3 = global::WinRT.CastExtensions.As(target); } break; - case 105: // Views\ПараметрыPage.xaml line 25 + case 155: // Views\ПараметрыPage.xaml line 25 { this.ProfileCOM_4 = global::WinRT.CastExtensions.As(target); } break; - case 106: // Views\ПараметрыPage.xaml line 26 + case 156: // Views\ПараметрыPage.xaml line 26 { this.ProfileCOM_5 = global::WinRT.CastExtensions.As(target); } break; - case 107: // Views\ПараметрыPage.xaml line 27 + case 157: // Views\ПараметрыPage.xaml line 27 { this.ProfileCOM_6 = global::WinRT.CastExtensions.As(target); } break; - case 108: // Views\ПараметрыPage.xaml line 28 + case 158: // Views\ПараметрыPage.xaml line 28 { this.ProfileCOM_7 = global::WinRT.CastExtensions.As(target); } break; - case 109: // Views\ПараметрыPage.xaml line 29 + case 159: // Views\ПараметрыPage.xaml line 29 { this.ProfileCOM_8 = global::WinRT.CastExtensions.As(target); } break; - case 110: // Views\ПараметрыPage.xaml line 30 + case 160: // Views\ПараметрыPage.xaml line 30 { this.ProfileCOM_9 = global::WinRT.CastExtensions.As(target); } diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.i.cs" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.i.cs" index 8d52eec..4d6347f 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.i.cs" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.g.i.cs" @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ПараметрыPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "ADD4E5FB0333D355E98AA31A7D5B3C090FD45FF3DD8951BAD9617865D237E6B3" +#pragma checksum "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\Views\ПараметрыPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D3719E6B28D96276903F3EB0117BA0497D188017F3FDF9864A1B644A9DCE4788" //------------------------------------------------------------------------------ // // This code was generated by a tool. @@ -21,10 +21,104 @@ partial class ПараметрыPage : global::Microsoft.UI.Xaml.Controls.Page [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.ComboBox ProfileCOM; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TeachingTip Apply_tooltip; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TeachingTip Edit_tooltip_Error; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TeachingTip Edit_tooltip; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TeachingTip Add_tooltip_Error; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TeachingTip Add_tooltip_Max; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TeachingTip Unsaved_tooltip; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.TeachingTip Delete_tooltip_error; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.TextBox SaveName; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.Expander Exp1; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Expander OC_Advanced; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a1; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a1v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a1t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a13; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.ComboBox a13m; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a13t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a12; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a12v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a12t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a11; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a11v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a11t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a10; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a10v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a10t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a9; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a9v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a9t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a8; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a8v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a8t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a7; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a7v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a7t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a6; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a6v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a6t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a5; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a5v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a5t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a4; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a4v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a4t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a3; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a3v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a3t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.CheckBox a2; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Slider a2v; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.Button a2t; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.ToggleSwitch IgnoreWarn; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.ToggleSwitch Without_P0; @@ -37,6 +131,8 @@ partial class ПараметрыPage : global::Microsoft.UI.Xaml.Controls.Page [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.ComboBox Mult_2; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.NumberBox VID_2; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox DID_2; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox FID_2; @@ -45,6 +141,8 @@ partial class ПараметрыPage : global::Microsoft.UI.Xaml.Controls.Page [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.ComboBox Mult_1; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.NumberBox VID_1; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox DID_1; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox FID_1; @@ -53,6 +151,8 @@ partial class ПараметрыPage : global::Microsoft.UI.Xaml.Controls.Page [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.ComboBox Mult_0; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] + private global::Microsoft.UI.Xaml.Controls.NumberBox VID_0; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox DID_0; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 3.0.0.2310")] private global::Microsoft.UI.Xaml.Controls.NumberBox FID_0; diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" index 6386f40..1895c9a 100644 --- "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" +++ "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xaml" @@ -13,29 +13,29 @@ - + Unsaved - - - - - - - - - + + + + + + + + + - + - + @@ -47,8 +47,8 @@ - - + + @@ -77,10 +77,10 @@ - - + + - + @@ -92,10 +92,10 @@ - - + + - + @@ -107,10 +107,10 @@ - - + + - + @@ -122,10 +122,10 @@ - - + + - + @@ -137,10 +137,10 @@ - - + + - + @@ -152,10 +152,10 @@ - - + + - + @@ -170,7 +170,7 @@ - + @@ -199,10 +199,10 @@ - - + + - + @@ -214,10 +214,10 @@ - - + + - + @@ -229,10 +229,10 @@ - - + + - + @@ -244,10 +244,10 @@ - - + + - + @@ -259,10 +259,10 @@ - - + + - + @@ -274,10 +274,10 @@ - - + + - + @@ -289,10 +289,10 @@ - - + + - + @@ -307,7 +307,7 @@ - + @@ -339,10 +339,10 @@ - - + + - + @@ -354,10 +354,10 @@ - - + + - + @@ -369,10 +369,10 @@ - - + + - + @@ -384,10 +384,10 @@ - - + + - + @@ -399,10 +399,10 @@ - - + + - + @@ -414,10 +414,10 @@ - - + + - + @@ -429,10 +429,10 @@ - - + + - + @@ -444,10 +444,10 @@ - - + + - + @@ -459,10 +459,10 @@ - - + + - + @@ -474,10 +474,10 @@ - - + + - + @@ -491,7 +491,7 @@ - + @@ -514,7 +514,7 @@ - - + @@ -552,14 +552,15 @@ + - + - + - + @@ -604,16 +605,19 @@ - + + + + - + - + - + @@ -658,16 +662,19 @@ - + + + + - + - + - + @@ -712,13 +719,16 @@ - + + + + - + - - - + - - + - - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Keep auto + Ultra performance + Energy efficiency + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" index 77c5515..5728684 100644 Binary files "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" and "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlSaveStateFile.xml b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlSaveStateFile.xml index d9d519d..4ce1b2f 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlSaveStateFile.xml +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlSaveStateFile.xml @@ -1 +1 @@ -EnableXBindDiagnostics, EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT \ No newline at end of file +EnableXBindDiagnostics, EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT \ No newline at end of file diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlTypeInfo.g.cs b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlTypeInfo.g.cs index 20fc9b3..6099cbb 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlTypeInfo.g.cs +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/XamlTypeInfo.g.cs @@ -224,7 +224,7 @@ internal partial class XamlTypeInfoProvider private void InitTypeTables() { - _typeNameTable = new string[87]; + _typeNameTable = new string[95]; _typeNameTable[0] = "Microsoft.UI.Xaml.Controls.XamlControlsResources"; _typeNameTable[1] = "Microsoft.UI.Xaml.ResourceDictionary"; _typeNameTable[2] = "Object"; @@ -295,25 +295,33 @@ private void InitTypeTables() _typeNameTable[67] = "Saku_Overclock.ViewModels.ShellViewModel"; _typeNameTable[68] = "Saku_Overclock.Views.ГлавнаяPage"; _typeNameTable[69] = "Saku_Overclock.ViewModels.ГлавнаяViewModel"; - _typeNameTable[70] = "Saku_Overclock.Views.ИнформацияPage"; - _typeNameTable[71] = "Saku_Overclock.ViewModels.ИнформацияViewModel"; - _typeNameTable[72] = "Microsoft.UI.Xaml.Controls.ProgressBar"; - _typeNameTable[73] = "Microsoft.UI.Xaml.Controls.Primitives.RangeBase"; - _typeNameTable[74] = "Microsoft.UI.Xaml.Controls.ProgressBarTemplateSettings"; - _typeNameTable[75] = "Saku_Overclock.Views.КулерPage"; - _typeNameTable[76] = "Saku_Overclock.ViewModels.КулерViewModel"; - _typeNameTable[77] = "Microsoft.UI.Xaml.Controls.Expander"; - _typeNameTable[78] = "Microsoft.UI.Xaml.Controls.ExpandDirection"; - _typeNameTable[79] = "Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings"; - _typeNameTable[80] = "Saku_Overclock.Views.ПараметрыPage"; - _typeNameTable[81] = "Saku_Overclock.ViewModels.ПараметрыViewModel"; - _typeNameTable[82] = "Saku_Overclock.Views.ПресетыPage"; - _typeNameTable[83] = "Saku_Overclock.ViewModels.ПресетыViewModel"; - _typeNameTable[84] = "Microsoft.UI.Xaml.Controls.TreeViewNode"; - _typeNameTable[85] = "System.Collections.Generic.IList`1"; - _typeNameTable[86] = "Int32"; - - _typeTable = new global::System.Type[87]; + _typeNameTable[70] = "Microsoft.UI.Xaml.Controls.Expander"; + _typeNameTable[71] = "Microsoft.UI.Xaml.Controls.ExpandDirection"; + _typeNameTable[72] = "Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings"; + _typeNameTable[73] = "Saku_Overclock.Views.ИнформацияPage"; + _typeNameTable[74] = "Saku_Overclock.ViewModels.ИнформацияViewModel"; + _typeNameTable[75] = "Microsoft.UI.Xaml.Controls.ProgressBar"; + _typeNameTable[76] = "Microsoft.UI.Xaml.Controls.Primitives.RangeBase"; + _typeNameTable[77] = "Microsoft.UI.Xaml.Controls.ProgressBarTemplateSettings"; + _typeNameTable[78] = "Saku_Overclock.Views.КулерPage"; + _typeNameTable[79] = "Saku_Overclock.ViewModels.КулерViewModel"; + _typeNameTable[80] = "Microsoft.UI.Xaml.Controls.TeachingTip"; + _typeNameTable[81] = "Microsoft.UI.Xaml.Controls.IconSource"; + _typeNameTable[82] = "System.Windows.Input.ICommand"; + _typeNameTable[83] = "Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode"; + _typeNameTable[84] = "Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode"; + _typeNameTable[85] = "Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility"; + _typeNameTable[86] = "Microsoft.UI.Xaml.FrameworkElement"; + _typeNameTable[87] = "Microsoft.UI.Xaml.Controls.TeachingTipTemplateSettings"; + _typeNameTable[88] = "Saku_Overclock.Views.ПараметрыPage"; + _typeNameTable[89] = "Saku_Overclock.ViewModels.ПараметрыViewModel"; + _typeNameTable[90] = "Saku_Overclock.Views.ПресетыPage"; + _typeNameTable[91] = "Saku_Overclock.ViewModels.ПресетыViewModel"; + _typeNameTable[92] = "Microsoft.UI.Xaml.Controls.TreeViewNode"; + _typeNameTable[93] = "System.Collections.Generic.IList`1"; + _typeNameTable[94] = "Int32"; + + _typeTable = new global::System.Type[95]; _typeTable[0] = typeof(global::Microsoft.UI.Xaml.Controls.XamlControlsResources); _typeTable[1] = typeof(global::Microsoft.UI.Xaml.ResourceDictionary); _typeTable[2] = typeof(global::System.Object); @@ -386,23 +394,31 @@ private void InitTypeTables() _typeTable[67] = typeof(global::Saku_Overclock.ViewModels.ShellViewModel); _typeTable[68] = typeof(global::Saku_Overclock.Views.ГлавнаяPage); _typeTable[69] = typeof(global::Saku_Overclock.ViewModels.ГлавнаяViewModel); - _typeTable[70] = typeof(global::Saku_Overclock.Views.ИнформацияPage); - _typeTable[71] = typeof(global::Saku_Overclock.ViewModels.ИнформацияViewModel); - _typeTable[72] = typeof(global::Microsoft.UI.Xaml.Controls.ProgressBar); - _typeTable[73] = typeof(global::Microsoft.UI.Xaml.Controls.Primitives.RangeBase); - _typeTable[74] = typeof(global::Microsoft.UI.Xaml.Controls.ProgressBarTemplateSettings); - _typeTable[75] = typeof(global::Saku_Overclock.Views.КулерPage); - _typeTable[76] = typeof(global::Saku_Overclock.ViewModels.КулерViewModel); - _typeTable[77] = typeof(global::Microsoft.UI.Xaml.Controls.Expander); - _typeTable[78] = typeof(global::Microsoft.UI.Xaml.Controls.ExpandDirection); - _typeTable[79] = typeof(global::Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings); - _typeTable[80] = typeof(global::Saku_Overclock.Views.ПараметрыPage); - _typeTable[81] = typeof(global::Saku_Overclock.ViewModels.ПараметрыViewModel); - _typeTable[82] = typeof(global::Saku_Overclock.Views.ПресетыPage); - _typeTable[83] = typeof(global::Saku_Overclock.ViewModels.ПресетыViewModel); - _typeTable[84] = typeof(global::Microsoft.UI.Xaml.Controls.TreeViewNode); - _typeTable[85] = typeof(global::System.Collections.Generic.IList); - _typeTable[86] = typeof(global::System.Int32); + _typeTable[70] = typeof(global::Microsoft.UI.Xaml.Controls.Expander); + _typeTable[71] = typeof(global::Microsoft.UI.Xaml.Controls.ExpandDirection); + _typeTable[72] = typeof(global::Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings); + _typeTable[73] = typeof(global::Saku_Overclock.Views.ИнформацияPage); + _typeTable[74] = typeof(global::Saku_Overclock.ViewModels.ИнформацияViewModel); + _typeTable[75] = typeof(global::Microsoft.UI.Xaml.Controls.ProgressBar); + _typeTable[76] = typeof(global::Microsoft.UI.Xaml.Controls.Primitives.RangeBase); + _typeTable[77] = typeof(global::Microsoft.UI.Xaml.Controls.ProgressBarTemplateSettings); + _typeTable[78] = typeof(global::Saku_Overclock.Views.КулерPage); + _typeTable[79] = typeof(global::Saku_Overclock.ViewModels.КулерViewModel); + _typeTable[80] = typeof(global::Microsoft.UI.Xaml.Controls.TeachingTip); + _typeTable[81] = typeof(global::Microsoft.UI.Xaml.Controls.IconSource); + _typeTable[82] = typeof(global::System.Windows.Input.ICommand); + _typeTable[83] = typeof(global::Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode); + _typeTable[84] = typeof(global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode); + _typeTable[85] = typeof(global::Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility); + _typeTable[86] = typeof(global::Microsoft.UI.Xaml.FrameworkElement); + _typeTable[87] = typeof(global::Microsoft.UI.Xaml.Controls.TeachingTipTemplateSettings); + _typeTable[88] = typeof(global::Saku_Overclock.Views.ПараметрыPage); + _typeTable[89] = typeof(global::Saku_Overclock.ViewModels.ПараметрыViewModel); + _typeTable[90] = typeof(global::Saku_Overclock.Views.ПресетыPage); + _typeTable[91] = typeof(global::Saku_Overclock.ViewModels.ПресетыViewModel); + _typeTable[92] = typeof(global::Microsoft.UI.Xaml.Controls.TreeViewNode); + _typeTable[93] = typeof(global::System.Collections.Generic.IList); + _typeTable[94] = typeof(global::System.Int32); } private int LookupTypeIndexByName(string typeName) @@ -453,17 +469,19 @@ private int LookupTypeIndexByType(global::System.Type type) private object Activate_62_NavigationViewHeaderBehavior() { return new global::Saku_Overclock.Behaviors.NavigationViewHeaderBehavior(); } private object Activate_68_ГлавнаяPage() { return new global::Saku_Overclock.Views.ГлавнаяPage(); } private object Activate_69_ГлавнаяViewModel() { return new global::Saku_Overclock.ViewModels.ГлавнаяViewModel(); } - private object Activate_70_ИнформацияPage() { return new global::Saku_Overclock.Views.ИнформацияPage(); } - private object Activate_71_ИнформацияViewModel() { return new global::Saku_Overclock.ViewModels.ИнформацияViewModel(); } - private object Activate_72_ProgressBar() { return new global::Microsoft.UI.Xaml.Controls.ProgressBar(); } - private object Activate_75_КулерPage() { return new global::Saku_Overclock.Views.КулерPage(); } - private object Activate_76_КулерViewModel() { return new global::Saku_Overclock.ViewModels.КулерViewModel(); } - private object Activate_77_Expander() { return new global::Microsoft.UI.Xaml.Controls.Expander(); } - private object Activate_80_ПараметрыPage() { return new global::Saku_Overclock.Views.ПараметрыPage(); } - private object Activate_81_ПараметрыViewModel() { return new global::Saku_Overclock.ViewModels.ПараметрыViewModel(); } - private object Activate_82_ПресетыPage() { return new global::Saku_Overclock.Views.ПресетыPage(); } - private object Activate_83_ПресетыViewModel() { return new global::Saku_Overclock.ViewModels.ПресетыViewModel(); } - private object Activate_84_TreeViewNode() { return new global::Microsoft.UI.Xaml.Controls.TreeViewNode(); } + private object Activate_70_Expander() { return new global::Microsoft.UI.Xaml.Controls.Expander(); } + private object Activate_73_ИнформацияPage() { return new global::Saku_Overclock.Views.ИнформацияPage(); } + private object Activate_74_ИнформацияViewModel() { return new global::Saku_Overclock.ViewModels.ИнформацияViewModel(); } + private object Activate_75_ProgressBar() { return new global::Microsoft.UI.Xaml.Controls.ProgressBar(); } + private object Activate_78_КулерPage() { return new global::Saku_Overclock.Views.КулерPage(); } + private object Activate_79_КулерViewModel() { return new global::Saku_Overclock.ViewModels.КулерViewModel(); } + private object Activate_80_TeachingTip() { return new global::Microsoft.UI.Xaml.Controls.TeachingTip(); } + private object Activate_87_TeachingTipTemplateSettings() { return new global::Microsoft.UI.Xaml.Controls.TeachingTipTemplateSettings(); } + private object Activate_88_ПараметрыPage() { return new global::Saku_Overclock.Views.ПараметрыPage(); } + private object Activate_89_ПараметрыViewModel() { return new global::Saku_Overclock.ViewModels.ПараметрыViewModel(); } + private object Activate_90_ПресетыPage() { return new global::Saku_Overclock.Views.ПресетыPage(); } + private object Activate_91_ПресетыViewModel() { return new global::Saku_Overclock.ViewModels.ПресетыViewModel(); } + private object Activate_92_TreeViewNode() { return new global::Microsoft.UI.Xaml.Controls.TreeViewNode(); } private void MapAdd_0_XamlControlsResources(object instance, object key, object item) { var collection = (global::System.Collections.Generic.IDictionary)instance; @@ -483,7 +501,7 @@ private void VectorAdd_55_BehaviorCollection(object instance, object item) var newItem = (global::Microsoft.UI.Xaml.DependencyObject)item; collection.Add(newItem); } - private void VectorAdd_85_IList(object instance, object item) + private void VectorAdd_93_IList(object instance, object item) { var collection = (global::System.Collections.Generic.ICollection)instance; var newItem = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)item; @@ -1012,24 +1030,49 @@ private void VectorAdd_85_IList(object instance, object item) xamlType = userType; break; - case 70: // Saku_Overclock.Views.ИнформацияPage + case 70: // Microsoft.UI.Xaml.Controls.Expander + userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.Controls.ContentControl")); + userType.Activator = Activate_70_Expander; + userType.AddMemberName("Header"); + userType.AddMemberName("IsExpanded"); + userType.AddMemberName("ExpandDirection"); + userType.AddMemberName("HeaderTemplate"); + userType.AddMemberName("HeaderTemplateSelector"); + userType.AddMemberName("TemplateSettings"); + xamlType = userType; + break; + + case 71: // Microsoft.UI.Xaml.Controls.ExpandDirection + userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("System.Enum")); + userType.AddEnumValue("Down", global::Microsoft.UI.Xaml.Controls.ExpandDirection.Down); + userType.AddEnumValue("Up", global::Microsoft.UI.Xaml.Controls.ExpandDirection.Up); + xamlType = userType; + break; + + case 72: // Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings + userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.DependencyObject")); + userType.SetIsReturnTypeStub(); + xamlType = userType; + break; + + case 73: // Saku_Overclock.Views.ИнформацияPage userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Page")); - userType.Activator = Activate_70_ИнформацияPage; + userType.Activator = Activate_73_ИнформацияPage; userType.AddMemberName("ViewModel"); userType.SetIsLocalType(); xamlType = userType; break; - case 71: // Saku_Overclock.ViewModels.ИнформацияViewModel + case 74: // Saku_Overclock.ViewModels.ИнформацияViewModel userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("CommunityToolkit.Mvvm.ComponentModel.ObservableRecipient")); userType.SetIsReturnTypeStub(); userType.SetIsLocalType(); xamlType = userType; break; - case 72: // Microsoft.UI.Xaml.Controls.ProgressBar + case 75: // Microsoft.UI.Xaml.Controls.ProgressBar userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Primitives.RangeBase")); - userType.Activator = Activate_72_ProgressBar; + userType.Activator = Activate_75_ProgressBar; userType.AddMemberName("IsIndeterminate"); userType.AddMemberName("ShowError"); userType.AddMemberName("ShowPaused"); @@ -1037,89 +1080,146 @@ private void VectorAdd_85_IList(object instance, object item) xamlType = userType; break; - case 73: // Microsoft.UI.Xaml.Controls.Primitives.RangeBase + case 76: // Microsoft.UI.Xaml.Controls.Primitives.RangeBase xamlType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlSystemBaseType(typeName, type); break; - case 74: // Microsoft.UI.Xaml.Controls.ProgressBarTemplateSettings + case 77: // Microsoft.UI.Xaml.Controls.ProgressBarTemplateSettings userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.DependencyObject")); userType.SetIsReturnTypeStub(); xamlType = userType; break; - case 75: // Saku_Overclock.Views.КулерPage + case 78: // Saku_Overclock.Views.КулерPage userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Page")); - userType.Activator = Activate_75_КулерPage; + userType.Activator = Activate_78_КулерPage; userType.AddMemberName("ViewModel"); userType.SetIsLocalType(); xamlType = userType; break; - case 76: // Saku_Overclock.ViewModels.КулерViewModel + case 79: // Saku_Overclock.ViewModels.КулерViewModel userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("CommunityToolkit.Mvvm.ComponentModel.ObservableRecipient")); userType.SetIsReturnTypeStub(); userType.SetIsLocalType(); xamlType = userType; break; - case 77: // Microsoft.UI.Xaml.Controls.Expander + case 80: // Microsoft.UI.Xaml.Controls.TeachingTip userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.Controls.ContentControl")); - userType.Activator = Activate_77_Expander; - userType.AddMemberName("IsExpanded"); - userType.AddMemberName("Header"); - userType.AddMemberName("ExpandDirection"); - userType.AddMemberName("HeaderTemplate"); - userType.AddMemberName("HeaderTemplateSelector"); + userType.Activator = Activate_80_TeachingTip; + userType.AddMemberName("IsOpen"); + userType.AddMemberName("Title"); + userType.AddMemberName("Subtitle"); + userType.AddMemberName("IconSource"); + userType.AddMemberName("ActionButtonCommand"); + userType.AddMemberName("ActionButtonCommandParameter"); + userType.AddMemberName("ActionButtonContent"); + userType.AddMemberName("ActionButtonStyle"); + userType.AddMemberName("CloseButtonCommand"); + userType.AddMemberName("CloseButtonCommandParameter"); + userType.AddMemberName("CloseButtonContent"); + userType.AddMemberName("CloseButtonStyle"); + userType.AddMemberName("HeroContent"); + userType.AddMemberName("HeroContentPlacement"); + userType.AddMemberName("IsLightDismissEnabled"); + userType.AddMemberName("PlacementMargin"); + userType.AddMemberName("PreferredPlacement"); + userType.AddMemberName("ShouldConstrainToRootBounds"); + userType.AddMemberName("TailVisibility"); + userType.AddMemberName("Target"); userType.AddMemberName("TemplateSettings"); xamlType = userType; break; - case 78: // Microsoft.UI.Xaml.Controls.ExpandDirection + case 81: // Microsoft.UI.Xaml.Controls.IconSource + xamlType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlSystemBaseType(typeName, type); + break; + + case 82: // System.Windows.Input.ICommand + userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, null); + userType.SetIsReturnTypeStub(); + xamlType = userType; + break; + + case 83: // Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("System.Enum")); - userType.AddEnumValue("Down", global::Microsoft.UI.Xaml.Controls.ExpandDirection.Down); - userType.AddEnumValue("Up", global::Microsoft.UI.Xaml.Controls.ExpandDirection.Up); + userType.AddEnumValue("Auto", global::Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode.Auto); + userType.AddEnumValue("Top", global::Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode.Top); + userType.AddEnumValue("Bottom", global::Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode.Bottom); + xamlType = userType; + break; + + case 84: // Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode + userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("System.Enum")); + userType.AddEnumValue("Auto", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.Auto); + userType.AddEnumValue("Top", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.Top); + userType.AddEnumValue("Bottom", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.Bottom); + userType.AddEnumValue("Left", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.Left); + userType.AddEnumValue("Right", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.Right); + userType.AddEnumValue("TopRight", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.TopRight); + userType.AddEnumValue("TopLeft", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.TopLeft); + userType.AddEnumValue("BottomRight", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.BottomRight); + userType.AddEnumValue("BottomLeft", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.BottomLeft); + userType.AddEnumValue("LeftTop", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.LeftTop); + userType.AddEnumValue("LeftBottom", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.LeftBottom); + userType.AddEnumValue("RightTop", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.RightTop); + userType.AddEnumValue("RightBottom", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.RightBottom); + userType.AddEnumValue("Center", global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode.Center); + xamlType = userType; + break; + + case 85: // Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility + userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("System.Enum")); + userType.AddEnumValue("Auto", global::Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility.Auto); + userType.AddEnumValue("Visible", global::Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility.Visible); + userType.AddEnumValue("Collapsed", global::Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility.Collapsed); xamlType = userType; break; - case 79: // Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings + case 86: // Microsoft.UI.Xaml.FrameworkElement + xamlType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlSystemBaseType(typeName, type); + break; + + case 87: // Microsoft.UI.Xaml.Controls.TeachingTipTemplateSettings userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.DependencyObject")); userType.SetIsReturnTypeStub(); xamlType = userType; break; - case 80: // Saku_Overclock.Views.ПараметрыPage + case 88: // Saku_Overclock.Views.ПараметрыPage userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Page")); - userType.Activator = Activate_80_ПараметрыPage; + userType.Activator = Activate_88_ПараметрыPage; userType.AddMemberName("ViewModel"); userType.SetIsLocalType(); xamlType = userType; break; - case 81: // Saku_Overclock.ViewModels.ПараметрыViewModel + case 89: // Saku_Overclock.ViewModels.ПараметрыViewModel userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("CommunityToolkit.Mvvm.ComponentModel.ObservableRecipient")); userType.SetIsReturnTypeStub(); userType.SetIsLocalType(); xamlType = userType; break; - case 82: // Saku_Overclock.Views.ПресетыPage + case 90: // Saku_Overclock.Views.ПресетыPage userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Page")); - userType.Activator = Activate_82_ПресетыPage; + userType.Activator = Activate_90_ПресетыPage; userType.AddMemberName("ViewModel"); userType.SetIsLocalType(); xamlType = userType; break; - case 83: // Saku_Overclock.ViewModels.ПресетыViewModel + case 91: // Saku_Overclock.ViewModels.ПресетыViewModel userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("CommunityToolkit.Mvvm.ComponentModel.ObservableRecipient")); userType.SetIsReturnTypeStub(); userType.SetIsLocalType(); xamlType = userType; break; - case 84: // Microsoft.UI.Xaml.Controls.TreeViewNode + case 92: // Microsoft.UI.Xaml.Controls.TreeViewNode userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Microsoft.UI.Xaml.DependencyObject")); - userType.Activator = Activate_84_TreeViewNode; + userType.Activator = Activate_92_TreeViewNode; userType.AddMemberName("Children"); userType.AddMemberName("Content"); userType.AddMemberName("Depth"); @@ -1131,14 +1231,14 @@ private void VectorAdd_85_IList(object instance, object item) xamlType = userType; break; - case 85: // System.Collections.Generic.IList`1 + case 93: // System.Collections.Generic.IList`1 userType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType(this, typeName, type, null); - userType.CollectionAdd = VectorAdd_85_IList; + userType.CollectionAdd = VectorAdd_93_IList; userType.SetIsReturnTypeStub(); xamlType = userType; break; - case 86: // Int32 + case 94: // Int32 xamlType = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlSystemBaseType(typeName, type); break; } @@ -2217,162 +2317,367 @@ private object get_108_ГлавнаяPage_ViewModel(object instance) var that = (global::Saku_Overclock.Views.ГлавнаяPage)instance; return that.ViewModel; } - private object get_109_ИнформацияPage_ViewModel(object instance) + private object get_109_Expander_Header(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + return that.Header; + } + private void set_109_Expander_Header(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + that.Header = (global::System.Object)Value; + } + private object get_110_Expander_IsExpanded(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + return that.IsExpanded; + } + private void set_110_Expander_IsExpanded(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + that.IsExpanded = (global::System.Boolean)Value; + } + private object get_111_Expander_ExpandDirection(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + return that.ExpandDirection; + } + private void set_111_Expander_ExpandDirection(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + that.ExpandDirection = (global::Microsoft.UI.Xaml.Controls.ExpandDirection)Value; + } + private object get_112_Expander_HeaderTemplate(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + return that.HeaderTemplate; + } + private void set_112_Expander_HeaderTemplate(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + that.HeaderTemplate = (global::Microsoft.UI.Xaml.DataTemplate)Value; + } + private object get_113_Expander_HeaderTemplateSelector(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + return that.HeaderTemplateSelector; + } + private void set_113_Expander_HeaderTemplateSelector(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + that.HeaderTemplateSelector = (global::Microsoft.UI.Xaml.Controls.DataTemplateSelector)Value; + } + private object get_114_Expander_TemplateSettings(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + return that.TemplateSettings; + } + private object get_115_ИнформацияPage_ViewModel(object instance) { var that = (global::Saku_Overclock.Views.ИнформацияPage)instance; return that.ViewModel; } - private object get_110_ProgressBar_IsIndeterminate(object instance) + private object get_116_ProgressBar_IsIndeterminate(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.ProgressBar)instance; return that.IsIndeterminate; } - private void set_110_ProgressBar_IsIndeterminate(object instance, object Value) + private void set_116_ProgressBar_IsIndeterminate(object instance, object Value) { var that = (global::Microsoft.UI.Xaml.Controls.ProgressBar)instance; that.IsIndeterminate = (global::System.Boolean)Value; } - private object get_111_ProgressBar_ShowError(object instance) + private object get_117_ProgressBar_ShowError(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.ProgressBar)instance; return that.ShowError; } - private void set_111_ProgressBar_ShowError(object instance, object Value) + private void set_117_ProgressBar_ShowError(object instance, object Value) { var that = (global::Microsoft.UI.Xaml.Controls.ProgressBar)instance; that.ShowError = (global::System.Boolean)Value; } - private object get_112_ProgressBar_ShowPaused(object instance) + private object get_118_ProgressBar_ShowPaused(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.ProgressBar)instance; return that.ShowPaused; } - private void set_112_ProgressBar_ShowPaused(object instance, object Value) + private void set_118_ProgressBar_ShowPaused(object instance, object Value) { var that = (global::Microsoft.UI.Xaml.Controls.ProgressBar)instance; that.ShowPaused = (global::System.Boolean)Value; } - private object get_113_ProgressBar_TemplateSettings(object instance) + private object get_119_ProgressBar_TemplateSettings(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.ProgressBar)instance; return that.TemplateSettings; } - private object get_114_КулерPage_ViewModel(object instance) + private object get_120_КулерPage_ViewModel(object instance) { var that = (global::Saku_Overclock.Views.КулерPage)instance; return that.ViewModel; } - private object get_115_Expander_IsExpanded(object instance) + private object get_121_TeachingTip_IsOpen(object instance) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - return that.IsExpanded; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.IsOpen; } - private void set_115_Expander_IsExpanded(object instance, object Value) + private void set_121_TeachingTip_IsOpen(object instance, object Value) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - that.IsExpanded = (global::System.Boolean)Value; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.IsOpen = (global::System.Boolean)Value; } - private object get_116_Expander_Header(object instance) + private object get_122_TeachingTip_Title(object instance) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - return that.Header; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.Title; } - private void set_116_Expander_Header(object instance, object Value) + private void set_122_TeachingTip_Title(object instance, object Value) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - that.Header = (global::System.Object)Value; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.Title = (global::System.String)Value; } - private object get_117_Expander_ExpandDirection(object instance) + private object get_123_TeachingTip_Subtitle(object instance) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - return that.ExpandDirection; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.Subtitle; } - private void set_117_Expander_ExpandDirection(object instance, object Value) + private void set_123_TeachingTip_Subtitle(object instance, object Value) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - that.ExpandDirection = (global::Microsoft.UI.Xaml.Controls.ExpandDirection)Value; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.Subtitle = (global::System.String)Value; } - private object get_118_Expander_HeaderTemplate(object instance) + private object get_124_TeachingTip_IconSource(object instance) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - return that.HeaderTemplate; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.IconSource; } - private void set_118_Expander_HeaderTemplate(object instance, object Value) + private void set_124_TeachingTip_IconSource(object instance, object Value) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - that.HeaderTemplate = (global::Microsoft.UI.Xaml.DataTemplate)Value; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.IconSource = (global::Microsoft.UI.Xaml.Controls.IconSource)Value; } - private object get_119_Expander_HeaderTemplateSelector(object instance) + private object get_125_TeachingTip_ActionButtonCommand(object instance) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - return that.HeaderTemplateSelector; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.ActionButtonCommand; } - private void set_119_Expander_HeaderTemplateSelector(object instance, object Value) + private void set_125_TeachingTip_ActionButtonCommand(object instance, object Value) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; - that.HeaderTemplateSelector = (global::Microsoft.UI.Xaml.Controls.DataTemplateSelector)Value; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.ActionButtonCommand = (global::System.Windows.Input.ICommand)Value; } - private object get_120_Expander_TemplateSettings(object instance) + private object get_126_TeachingTip_ActionButtonCommandParameter(object instance) { - var that = (global::Microsoft.UI.Xaml.Controls.Expander)instance; + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.ActionButtonCommandParameter; + } + private void set_126_TeachingTip_ActionButtonCommandParameter(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.ActionButtonCommandParameter = (global::System.Object)Value; + } + private object get_127_TeachingTip_ActionButtonContent(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.ActionButtonContent; + } + private void set_127_TeachingTip_ActionButtonContent(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.ActionButtonContent = (global::System.Object)Value; + } + private object get_128_TeachingTip_ActionButtonStyle(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.ActionButtonStyle; + } + private void set_128_TeachingTip_ActionButtonStyle(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.ActionButtonStyle = (global::Microsoft.UI.Xaml.Style)Value; + } + private object get_129_TeachingTip_CloseButtonCommand(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.CloseButtonCommand; + } + private void set_129_TeachingTip_CloseButtonCommand(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.CloseButtonCommand = (global::System.Windows.Input.ICommand)Value; + } + private object get_130_TeachingTip_CloseButtonCommandParameter(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.CloseButtonCommandParameter; + } + private void set_130_TeachingTip_CloseButtonCommandParameter(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.CloseButtonCommandParameter = (global::System.Object)Value; + } + private object get_131_TeachingTip_CloseButtonContent(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.CloseButtonContent; + } + private void set_131_TeachingTip_CloseButtonContent(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.CloseButtonContent = (global::System.Object)Value; + } + private object get_132_TeachingTip_CloseButtonStyle(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.CloseButtonStyle; + } + private void set_132_TeachingTip_CloseButtonStyle(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.CloseButtonStyle = (global::Microsoft.UI.Xaml.Style)Value; + } + private object get_133_TeachingTip_HeroContent(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.HeroContent; + } + private void set_133_TeachingTip_HeroContent(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.HeroContent = (global::Microsoft.UI.Xaml.UIElement)Value; + } + private object get_134_TeachingTip_HeroContentPlacement(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.HeroContentPlacement; + } + private void set_134_TeachingTip_HeroContentPlacement(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.HeroContentPlacement = (global::Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode)Value; + } + private object get_135_TeachingTip_IsLightDismissEnabled(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.IsLightDismissEnabled; + } + private void set_135_TeachingTip_IsLightDismissEnabled(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.IsLightDismissEnabled = (global::System.Boolean)Value; + } + private object get_136_TeachingTip_PlacementMargin(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.PlacementMargin; + } + private void set_136_TeachingTip_PlacementMargin(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.PlacementMargin = (global::Microsoft.UI.Xaml.Thickness)Value; + } + private object get_137_TeachingTip_PreferredPlacement(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.PreferredPlacement; + } + private void set_137_TeachingTip_PreferredPlacement(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.PreferredPlacement = (global::Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode)Value; + } + private object get_138_TeachingTip_ShouldConstrainToRootBounds(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.ShouldConstrainToRootBounds; + } + private void set_138_TeachingTip_ShouldConstrainToRootBounds(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.ShouldConstrainToRootBounds = (global::System.Boolean)Value; + } + private object get_139_TeachingTip_TailVisibility(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.TailVisibility; + } + private void set_139_TeachingTip_TailVisibility(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.TailVisibility = (global::Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility)Value; + } + private object get_140_TeachingTip_Target(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + return that.Target; + } + private void set_140_TeachingTip_Target(object instance, object Value) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; + that.Target = (global::Microsoft.UI.Xaml.FrameworkElement)Value; + } + private object get_141_TeachingTip_TemplateSettings(object instance) + { + var that = (global::Microsoft.UI.Xaml.Controls.TeachingTip)instance; return that.TemplateSettings; } - private object get_121_ПараметрыPage_ViewModel(object instance) + private object get_142_ПараметрыPage_ViewModel(object instance) { var that = (global::Saku_Overclock.Views.ПараметрыPage)instance; return that.ViewModel; } - private object get_122_ПресетыPage_ViewModel(object instance) + private object get_143_ПресетыPage_ViewModel(object instance) { var that = (global::Saku_Overclock.Views.ПресетыPage)instance; return that.ViewModel; } - private object get_123_TreeViewNode_Children(object instance) + private object get_144_TreeViewNode_Children(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; return that.Children; } - private object get_124_TreeViewNode_Content(object instance) + private object get_145_TreeViewNode_Content(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; return that.Content; } - private void set_124_TreeViewNode_Content(object instance, object Value) + private void set_145_TreeViewNode_Content(object instance, object Value) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; that.Content = (global::System.Object)Value; } - private object get_125_TreeViewNode_Depth(object instance) + private object get_146_TreeViewNode_Depth(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; return that.Depth; } - private object get_126_TreeViewNode_HasChildren(object instance) + private object get_147_TreeViewNode_HasChildren(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; return that.HasChildren; } - private object get_127_TreeViewNode_HasUnrealizedChildren(object instance) + private object get_148_TreeViewNode_HasUnrealizedChildren(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; return that.HasUnrealizedChildren; } - private void set_127_TreeViewNode_HasUnrealizedChildren(object instance, object Value) + private void set_148_TreeViewNode_HasUnrealizedChildren(object instance, object Value) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; that.HasUnrealizedChildren = (global::System.Boolean)Value; } - private object get_128_TreeViewNode_IsExpanded(object instance) + private object get_149_TreeViewNode_IsExpanded(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; return that.IsExpanded; } - private void set_128_TreeViewNode_IsExpanded(object instance, object Value) + private void set_149_TreeViewNode_IsExpanded(object instance, object Value) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; that.IsExpanded = (global::System.Boolean)Value; } - private object get_129_TreeViewNode_Parent(object instance) + private object get_150_TreeViewNode_Parent(object instance) { var that = (global::Microsoft.UI.Xaml.Controls.TreeViewNode)instance; return that.Parent; @@ -3121,142 +3426,289 @@ private object get_129_TreeViewNode_Parent(object instance) xamlMember.Getter = get_108_ГлавнаяPage_ViewModel; xamlMember.SetIsReadOnly(); break; + case "Microsoft.UI.Xaml.Controls.Expander.Header": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Header", "Object"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_109_Expander_Header; + xamlMember.Setter = set_109_Expander_Header; + break; + case "Microsoft.UI.Xaml.Controls.Expander.IsExpanded": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "IsExpanded", "Boolean"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_110_Expander_IsExpanded; + xamlMember.Setter = set_110_Expander_IsExpanded; + break; + case "Microsoft.UI.Xaml.Controls.Expander.ExpandDirection": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ExpandDirection", "Microsoft.UI.Xaml.Controls.ExpandDirection"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_111_Expander_ExpandDirection; + xamlMember.Setter = set_111_Expander_ExpandDirection; + break; + case "Microsoft.UI.Xaml.Controls.Expander.HeaderTemplate": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HeaderTemplate", "Microsoft.UI.Xaml.DataTemplate"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_112_Expander_HeaderTemplate; + xamlMember.Setter = set_112_Expander_HeaderTemplate; + break; + case "Microsoft.UI.Xaml.Controls.Expander.HeaderTemplateSelector": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HeaderTemplateSelector", "Microsoft.UI.Xaml.Controls.DataTemplateSelector"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_113_Expander_HeaderTemplateSelector; + xamlMember.Setter = set_113_Expander_HeaderTemplateSelector; + break; + case "Microsoft.UI.Xaml.Controls.Expander.TemplateSettings": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "TemplateSettings", "Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings"); + xamlMember.Getter = get_114_Expander_TemplateSettings; + xamlMember.SetIsReadOnly(); + break; case "Saku_Overclock.Views.ИнформацияPage.ViewModel": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Saku_Overclock.Views.ИнформацияPage"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ViewModel", "Saku_Overclock.ViewModels.ИнформацияViewModel"); - xamlMember.Getter = get_109_ИнформацияPage_ViewModel; + xamlMember.Getter = get_115_ИнформацияPage_ViewModel; xamlMember.SetIsReadOnly(); break; case "Microsoft.UI.Xaml.Controls.ProgressBar.IsIndeterminate": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.ProgressBar"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "IsIndeterminate", "Boolean"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_110_ProgressBar_IsIndeterminate; - xamlMember.Setter = set_110_ProgressBar_IsIndeterminate; + xamlMember.Getter = get_116_ProgressBar_IsIndeterminate; + xamlMember.Setter = set_116_ProgressBar_IsIndeterminate; break; case "Microsoft.UI.Xaml.Controls.ProgressBar.ShowError": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.ProgressBar"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ShowError", "Boolean"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_111_ProgressBar_ShowError; - xamlMember.Setter = set_111_ProgressBar_ShowError; + xamlMember.Getter = get_117_ProgressBar_ShowError; + xamlMember.Setter = set_117_ProgressBar_ShowError; break; case "Microsoft.UI.Xaml.Controls.ProgressBar.ShowPaused": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.ProgressBar"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ShowPaused", "Boolean"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_112_ProgressBar_ShowPaused; - xamlMember.Setter = set_112_ProgressBar_ShowPaused; + xamlMember.Getter = get_118_ProgressBar_ShowPaused; + xamlMember.Setter = set_118_ProgressBar_ShowPaused; break; case "Microsoft.UI.Xaml.Controls.ProgressBar.TemplateSettings": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.ProgressBar"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "TemplateSettings", "Microsoft.UI.Xaml.Controls.ProgressBarTemplateSettings"); - xamlMember.Getter = get_113_ProgressBar_TemplateSettings; + xamlMember.Getter = get_119_ProgressBar_TemplateSettings; xamlMember.SetIsReadOnly(); break; case "Saku_Overclock.Views.КулерPage.ViewModel": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Saku_Overclock.Views.КулерPage"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ViewModel", "Saku_Overclock.ViewModels.КулерViewModel"); - xamlMember.Getter = get_114_КулерPage_ViewModel; + xamlMember.Getter = get_120_КулерPage_ViewModel; xamlMember.SetIsReadOnly(); break; - case "Microsoft.UI.Xaml.Controls.Expander.IsExpanded": - userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); - xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "IsExpanded", "Boolean"); + case "Microsoft.UI.Xaml.Controls.TeachingTip.IsOpen": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "IsOpen", "Boolean"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_115_Expander_IsExpanded; - xamlMember.Setter = set_115_Expander_IsExpanded; + xamlMember.Getter = get_121_TeachingTip_IsOpen; + xamlMember.Setter = set_121_TeachingTip_IsOpen; break; - case "Microsoft.UI.Xaml.Controls.Expander.Header": - userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); - xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Header", "Object"); + case "Microsoft.UI.Xaml.Controls.TeachingTip.Title": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Title", "String"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_116_Expander_Header; - xamlMember.Setter = set_116_Expander_Header; + xamlMember.Getter = get_122_TeachingTip_Title; + xamlMember.Setter = set_122_TeachingTip_Title; break; - case "Microsoft.UI.Xaml.Controls.Expander.ExpandDirection": - userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); - xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ExpandDirection", "Microsoft.UI.Xaml.Controls.ExpandDirection"); + case "Microsoft.UI.Xaml.Controls.TeachingTip.Subtitle": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Subtitle", "String"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_117_Expander_ExpandDirection; - xamlMember.Setter = set_117_Expander_ExpandDirection; + xamlMember.Getter = get_123_TeachingTip_Subtitle; + xamlMember.Setter = set_123_TeachingTip_Subtitle; break; - case "Microsoft.UI.Xaml.Controls.Expander.HeaderTemplate": - userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); - xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HeaderTemplate", "Microsoft.UI.Xaml.DataTemplate"); + case "Microsoft.UI.Xaml.Controls.TeachingTip.IconSource": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "IconSource", "Microsoft.UI.Xaml.Controls.IconSource"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_118_Expander_HeaderTemplate; - xamlMember.Setter = set_118_Expander_HeaderTemplate; + xamlMember.Getter = get_124_TeachingTip_IconSource; + xamlMember.Setter = set_124_TeachingTip_IconSource; break; - case "Microsoft.UI.Xaml.Controls.Expander.HeaderTemplateSelector": - userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); - xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HeaderTemplateSelector", "Microsoft.UI.Xaml.Controls.DataTemplateSelector"); + case "Microsoft.UI.Xaml.Controls.TeachingTip.ActionButtonCommand": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ActionButtonCommand", "System.Windows.Input.ICommand"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_119_Expander_HeaderTemplateSelector; - xamlMember.Setter = set_119_Expander_HeaderTemplateSelector; + xamlMember.Getter = get_125_TeachingTip_ActionButtonCommand; + xamlMember.Setter = set_125_TeachingTip_ActionButtonCommand; break; - case "Microsoft.UI.Xaml.Controls.Expander.TemplateSettings": - userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.Expander"); - xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "TemplateSettings", "Microsoft.UI.Xaml.Controls.ExpanderTemplateSettings"); - xamlMember.Getter = get_120_Expander_TemplateSettings; + case "Microsoft.UI.Xaml.Controls.TeachingTip.ActionButtonCommandParameter": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ActionButtonCommandParameter", "Object"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_126_TeachingTip_ActionButtonCommandParameter; + xamlMember.Setter = set_126_TeachingTip_ActionButtonCommandParameter; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.ActionButtonContent": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ActionButtonContent", "Object"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_127_TeachingTip_ActionButtonContent; + xamlMember.Setter = set_127_TeachingTip_ActionButtonContent; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.ActionButtonStyle": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ActionButtonStyle", "Microsoft.UI.Xaml.Style"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_128_TeachingTip_ActionButtonStyle; + xamlMember.Setter = set_128_TeachingTip_ActionButtonStyle; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.CloseButtonCommand": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "CloseButtonCommand", "System.Windows.Input.ICommand"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_129_TeachingTip_CloseButtonCommand; + xamlMember.Setter = set_129_TeachingTip_CloseButtonCommand; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.CloseButtonCommandParameter": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "CloseButtonCommandParameter", "Object"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_130_TeachingTip_CloseButtonCommandParameter; + xamlMember.Setter = set_130_TeachingTip_CloseButtonCommandParameter; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.CloseButtonContent": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "CloseButtonContent", "Object"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_131_TeachingTip_CloseButtonContent; + xamlMember.Setter = set_131_TeachingTip_CloseButtonContent; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.CloseButtonStyle": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "CloseButtonStyle", "Microsoft.UI.Xaml.Style"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_132_TeachingTip_CloseButtonStyle; + xamlMember.Setter = set_132_TeachingTip_CloseButtonStyle; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.HeroContent": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HeroContent", "Microsoft.UI.Xaml.UIElement"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_133_TeachingTip_HeroContent; + xamlMember.Setter = set_133_TeachingTip_HeroContent; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.HeroContentPlacement": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HeroContentPlacement", "Microsoft.UI.Xaml.Controls.TeachingTipHeroContentPlacementMode"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_134_TeachingTip_HeroContentPlacement; + xamlMember.Setter = set_134_TeachingTip_HeroContentPlacement; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.IsLightDismissEnabled": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "IsLightDismissEnabled", "Boolean"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_135_TeachingTip_IsLightDismissEnabled; + xamlMember.Setter = set_135_TeachingTip_IsLightDismissEnabled; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.PlacementMargin": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "PlacementMargin", "Microsoft.UI.Xaml.Thickness"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_136_TeachingTip_PlacementMargin; + xamlMember.Setter = set_136_TeachingTip_PlacementMargin; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.PreferredPlacement": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "PreferredPlacement", "Microsoft.UI.Xaml.Controls.TeachingTipPlacementMode"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_137_TeachingTip_PreferredPlacement; + xamlMember.Setter = set_137_TeachingTip_PreferredPlacement; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.ShouldConstrainToRootBounds": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ShouldConstrainToRootBounds", "Boolean"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_138_TeachingTip_ShouldConstrainToRootBounds; + xamlMember.Setter = set_138_TeachingTip_ShouldConstrainToRootBounds; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.TailVisibility": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "TailVisibility", "Microsoft.UI.Xaml.Controls.TeachingTipTailVisibility"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_139_TeachingTip_TailVisibility; + xamlMember.Setter = set_139_TeachingTip_TailVisibility; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.Target": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Target", "Microsoft.UI.Xaml.FrameworkElement"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_140_TeachingTip_Target; + xamlMember.Setter = set_140_TeachingTip_Target; + break; + case "Microsoft.UI.Xaml.Controls.TeachingTip.TemplateSettings": + userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TeachingTip"); + xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "TemplateSettings", "Microsoft.UI.Xaml.Controls.TeachingTipTemplateSettings"); + xamlMember.SetIsDependencyProperty(); + xamlMember.Getter = get_141_TeachingTip_TemplateSettings; xamlMember.SetIsReadOnly(); break; case "Saku_Overclock.Views.ПараметрыPage.ViewModel": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Saku_Overclock.Views.ПараметрыPage"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ViewModel", "Saku_Overclock.ViewModels.ПараметрыViewModel"); - xamlMember.Getter = get_121_ПараметрыPage_ViewModel; + xamlMember.Getter = get_142_ПараметрыPage_ViewModel; xamlMember.SetIsReadOnly(); break; case "Saku_Overclock.Views.ПресетыPage.ViewModel": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Saku_Overclock.Views.ПресетыPage"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "ViewModel", "Saku_Overclock.ViewModels.ПресетыViewModel"); - xamlMember.Getter = get_122_ПресетыPage_ViewModel; + xamlMember.Getter = get_143_ПресетыPage_ViewModel; xamlMember.SetIsReadOnly(); break; case "Microsoft.UI.Xaml.Controls.TreeViewNode.Children": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TreeViewNode"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Children", "System.Collections.Generic.IList`1"); - xamlMember.Getter = get_123_TreeViewNode_Children; + xamlMember.Getter = get_144_TreeViewNode_Children; xamlMember.SetIsReadOnly(); break; case "Microsoft.UI.Xaml.Controls.TreeViewNode.Content": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TreeViewNode"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Content", "Object"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_124_TreeViewNode_Content; - xamlMember.Setter = set_124_TreeViewNode_Content; + xamlMember.Getter = get_145_TreeViewNode_Content; + xamlMember.Setter = set_145_TreeViewNode_Content; break; case "Microsoft.UI.Xaml.Controls.TreeViewNode.Depth": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TreeViewNode"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Depth", "Int32"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_125_TreeViewNode_Depth; + xamlMember.Getter = get_146_TreeViewNode_Depth; xamlMember.SetIsReadOnly(); break; case "Microsoft.UI.Xaml.Controls.TreeViewNode.HasChildren": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TreeViewNode"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HasChildren", "Boolean"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_126_TreeViewNode_HasChildren; + xamlMember.Getter = get_147_TreeViewNode_HasChildren; xamlMember.SetIsReadOnly(); break; case "Microsoft.UI.Xaml.Controls.TreeViewNode.HasUnrealizedChildren": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TreeViewNode"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "HasUnrealizedChildren", "Boolean"); - xamlMember.Getter = get_127_TreeViewNode_HasUnrealizedChildren; - xamlMember.Setter = set_127_TreeViewNode_HasUnrealizedChildren; + xamlMember.Getter = get_148_TreeViewNode_HasUnrealizedChildren; + xamlMember.Setter = set_148_TreeViewNode_HasUnrealizedChildren; break; case "Microsoft.UI.Xaml.Controls.TreeViewNode.IsExpanded": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TreeViewNode"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "IsExpanded", "Boolean"); xamlMember.SetIsDependencyProperty(); - xamlMember.Getter = get_128_TreeViewNode_IsExpanded; - xamlMember.Setter = set_128_TreeViewNode_IsExpanded; + xamlMember.Getter = get_149_TreeViewNode_IsExpanded; + xamlMember.Setter = set_149_TreeViewNode_IsExpanded; break; case "Microsoft.UI.Xaml.Controls.TreeViewNode.Parent": userType = (global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlUserType)GetXamlTypeByName("Microsoft.UI.Xaml.Controls.TreeViewNode"); xamlMember = new global::Saku_Overclock.Saku_Overclock_XamlTypeInfo.XamlMember(this, "Parent", "Microsoft.UI.Xaml.Controls.TreeViewNode"); - xamlMember.Getter = get_129_TreeViewNode_Parent; + xamlMember.Getter = get_150_TreeViewNode_Parent; xamlMember.SetIsReadOnly(); break; } diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/_pkginfo.txt b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/_pkginfo.txt index e9b3441..5b95e7e 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/_pkginfo.txt +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/_pkginfo.txt @@ -1 +1 @@ -C:\Users\Sakura\Downloads\Saku Overclock_1.0.5.0_x64_Debug_Test\Saku Overclock_1.0.5.0_x64_Debug.msix +C:\Users\Sakura\Downloads\Saku Overclock_1.0.6.0_x64_Debug_Test\Saku Overclock_1.0.6.0_x64_Debug.msix diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/apphost.exe b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/apphost.exe index a2c4e41..e928f72 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/apphost.exe and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/apphost.exe differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/MainWindow.xbf b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/MainWindow.xbf index 5b04ba0..ed07e9a 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/MainWindow.xbf and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/MainWindow.xbf differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/SettingsPage.xbf b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/SettingsPage.xbf index b2a9a59..9b03310 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/SettingsPage.xbf and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/SettingsPage.xbf differ diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" index 53a6388..d4a7272 100644 Binary files "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" and "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\223\320\273\320\260\320\262\320\275\320\260\321\217Page.xbf" differ diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" index 9a641b8..33c130e 100644 Binary files "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" and "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217Page.xbf" differ diff --git "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" index 77c5515..5728684 100644 Binary files "a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" and "b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/embed/Views/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\321\213Page.xbf" differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.dll index a344ca0..e57257d 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.dll and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.pdb b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.pdb index d214b38..89cd0ae 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.pdb and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/intermediatexaml/Saku Overclock.pdb differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/package.map.txt b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/package.map.txt index 18dace1..c9252c3 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/package.map.txt +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/package.map.txt @@ -737,6 +737,7 @@ "C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactions.dll" "Microsoft.Xaml.Interactions.dll" "C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactivity.dll" "Microsoft.Xaml.Interactivity.dll" "C:\Users\Sakura\.nuget\packages\newtonsoft.json\13.0.3\lib\net6.0\Newtonsoft.Json.dll" "Newtonsoft.Json.dll" +"C:\Users\Sakura\.nuget\packages\openhardwaremonitor\0.9.6\lib\net45\OpenHardwareMonitorLib.dll" "OpenHardwareMonitorLib.dll" "C:\Users\Sakura\.nuget\packages\taskscheduler\2.10.1\lib\net6.0-windows7.0\Microsoft.Win32.TaskScheduler.dll" "Microsoft.Win32.TaskScheduler.dll" "C:\Users\Sakura\.nuget\packages\winuiex\2.3.2\lib\net6.0-windows10.0.18362\WinUIEx.dll" "WinUIEx.dll" "C:\Users\Sakura\.nuget\packages\taskscheduler\2.10.1\lib\net6.0-windows7.0\de\Microsoft.Win32.TaskScheduler.resources.dll" "de\Microsoft.Win32.TaskScheduler.resources.dll" @@ -749,6 +750,8 @@ "C:\Users\Sakura\.nuget\packages\taskscheduler\2.10.1\lib\net6.0-windows7.0\zh-Hant\Microsoft.Win32.TaskScheduler.resources.dll" "zh-Hant\Microsoft.Win32.TaskScheduler.resources.dll" "C:\Users\Sakura\.nuget\packages\microsoft.windowsappsdk\1.4.231008000\runtimes\win10-x64\native\Microsoft.WindowsAppRuntime.Bootstrap.dll" "Microsoft.WindowsAppRuntime.Bootstrap.dll" "C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock.Core\bin\Debug\net7.0\Saku Overclock.Core.dll" "Saku Overclock.Core.dll" +"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.8\System.Management.dll" "System.Management.dll" +"C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\ZenStates-Core.dll" "ZenStates-Core.dll" "C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactions.pri" "Microsoft.Xaml.Interactions.pri" "C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactivity.pri" "Microsoft.Xaml.Interactivity.pri" "C:\Users\Sakura\.nuget\packages\winuiex\2.3.2\lib\net6.0-windows10.0.18362\WinUIEx.pri" "WinUIEx.pri" diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles index 523b748..7df0dc2 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles @@ -1,3 +1,4 @@ C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactions.pri C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactivity.pri C:\Users\Sakura\.nuget\packages\winuiex\2.3.2\lib\net6.0-windows10.0.18362\WinUIEx.pri +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\obj\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\MsixContent\Microsoft.UI.Xaml.Controls.pri diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles.intermediate b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles.intermediate index 523b748..7df0dc2 100644 --- a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles.intermediate +++ b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/pri.resfiles.intermediate @@ -1,3 +1,4 @@ C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactions.pri C:\Users\Sakura\.nuget\packages\microsoft.xaml.behaviors.winui.managed\2.0.9\lib\net5.0-windows10.0.17763.0\Microsoft.Xaml.Interactivity.pri C:\Users\Sakura\.nuget\packages\winuiex\2.3.2\lib\net6.0-windows10.0.18362\WinUIEx.pri +C:\Users\Sakura\source\repos\Saku Overclock\Saku Overclock\obj\x64\Debug\net7.0-windows10.0.19041.0\win10-x64\MsixContent\Microsoft.UI.Xaml.Controls.pri diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ref/Saku Overclock.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ref/Saku Overclock.dll index 2f9dad4..e9e7152 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ref/Saku Overclock.dll and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/ref/Saku Overclock.dll differ diff --git a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/refint/Saku Overclock.dll b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/refint/Saku Overclock.dll index 2f9dad4..e9e7152 100644 Binary files a/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/refint/Saku Overclock.dll and b/Saku Overclock/obj/x64/Debug/net7.0-windows10.0.19041.0/win10-x64/refint/Saku Overclock.dll differ diff --git a/Saku Overclock/profile.cs b/Saku Overclock/profile.cs index f61f9f4..8f6e593 100644 --- a/Saku Overclock/profile.cs +++ b/Saku Overclock/profile.cs @@ -85,6 +85,33 @@ internal class Profile public double g8pr1v; public double g9pr1v; public double g10pr1v; + //ADVANCED config preset 1 + public bool a1pr1; + public bool a2pr1; + public bool a3pr1; + public bool a4pr1; + public bool a5pr1; + public bool a6pr1; + public bool a7pr1; + public bool a8pr1; + public bool a9pr1; + public bool a10pr1; + public bool a11pr1; + public bool a12pr1; + public bool a13pr1; + public double a1pr1v; + public double a2pr1v; + public double a3pr1v; + public double a4pr1v; + public double a5pr1v; + public double a6pr1v; + public double a7pr1v; + public double a8pr1v; + public double a9pr1v; + public double a10pr1v; + public double a11pr1v; + public double a12pr1v; + public int a13pr1v; //Pstates preset 1 public string did0pr1; public string did1pr1; @@ -92,6 +119,9 @@ internal class Profile public string fid0pr1; public string fid1pr1; public string fid2pr1; + public double vid0pr1; + public double vid1pr1; + public double vid2pr1; public bool enablepspr1; public bool turboboostpr1; public bool autopstatepr1; @@ -146,6 +176,33 @@ internal class Profile public double g8pr2v; public double g9pr2v; public double g10pr2v; + //ADVANCED config preset 2 + public bool a1pr2; + public bool a2pr2; + public bool a3pr2; + public bool a4pr2; + public bool a5pr2; + public bool a6pr2; + public bool a7pr2; + public bool a8pr2; + public bool a9pr2; + public bool a10pr2; + public bool a11pr2; + public bool a12pr2; + public bool a13pr2; + public double a1pr2v; + public double a2pr2v; + public double a3pr2v; + public double a4pr2v; + public double a5pr2v; + public double a6pr2v; + public double a7pr2v; + public double a8pr2v; + public double a9pr2v; + public double a10pr2v; + public double a11pr2v; + public double a12pr2v; + public int a13pr2v; //Pstates preset 2 public string did0pr2; public string did1pr2; @@ -153,6 +210,9 @@ internal class Profile public string fid0pr2; public string fid1pr2; public string fid2pr2; + public double vid0pr2; + public double vid1pr2; + public double vid2pr2; public bool enablepspr2; public bool turboboostpr2; public bool autopstatepr2; @@ -207,6 +267,33 @@ internal class Profile public double g8pr3v; public double g9pr3v; public double g10pr3v; + //ADVANCED config preset 3 + public bool a1pr3; + public bool a2pr3; + public bool a3pr3; + public bool a4pr3; + public bool a5pr3; + public bool a6pr3; + public bool a7pr3; + public bool a8pr3; + public bool a9pr3; + public bool a10pr3; + public bool a11pr3; + public bool a12pr3; + public bool a13pr3; + public double a1pr3v; + public double a2pr3v; + public double a3pr3v; + public double a4pr3v; + public double a5pr3v; + public double a6pr3v; + public double a7pr3v; + public double a8pr3v; + public double a9pr3v; + public double a10pr3v; + public double a11pr3v; + public double a12pr3v; + public int a13pr3v; //Pstates preset 3 public string did0pr3; public string did1pr3; @@ -214,6 +301,9 @@ internal class Profile public string fid0pr3; public string fid1pr3; public string fid2pr3; + public double vid0pr3; + public double vid1pr3; + public double vid2pr3; public bool enablepspr3; public bool turboboostpr3; public bool autopstatepr3; @@ -268,6 +358,33 @@ internal class Profile public double g8pr4v; public double g9pr4v; public double g10pr4v; + //ADVANCED config preset 4 + public bool a1pr4; + public bool a2pr4; + public bool a3pr4; + public bool a4pr4; + public bool a5pr4; + public bool a6pr4; + public bool a7pr4; + public bool a8pr4; + public bool a9pr4; + public bool a10pr4; + public bool a11pr4; + public bool a12pr4; + public bool a13pr4; + public double a1pr4v; + public double a2pr4v; + public double a3pr4v; + public double a4pr4v; + public double a5pr4v; + public double a6pr4v; + public double a7pr4v; + public double a8pr4v; + public double a9pr4v; + public double a10pr4v; + public double a11pr4v; + public double a12pr4v; + public int a13pr4v; //Pstates preset 4 public string did0pr4; public string did1pr4; @@ -275,6 +392,9 @@ internal class Profile public string fid0pr4; public string fid1pr4; public string fid2pr4; + public double vid0pr4; + public double vid1pr4; + public double vid2pr4; public bool enablepspr4; public bool turboboostpr4; public bool autopstatepr4; @@ -329,6 +449,33 @@ internal class Profile public double g8pr5v; public double g9pr5v; public double g10pr5v; + //ADVANCED config preset 5 + public bool a1pr5; + public bool a2pr5; + public bool a3pr5; + public bool a4pr5; + public bool a5pr5; + public bool a6pr5; + public bool a7pr5; + public bool a8pr5; + public bool a9pr5; + public bool a10pr5; + public bool a11pr5; + public bool a12pr5; + public bool a13pr5; + public double a1pr5v; + public double a2pr5v; + public double a3pr5v; + public double a4pr5v; + public double a5pr5v; + public double a6pr5v; + public double a7pr5v; + public double a8pr5v; + public double a9pr5v; + public double a10pr5v; + public double a11pr5v; + public double a12pr5v; + public int a13pr5v; //Pstates preset 5 public string did0pr5; public string did1pr5; @@ -336,6 +483,9 @@ internal class Profile public string fid0pr5; public string fid1pr5; public string fid2pr5; + public double vid0pr5; + public double vid1pr5; + public double vid2pr5; public bool enablepspr5; public bool turboboostpr5; public bool autopstatepr5; @@ -390,6 +540,33 @@ internal class Profile public double g8pr6v; public double g9pr6v; public double g10pr6v; + //ADVANCED config preset 6 + public bool a1pr6; + public bool a2pr6; + public bool a3pr6; + public bool a4pr6; + public bool a5pr6; + public bool a6pr6; + public bool a7pr6; + public bool a8pr6; + public bool a9pr6; + public bool a10pr6; + public bool a11pr6; + public bool a12pr6; + public bool a13pr6; + public double a1pr6v; + public double a2pr6v; + public double a3pr6v; + public double a4pr6v; + public double a5pr6v; + public double a6pr6v; + public double a7pr6v; + public double a8pr6v; + public double a9pr6v; + public double a10pr6v; + public double a11pr6v; + public double a12pr6v; + public int a13pr6v; //Pstates preset 6 public string did0pr6; public string did1pr6; @@ -397,6 +574,9 @@ internal class Profile public string fid0pr6; public string fid1pr6; public string fid2pr6; + public double vid0pr6; + public double vid1pr6; + public double vid2pr6; public bool enablepspr6; public bool turboboostpr6; public bool autopstatepr6; @@ -451,6 +631,33 @@ internal class Profile public double g8pr7v; public double g9pr7v; public double g10pr7v; + //ADVANCED config preset 7 + public bool a1pr7; + public bool a2pr7; + public bool a3pr7; + public bool a4pr7; + public bool a5pr7; + public bool a6pr7; + public bool a7pr7; + public bool a8pr7; + public bool a9pr7; + public bool a10pr7; + public bool a11pr7; + public bool a12pr7; + public bool a13pr7; + public double a1pr7v; + public double a2pr7v; + public double a3pr7v; + public double a4pr7v; + public double a5pr7v; + public double a6pr7v; + public double a7pr7v; + public double a8pr7v; + public double a9pr7v; + public double a10pr7v; + public double a11pr7v; + public double a12pr7v; + public int a13pr7v; //Pstates preset 7 public string did0pr7; public string did1pr7; @@ -458,6 +665,9 @@ internal class Profile public string fid0pr7; public string fid1pr7; public string fid2pr7; + public double vid0pr7; + public double vid1pr7; + public double vid2pr7; public bool enablepspr7; public bool turboboostpr7; public bool autopstatepr7; @@ -512,6 +722,33 @@ internal class Profile public double g8pr8v; public double g9pr8v; public double g10pr8v; + //ADVANCED config preset 8 + public bool a1pr8; + public bool a2pr8; + public bool a3pr8; + public bool a4pr8; + public bool a5pr8; + public bool a6pr8; + public bool a7pr8; + public bool a8pr8; + public bool a9pr8; + public bool a10pr8; + public bool a11pr8; + public bool a12pr8; + public bool a13pr8; + public double a1pr8v; + public double a2pr8v; + public double a3pr8v; + public double a4pr8v; + public double a5pr8v; + public double a6pr8v; + public double a7pr8v; + public double a8pr8v; + public double a9pr8v; + public double a10pr8v; + public double a11pr8v; + public double a12pr8v; + public int a13pr8v; //Pstates preset 8 public string did0pr8; public string did1pr8; @@ -519,6 +756,9 @@ internal class Profile public string fid0pr8; public string fid1pr8; public string fid2pr8; + public double vid0pr8; + public double vid1pr8; + public double vid2pr8; public bool enablepspr8; public bool turboboostpr8; public bool autopstatepr8; @@ -573,13 +813,43 @@ internal class Profile public double g8pr9v; public double g9pr9v; public double g10pr9v; - //Pstates preset 1 + //ADVANCED config preset 9 + public bool a1pr9; + public bool a2pr9; + public bool a3pr9; + public bool a4pr9; + public bool a5pr9; + public bool a6pr9; + public bool a7pr9; + public bool a8pr9; + public bool a9pr9; + public bool a10pr9; + public bool a11pr9; + public bool a12pr9; + public bool a13pr9; + public double a1pr9v; + public double a2pr9v; + public double a3pr9v; + public double a4pr9v; + public double a5pr9v; + public double a6pr9v; + public double a7pr9v; + public double a8pr9v; + public double a9pr9v; + public double a10pr9v; + public double a11pr9v; + public double a12pr9v; + public int a13pr9v; + //Pstates preset 9 public string did0pr9; public string did1pr9; public string did2pr9; public string fid0pr9; public string fid1pr9; public string fid2pr9; + public double vid0pr9; + public double vid1pr9; + public double vid2pr9; public bool enablepspr9; public bool turboboostpr9; public bool autopstatepr9; diff --git a/Saku Overclock/ryzenps.exe b/Saku Overclock/ryzenps.exe new file mode 100644 index 0000000..a9cfaac Binary files /dev/null and b/Saku Overclock/ryzenps.exe differ