From 9bcfbd0687565b58ab2b955a37d9edab76f90a20 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Wed, 2 Dec 2020 05:00:57 -0500 Subject: merge common-install with common --- uninstaller/uninstaller.vcxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'uninstaller') diff --git a/uninstaller/uninstaller.vcxproj b/uninstaller/uninstaller.vcxproj index f7e9f75..f094c52 100644 --- a/uninstaller/uninstaller.vcxproj +++ b/uninstaller/uninstaller.vcxproj @@ -35,7 +35,7 @@ - + -- cgit v1.2.3 From 7d14daf1d5fce4d09471a3abe2aca49cf7680816 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Wed, 2 Dec 2020 05:25:19 -0500 Subject: embed version info into assemblies check app versions against lib, lib against driver add an 'about' dialog which displays version details, accessible from menu refactor error handling + add check for negative offset --- uninstaller/resource.h | 14 ++++++ uninstaller/uninstaller.rc | 97 +++++++++++++++++++++++++++++++++++++++++ uninstaller/uninstaller.vcxproj | 12 +++++ 3 files changed, 123 insertions(+) create mode 100644 uninstaller/resource.h create mode 100644 uninstaller/uninstaller.rc (limited to 'uninstaller') diff --git a/uninstaller/resource.h b/uninstaller/resource.h new file mode 100644 index 0000000..a56edf6 --- /dev/null +++ b/uninstaller/resource.h @@ -0,0 +1,14 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by uninstaller.rc + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 101 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/uninstaller/uninstaller.rc b/uninstaller/uninstaller.rc new file mode 100644 index 0000000..a9e8304 --- /dev/null +++ b/uninstaller/uninstaller.rc @@ -0,0 +1,97 @@ +// Microsoft Visual C++ generated resource script. +// + +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE 9, 1 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#include + +VS_VERSION_INFO VERSIONINFO +FILEVERSION RA_VER_MAJOR, RA_VER_MINOR, RA_VER_PATCH +PRODUCTVERSION RA_VER_MAJOR, RA_VER_MINOR, RA_VER_PATCH +FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif +FILEOS 0x40004L +FILETYPE 0x1L +FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "FileDescription", "Raw Accel uninstaller" + VALUE "FileVersion", RA_VER_STRING + VALUE "OriginalFilename", "uninstaller.exe" + VALUE "ProductName", "Raw Accel" + VALUE "ProductVersion", RA_VER_STRING + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/uninstaller/uninstaller.vcxproj b/uninstaller/uninstaller.vcxproj index f094c52..1098ed7 100644 --- a/uninstaller/uninstaller.vcxproj +++ b/uninstaller/uninstaller.vcxproj @@ -63,6 +63,9 @@ true RequireAdministrator + + $(SolutionDir)/common; + @@ -84,10 +87,19 @@ copy /Y "$(TargetPath)" "$(SolutionDir)signed\$(TargetFileName)" + + $(SolutionDir)/common; + + + + + + + -- cgit v1.2.3 From f87fa2c92e246fe0464eacfc2c338e34061e7fd4 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Sat, 5 Dec 2020 21:26:29 -0500 Subject: update signed, add installers --- uninstaller/uninstaller.vcxproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'uninstaller') diff --git a/uninstaller/uninstaller.vcxproj b/uninstaller/uninstaller.vcxproj index 1098ed7..52e5583 100644 --- a/uninstaller/uninstaller.vcxproj +++ b/uninstaller/uninstaller.vcxproj @@ -85,7 +85,8 @@ RequireAdministrator - copy /Y "$(TargetPath)" "$(SolutionDir)signed\$(TargetFileName)" + + $(SolutionDir)/common; -- cgit v1.2.3