diff options
| -rw-r--r-- | common/rawaccel-version.h | 6 | ||||
| -rw-r--r-- | driver/driver.vcxproj | 10 | ||||
| -rw-r--r-- | installer/installer.cpp | 4 | ||||
| -rw-r--r-- | signed/installer.exe | bin | 60296 -> 62264 bytes | |||
| -rw-r--r-- | signed/uninstaller.exe | bin | 55688 -> 57656 bytes |
5 files changed, 11 insertions, 9 deletions
diff --git a/common/rawaccel-version.h b/common/rawaccel-version.h index 384ba6f..f3f684c 100644 --- a/common/rawaccel-version.h +++ b/common/rawaccel-version.h @@ -1,10 +1,10 @@ #pragma once #define RA_VER_MAJOR 1 -#define RA_VER_MINOR 5 +#define RA_VER_MINOR 6 #define RA_VER_PATCH 0 -#define RA_OS "Win7+" +#define RA_OS "Win10+" #define RA_M_STR_HELPER(x) #x #define RA_M_STR(x) RA_M_STR_HELPER(x) @@ -30,7 +30,7 @@ namespace rawaccel { inline constexpr version_t version = { RA_VER_MAJOR, RA_VER_MINOR, RA_VER_PATCH }; #ifndef _KERNEL_MODE - inline constexpr version_t min_driver_version = { 1, 5, 0 }; + inline constexpr version_t min_driver_version = { 1, 6, 0 }; #endif } diff --git a/driver/driver.vcxproj b/driver/driver.vcxproj index c2e4629..dfc1fdb 100644 --- a/driver/driver.vcxproj +++ b/driver/driver.vcxproj @@ -22,9 +22,10 @@ </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> - <TargetVersion>Windows7</TargetVersion> + <TargetVersion> + </TargetVersion> <UseDebugLibraries>False</UseDebugLibraries> - <DriverTargetPlatform>Desktop</DriverTargetPlatform> + <DriverTargetPlatform>Universal</DriverTargetPlatform> <DriverType>KMDF</DriverType> <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset> <ConfigurationType>Driver</ConfigurationType> @@ -33,9 +34,10 @@ <Driver_SpectreMitigation>Spectre</Driver_SpectreMitigation> </PropertyGroup> <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> - <TargetVersion>Windows7</TargetVersion> + <TargetVersion> + </TargetVersion> <UseDebugLibraries>True</UseDebugLibraries> - <DriverTargetPlatform>Desktop</DriverTargetPlatform> + <DriverTargetPlatform>Universal</DriverTargetPlatform> <DriverType>KMDF</DriverType> <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset> <ConfigurationType>Driver</ConfigurationType> diff --git a/installer/installer.cpp b/installer/installer.cpp index 279fefc..cf5a43a 100644 --- a/installer/installer.cpp +++ b/installer/installer.cpp @@ -42,8 +42,8 @@ void add_service(const fs::path& target) { int main() { try { - if (!IsWindows7OrGreater()) { - throw std::runtime_error("OS not supported, you need at least Windows 7"); + if (!IsWindows10OrGreater()) { + throw std::runtime_error("OS not supported, you need at least Windows 10"); } fs::path source = fs::path(L"driver") / DRIVER_FILE_NAME; diff --git a/signed/installer.exe b/signed/installer.exe Binary files differindex 99f1d32..37a6291 100644 --- a/signed/installer.exe +++ b/signed/installer.exe diff --git a/signed/uninstaller.exe b/signed/uninstaller.exe Binary files differindex cfbf0dd..13bc55c 100644 --- a/signed/uninstaller.exe +++ b/signed/uninstaller.exe |