├── .gitattributes ├── .gitignore ├── NewModernWinver.sln ├── NewModernWinver ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AppResources │ │ ├── AppIcon.altform-lightunplated_targetsize-16.png │ │ ├── AppIcon.altform-lightunplated_targetsize-24.png │ │ ├── AppIcon.altform-lightunplated_targetsize-256.png │ │ ├── AppIcon.altform-lightunplated_targetsize-32.png │ │ ├── AppIcon.altform-lightunplated_targetsize-48.png │ │ ├── AppIcon.altform-unplated_targetsize-16.png │ │ ├── AppIcon.altform-unplated_targetsize-24.png │ │ ├── AppIcon.altform-unplated_targetsize-256.png │ │ ├── AppIcon.altform-unplated_targetsize-32.png │ │ ├── AppIcon.altform-unplated_targetsize-48.png │ │ ├── AppIcon.scale-100.png │ │ ├── AppIcon.scale-125.png │ │ ├── AppIcon.scale-150.png │ │ ├── AppIcon.scale-200.png │ │ ├── AppIcon.scale-400.png │ │ ├── AppIcon.targetsize-16.png │ │ ├── AppIcon.targetsize-24.png │ │ ├── AppIcon.targetsize-256.png │ │ ├── AppIcon.targetsize-32.png │ │ ├── AppIcon.targetsize-48.png │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── MediumTile.scale-100.png │ │ ├── MediumTile.scale-125.png │ │ ├── MediumTile.scale-150.png │ │ ├── MediumTile.scale-200.png │ │ ├── MediumTile.scale-400.png │ │ ├── PackageLogo.scale-100.png │ │ ├── PackageLogo.scale-125.png │ │ ├── PackageLogo.scale-150.png │ │ ├── PackageLogo.scale-200.png │ │ ├── PackageLogo.scale-400.png │ │ ├── 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 │ │ ├── WideTile.scale-100.png │ │ ├── WideTile.scale-125.png │ │ ├── WideTile.scale-150.png │ │ ├── WideTile.scale-200.png │ │ └── WideTile.scale-400.png │ ├── ModernWinver.png │ ├── win10dark.svg │ ├── win10light.svg │ ├── win11dark.svg │ └── win11light.svg ├── CpuUtil.cs ├── ListsAndStuff.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── NewModernWinver.csproj ├── Package.appxmanifest ├── PerformanceInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── Views │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── LinksPage.xaml │ ├── LinksPage.xaml.cs │ ├── SystemPage.xaml │ ├── SystemPage.xaml.cs │ ├── ThemePage.xaml │ └── ThemePage.xaml.cs ├── README.md └── RegistryRT ├── .gitignore ├── LICENSE ├── README.md ├── Registry.cpp ├── Registry.h ├── RegistryRT.vcxproj ├── RegistryRT.vcxproj.filters ├── pch.cpp └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/.gitignore -------------------------------------------------------------------------------- /NewModernWinver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver.sln -------------------------------------------------------------------------------- /NewModernWinver/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/App.xaml -------------------------------------------------------------------------------- /NewModernWinver/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/App.xaml.cs -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.scale-100.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.scale-125.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.scale-150.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.scale-200.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.scale-400.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.targetsize-16.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.targetsize-24.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.targetsize-256.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.targetsize-32.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/AppIcon.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/AppIcon.targetsize-48.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/LargeTile.scale-100.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/LargeTile.scale-125.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/LargeTile.scale-150.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/LargeTile.scale-200.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/LargeTile.scale-400.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/MediumTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/MediumTile.scale-100.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/MediumTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/MediumTile.scale-125.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/MediumTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/MediumTile.scale-150.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/MediumTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/MediumTile.scale-200.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/MediumTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/MediumTile.scale-400.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/PackageLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/PackageLogo.scale-100.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/PackageLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/PackageLogo.scale-125.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/PackageLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/PackageLogo.scale-150.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/PackageLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/PackageLogo.scale-200.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/PackageLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/PackageLogo.scale-400.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SmallTile.scale-100.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SmallTile.scale-125.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SmallTile.scale-150.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SmallTile.scale-200.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SmallTile.scale-400.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/WideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/WideTile.scale-100.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/WideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/WideTile.scale-125.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/WideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/WideTile.scale-150.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/WideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/WideTile.scale-200.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/AppResources/WideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/AppResources/WideTile.scale-400.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/ModernWinver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/ModernWinver.png -------------------------------------------------------------------------------- /NewModernWinver/Assets/win10dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/win10dark.svg -------------------------------------------------------------------------------- /NewModernWinver/Assets/win10light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/win10light.svg -------------------------------------------------------------------------------- /NewModernWinver/Assets/win11dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/win11dark.svg -------------------------------------------------------------------------------- /NewModernWinver/Assets/win11light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Assets/win11light.svg -------------------------------------------------------------------------------- /NewModernWinver/CpuUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/CpuUtil.cs -------------------------------------------------------------------------------- /NewModernWinver/ListsAndStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/ListsAndStuff.cs -------------------------------------------------------------------------------- /NewModernWinver/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/MainPage.xaml -------------------------------------------------------------------------------- /NewModernWinver/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/MainPage.xaml.cs -------------------------------------------------------------------------------- /NewModernWinver/NewModernWinver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/NewModernWinver.csproj -------------------------------------------------------------------------------- /NewModernWinver/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Package.appxmanifest -------------------------------------------------------------------------------- /NewModernWinver/PerformanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/PerformanceInfo.cs -------------------------------------------------------------------------------- /NewModernWinver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NewModernWinver/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Properties/Default.rd.xml -------------------------------------------------------------------------------- /NewModernWinver/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/AboutPage.xaml -------------------------------------------------------------------------------- /NewModernWinver/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /NewModernWinver/Views/LinksPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/LinksPage.xaml -------------------------------------------------------------------------------- /NewModernWinver/Views/LinksPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/LinksPage.xaml.cs -------------------------------------------------------------------------------- /NewModernWinver/Views/SystemPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/SystemPage.xaml -------------------------------------------------------------------------------- /NewModernWinver/Views/SystemPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/SystemPage.xaml.cs -------------------------------------------------------------------------------- /NewModernWinver/Views/ThemePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/ThemePage.xaml -------------------------------------------------------------------------------- /NewModernWinver/Views/ThemePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/NewModernWinver/Views/ThemePage.xaml.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/README.md -------------------------------------------------------------------------------- /RegistryRT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/.gitignore -------------------------------------------------------------------------------- /RegistryRT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/LICENSE -------------------------------------------------------------------------------- /RegistryRT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/README.md -------------------------------------------------------------------------------- /RegistryRT/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/Registry.cpp -------------------------------------------------------------------------------- /RegistryRT/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/Registry.h -------------------------------------------------------------------------------- /RegistryRT/RegistryRT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/RegistryRT.vcxproj -------------------------------------------------------------------------------- /RegistryRT/RegistryRT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/RegistryRT.vcxproj.filters -------------------------------------------------------------------------------- /RegistryRT/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /RegistryRT/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchgm/NewModernWinver/HEAD/RegistryRT/pch.h --------------------------------------------------------------------------------