├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── funding.yml └── workflows │ ├── github_workflows_auto-close-pr-not-testing.yml │ └── stale.yml ├── .gitignore ├── Activation ├── ActivationHandler.cs ├── DefaultActivationHandler.cs └── IActivationHandler.cs ├── App.xaml ├── App.xaml.cs ├── Assets ├── DarkWindowIcon.ico ├── LargeTile.scale-100.png ├── LargeTile.scale-125.png ├── LargeTile.scale-150.png ├── LargeTile.scale-200.png ├── LargeTile.scale-400.png ├── LightWindowIcon.ico ├── LockScreenLogo.scale-200.png ├── RemoveEdge.ps1 ├── SmallTile.scale-100.png ├── SmallTile.scale-125.png ├── SmallTile.scale-150.png ├── SmallTile.scale-200.png ├── SmallTile.scale-400.png ├── SplashScreen.scale-100.png ├── SplashScreen.scale-125.png ├── SplashScreen.scale-150.png ├── SplashScreen.scale-200.png ├── SplashScreen.scale-400.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-125.png ├── Square150x150Logo.scale-150.png ├── Square150x150Logo.scale-200.png ├── Square150x150Logo.scale-400.png ├── Square44x44Logo.altform-lightunplated_targetsize-16.png ├── Square44x44Logo.altform-lightunplated_targetsize-24.png ├── Square44x44Logo.altform-lightunplated_targetsize-256.png ├── Square44x44Logo.altform-lightunplated_targetsize-32.png ├── Square44x44Logo.altform-lightunplated_targetsize-48.png ├── Square44x44Logo.altform-unplated_targetsize-16.png ├── Square44x44Logo.altform-unplated_targetsize-256.png ├── Square44x44Logo.altform-unplated_targetsize-32.png ├── Square44x44Logo.altform-unplated_targetsize-48.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square44x44Logo.targetsize-16.png ├── Square44x44Logo.targetsize-24.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── Square44x44Logo.targetsize-256.png ├── Square44x44Logo.targetsize-32.png ├── Square44x44Logo.targetsize-48.png ├── StoreLogo.backup.png ├── StoreLogo.scale-100.png ├── StoreLogo.scale-125.png ├── StoreLogo.scale-150.png ├── StoreLogo.scale-200.png ├── StoreLogo.scale-400.png ├── Wide310x150Logo.scale-100.png ├── Wide310x150Logo.scale-125.png ├── Wide310x150Logo.scale-150.png ├── Wide310x150Logo.scale-200.png ├── Wide310x150Logo.scale-400.png ├── WindowIcon.ico ├── bug.png ├── discord.png ├── github.png ├── secure.png ├── support.png ├── unsecure.png └── warning.png ├── Behaviors ├── NavigationViewHeaderBehavior.cs └── NavigationViewHeaderMode.cs ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Contracts ├── Services │ ├── IActivationService.cs │ ├── IAppNotificationService.cs │ ├── IFileService.cs │ ├── ILocalSettingsService.cs │ ├── INavigationService.cs │ ├── INavigationViewService.cs │ ├── IPageService.cs │ └── IThemeSelectorService.cs └── ViewModels │ └── INavigationAware.cs ├── Helpers ├── EnumToBooleanConverter.cs ├── FrameExtensions.cs ├── Json.cs ├── LogHelper.cs ├── NavigationHelper.cs ├── OptimizationOptions.cs ├── OptimizeSystemHelper.cs ├── ResourceExtensions.cs ├── RuntimeHelper.cs ├── SettingsStorageExtensions.cs └── TitleBarHelper.cs ├── LICENSE.md ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models └── LocalSettingsOptions.cs ├── Package.appinstaller ├── Package.appxmanifest ├── Properties └── launchsettings.json ├── README.md ├── RyTuneX.csproj ├── RyTuneX.sln ├── Services ├── ActivationService.cs ├── FileService.cs ├── LocalSettingsService.cs ├── NavigationService.cs ├── NavigationViewService.cs ├── PageService.cs └── ThemeSelectorService.cs ├── Strings ├── ar-tn │ └── Resources.resw ├── de │ └── Resources.resw ├── en-us │ └── Resources.resw ├── es-es │ └── Resources.resw ├── fr-fr │ └── Resources.resw ├── he-il │ └── Resources.resw ├── it-it │ └── Resources.resw ├── ja-jp │ └── Resources.resw ├── ko-kr │ └── Resources.resw ├── pt-br │ └── Resources.resw ├── ru-ru │ └── Resources.resw ├── tr-tr │ └── Resources.resw ├── vi-vn │ └── Resources.resw ├── zh-Hans │ └── Resources.resw └── zh-Hant │ └── Resources.resw ├── Styles ├── FontSizes.xaml ├── TextBlock.xaml └── Thickness.xaml ├── Usings.cs ├── ViewModels └── ShellViewModel.cs ├── Views ├── DebloatSystemPage.xaml ├── DebloatSystemPage.xaml.cs ├── FeaturesPage.xaml ├── FeaturesPage.xaml.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── NetworkPage.xaml ├── NetworkPage.xaml.cs ├── OptimizeSystemPage.xaml ├── OptimizeSystemPage.xaml.cs ├── PrivacyPage.xaml ├── PrivacyPage.xaml.cs ├── RepairPage.xaml ├── RepairPage.xaml.cs ├── SecurityPage.xaml ├── SecurityPage.xaml.cs ├── SettingsPage.xaml ├── SettingsPage.xaml.cs ├── ShellPage.xaml ├── ShellPage.xaml.cs ├── SystemInfoPage.xaml └── SystemInfoPage.xaml.cs ├── app.manifest └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/workflows/github_workflows_auto-close-pr-not-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/.github/workflows/github_workflows_auto-close-pr-not-testing.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/.gitignore -------------------------------------------------------------------------------- /Activation/ActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Activation/ActivationHandler.cs -------------------------------------------------------------------------------- /Activation/DefaultActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Activation/DefaultActivationHandler.cs -------------------------------------------------------------------------------- /Activation/IActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Activation/IActivationHandler.cs -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Assets/DarkWindowIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/DarkWindowIcon.ico -------------------------------------------------------------------------------- /Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Assets/LightWindowIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/LightWindowIcon.ico -------------------------------------------------------------------------------- /Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Assets/RemoveEdge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/RemoveEdge.ps1 -------------------------------------------------------------------------------- /Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Assets/WindowIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/WindowIcon.ico -------------------------------------------------------------------------------- /Assets/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/bug.png -------------------------------------------------------------------------------- /Assets/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/discord.png -------------------------------------------------------------------------------- /Assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/github.png -------------------------------------------------------------------------------- /Assets/secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/secure.png -------------------------------------------------------------------------------- /Assets/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/support.png -------------------------------------------------------------------------------- /Assets/unsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/unsecure.png -------------------------------------------------------------------------------- /Assets/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Assets/warning.png -------------------------------------------------------------------------------- /Behaviors/NavigationViewHeaderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Behaviors/NavigationViewHeaderBehavior.cs -------------------------------------------------------------------------------- /Behaviors/NavigationViewHeaderMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Behaviors/NavigationViewHeaderMode.cs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Contracts/Services/IActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/IActivationService.cs -------------------------------------------------------------------------------- /Contracts/Services/IAppNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/IAppNotificationService.cs -------------------------------------------------------------------------------- /Contracts/Services/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/IFileService.cs -------------------------------------------------------------------------------- /Contracts/Services/ILocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/ILocalSettingsService.cs -------------------------------------------------------------------------------- /Contracts/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/INavigationService.cs -------------------------------------------------------------------------------- /Contracts/Services/INavigationViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/INavigationViewService.cs -------------------------------------------------------------------------------- /Contracts/Services/IPageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/IPageService.cs -------------------------------------------------------------------------------- /Contracts/Services/IThemeSelectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/Services/IThemeSelectorService.cs -------------------------------------------------------------------------------- /Contracts/ViewModels/INavigationAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Contracts/ViewModels/INavigationAware.cs -------------------------------------------------------------------------------- /Helpers/EnumToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/EnumToBooleanConverter.cs -------------------------------------------------------------------------------- /Helpers/FrameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/FrameExtensions.cs -------------------------------------------------------------------------------- /Helpers/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/Json.cs -------------------------------------------------------------------------------- /Helpers/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/LogHelper.cs -------------------------------------------------------------------------------- /Helpers/NavigationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/NavigationHelper.cs -------------------------------------------------------------------------------- /Helpers/OptimizationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/OptimizationOptions.cs -------------------------------------------------------------------------------- /Helpers/OptimizeSystemHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/OptimizeSystemHelper.cs -------------------------------------------------------------------------------- /Helpers/ResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/ResourceExtensions.cs -------------------------------------------------------------------------------- /Helpers/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/RuntimeHelper.cs -------------------------------------------------------------------------------- /Helpers/SettingsStorageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/SettingsStorageExtensions.cs -------------------------------------------------------------------------------- /Helpers/TitleBarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Helpers/TitleBarHelper.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Models/LocalSettingsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Models/LocalSettingsOptions.cs -------------------------------------------------------------------------------- /Package.appinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Package.appinstaller -------------------------------------------------------------------------------- /Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Package.appxmanifest -------------------------------------------------------------------------------- /Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Properties/launchsettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/README.md -------------------------------------------------------------------------------- /RyTuneX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/RyTuneX.csproj -------------------------------------------------------------------------------- /RyTuneX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/RyTuneX.sln -------------------------------------------------------------------------------- /Services/ActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Services/ActivationService.cs -------------------------------------------------------------------------------- /Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Services/FileService.cs -------------------------------------------------------------------------------- /Services/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Services/LocalSettingsService.cs -------------------------------------------------------------------------------- /Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Services/NavigationService.cs -------------------------------------------------------------------------------- /Services/NavigationViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Services/NavigationViewService.cs -------------------------------------------------------------------------------- /Services/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Services/PageService.cs -------------------------------------------------------------------------------- /Services/ThemeSelectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Services/ThemeSelectorService.cs -------------------------------------------------------------------------------- /Strings/ar-tn/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/ar-tn/Resources.resw -------------------------------------------------------------------------------- /Strings/de/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/de/Resources.resw -------------------------------------------------------------------------------- /Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /Strings/es-es/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/es-es/Resources.resw -------------------------------------------------------------------------------- /Strings/fr-fr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/fr-fr/Resources.resw -------------------------------------------------------------------------------- /Strings/he-il/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/he-il/Resources.resw -------------------------------------------------------------------------------- /Strings/it-it/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/it-it/Resources.resw -------------------------------------------------------------------------------- /Strings/ja-jp/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/ja-jp/Resources.resw -------------------------------------------------------------------------------- /Strings/ko-kr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/ko-kr/Resources.resw -------------------------------------------------------------------------------- /Strings/pt-br/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/pt-br/Resources.resw -------------------------------------------------------------------------------- /Strings/ru-ru/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/ru-ru/Resources.resw -------------------------------------------------------------------------------- /Strings/tr-tr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/tr-tr/Resources.resw -------------------------------------------------------------------------------- /Strings/vi-vn/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/vi-vn/Resources.resw -------------------------------------------------------------------------------- /Strings/zh-Hans/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/zh-Hans/Resources.resw -------------------------------------------------------------------------------- /Strings/zh-Hant/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Strings/zh-Hant/Resources.resw -------------------------------------------------------------------------------- /Styles/FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Styles/FontSizes.xaml -------------------------------------------------------------------------------- /Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /Styles/Thickness.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Styles/Thickness.xaml -------------------------------------------------------------------------------- /Usings.cs: -------------------------------------------------------------------------------- 1 | global using WinUIEx; 2 | -------------------------------------------------------------------------------- /ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /Views/DebloatSystemPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/DebloatSystemPage.xaml -------------------------------------------------------------------------------- /Views/DebloatSystemPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/DebloatSystemPage.xaml.cs -------------------------------------------------------------------------------- /Views/FeaturesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/FeaturesPage.xaml -------------------------------------------------------------------------------- /Views/FeaturesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/FeaturesPage.xaml.cs -------------------------------------------------------------------------------- /Views/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/HomePage.xaml -------------------------------------------------------------------------------- /Views/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/HomePage.xaml.cs -------------------------------------------------------------------------------- /Views/NetworkPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/NetworkPage.xaml -------------------------------------------------------------------------------- /Views/NetworkPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/NetworkPage.xaml.cs -------------------------------------------------------------------------------- /Views/OptimizeSystemPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/OptimizeSystemPage.xaml -------------------------------------------------------------------------------- /Views/OptimizeSystemPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/OptimizeSystemPage.xaml.cs -------------------------------------------------------------------------------- /Views/PrivacyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/PrivacyPage.xaml -------------------------------------------------------------------------------- /Views/PrivacyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/PrivacyPage.xaml.cs -------------------------------------------------------------------------------- /Views/RepairPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/RepairPage.xaml -------------------------------------------------------------------------------- /Views/RepairPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/RepairPage.xaml.cs -------------------------------------------------------------------------------- /Views/SecurityPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/SecurityPage.xaml -------------------------------------------------------------------------------- /Views/SecurityPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/SecurityPage.xaml.cs -------------------------------------------------------------------------------- /Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Views/ShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/ShellPage.xaml -------------------------------------------------------------------------------- /Views/ShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/ShellPage.xaml.cs -------------------------------------------------------------------------------- /Views/SystemInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/SystemInfoPage.xaml -------------------------------------------------------------------------------- /Views/SystemInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/Views/SystemInfoPage.xaml.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/app.manifest -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenghanmi/RyTuneX/HEAD/appsettings.json --------------------------------------------------------------------------------