├── .gitignore ├── BiosPatcher.sln ├── BiosPatcher ├── App.config ├── App.xaml ├── App.xaml.cs ├── BiosPatcher.csproj ├── ComponentAttribute.cs ├── Model │ ├── BitConverterLittleEndian.cs │ ├── CheckSumCalculator.cs │ ├── ControllerImage.cs │ ├── DefaultValuesProvider.cs │ ├── Exceptions │ │ ├── IncorrectSignatureException.cs │ │ └── TemperatureTablesException.cs │ ├── IBitConverterLittleEndian.cs │ ├── ICheckSumCalculator.cs │ ├── IControllerImage.cs │ ├── IDefaultValuesProvider.cs │ ├── IPatchingModel.cs │ ├── ImageMarkup.cs │ ├── ListExtensions.cs │ └── PatchingModel.cs ├── Properties │ └── AssemblyInfo.cs ├── View │ ├── InverseBooleanToVisibilityConverter.cs │ ├── PatchingWindow.xaml │ ├── PatchingWindow.xaml.cs │ ├── TemperatureGraph.xaml │ └── TemperatureGraph.xaml.cs ├── ViewModel │ ├── IPatchingViewModel.cs │ └── PatchingViewModel.cs └── packages.config ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/.gitignore -------------------------------------------------------------------------------- /BiosPatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher.sln -------------------------------------------------------------------------------- /BiosPatcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/App.config -------------------------------------------------------------------------------- /BiosPatcher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/App.xaml -------------------------------------------------------------------------------- /BiosPatcher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/App.xaml.cs -------------------------------------------------------------------------------- /BiosPatcher/BiosPatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/BiosPatcher.csproj -------------------------------------------------------------------------------- /BiosPatcher/ComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/ComponentAttribute.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/BitConverterLittleEndian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/BitConverterLittleEndian.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/CheckSumCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/CheckSumCalculator.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/ControllerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/ControllerImage.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/DefaultValuesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/DefaultValuesProvider.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/Exceptions/IncorrectSignatureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/Exceptions/IncorrectSignatureException.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/Exceptions/TemperatureTablesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/Exceptions/TemperatureTablesException.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/IBitConverterLittleEndian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/IBitConverterLittleEndian.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/ICheckSumCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/ICheckSumCalculator.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/IControllerImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/IControllerImage.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/IDefaultValuesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/IDefaultValuesProvider.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/IPatchingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/IPatchingModel.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/ImageMarkup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/ImageMarkup.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/ListExtensions.cs -------------------------------------------------------------------------------- /BiosPatcher/Model/PatchingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Model/PatchingModel.cs -------------------------------------------------------------------------------- /BiosPatcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BiosPatcher/View/InverseBooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/View/InverseBooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /BiosPatcher/View/PatchingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/View/PatchingWindow.xaml -------------------------------------------------------------------------------- /BiosPatcher/View/PatchingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/View/PatchingWindow.xaml.cs -------------------------------------------------------------------------------- /BiosPatcher/View/TemperatureGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/View/TemperatureGraph.xaml -------------------------------------------------------------------------------- /BiosPatcher/View/TemperatureGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/View/TemperatureGraph.xaml.cs -------------------------------------------------------------------------------- /BiosPatcher/ViewModel/IPatchingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/ViewModel/IPatchingViewModel.cs -------------------------------------------------------------------------------- /BiosPatcher/ViewModel/PatchingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/ViewModel/PatchingViewModel.cs -------------------------------------------------------------------------------- /BiosPatcher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/BiosPatcher/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltukkos/xiaomi-notebook-pro-bios-patcher/HEAD/README.md --------------------------------------------------------------------------------