From 73f3d08f995db4e8ebaef24556f28b63a9250675 Mon Sep 17 00:00:00 2001
From: a1xd <68629610+a1xd@users.noreply.github.com>
Date: Sat, 18 Sep 2021 07:01:08 -0400
Subject: bump version, target win10
---
common/rawaccel-version.h | 6 +++---
driver/driver.vcxproj | 10 ++++++----
installer/installer.cpp | 4 ++--
signed/installer.exe | Bin 60296 -> 62264 bytes
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 @@
- Windows7
+
+
False
- Desktop
+ Universal
KMDF
WindowsKernelModeDriver10.0
Driver
@@ -33,9 +34,10 @@
Spectre
- Windows7
+
+
True
- Desktop
+ Universal
KMDF
WindowsKernelModeDriver10.0
Driver
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
index 99f1d32..37a6291 100644
Binary files a/signed/installer.exe and b/signed/installer.exe differ
diff --git a/signed/uninstaller.exe b/signed/uninstaller.exe
index cfbf0dd..13bc55c 100644
Binary files a/signed/uninstaller.exe and b/signed/uninstaller.exe differ
--
cgit v1.2.3