DXGL r854 - Code Review

Jump to navigation Jump to search
Repository:DXGL
Revision:r853‎ | r854 | r855 >
Date:14:10, 3 September 2018
Author:admin
Status:new
Tags:
Comment:
Remove beta tag.
Update error messages in installer.
Modified paths:
  • /Installer/dxgl.nsi (modified) (history)
  • /common/releasever.h (modified) (history)

Diff [purge]

Index: Installer/dxgl.nsi
@@ -263,24 +263,24 @@
264264 Pop $0
265265 ${If} $0 == "0"
266266 MessageBox MB_OK|MB_ICONSTOP "This version of DXGL requires a processor with SSE2 capability.$\r\
267 - Please download the VS2010 build to use DXGL on your system."
 267+ Please download the legacy build to use DXGL on your system."
268268 Quit
269269 ${EndIf}
270270 ${IfNot} ${AtLeastWinVista}
271271 MessageBox MB_OK|MB_ICONSTOP "This version of DXGL requires at least Windows Vista Service Pack 2.$\r\
272 - If you need to run DXGL on Windows XP, XP x64, or Server 2003, please download the VS2010 build."
 272+ If you need to run DXGL on Windows XP, XP x64, or Server 2003, please download the legacy build."
273273 Quit
274274 ${EndIf}
275275 ${If} ${IsWinVista}
276276 ${AndIfNot} ${AtLeastServicePack} 2
277 - MessageBox MB_OK|MB_ICONSTOP "Your copy of Windows Vista or Windows Server 2008 must be upgraded to Service Pack 2 before you can use the VC2017 build of DXGL.$\r\
 277+ MessageBox MB_OK|MB_ICONSTOP "Your copy of Windows Vista or Windows Server 2008 must be upgraded to Service Pack 2 before you can use this version of DXGL.$\r\
278278 Please visit https://support.microsoft.com/en-us/kb/948465/ for instructions on upgrading to Service Pack 2."
279279 Quit
280280 ${endif}
281281 ${If} ${IsWin7}
282282 ${AndIfNot} ${AtLeastServicePack} 1
283 - MessageBox MB_OK|MB_ICONSTOP "Your copy of Windows 7 or Windows Server 2008 R2 must be upgraded to Service Pack 1 before you can use the VC2017 build of DXGL.$\r\
284 - Please visit X for instructions on upgrading to Service Pack 1."
 283+ MessageBox MB_OK|MB_ICONSTOP "Your copy of Windows 7 or Windows Server 2008 R2 must be upgraded to Service Pack 1 before you can use this version of DXGL.$\r\
 284+ Please visit https://support.microsoft.com/en-us/kb/976932/ for instructions on upgrading to Service Pack 1."
285285 Quit
286286 ${endif}
287287 !else
Index: common/releasever.h
@@ -5,7 +5,7 @@
66 #define DXGLMAJORVER 0
77 #define DXGLMINORVER 5
88 #define DXGLPOINTVER 15
9 -#define DXGLBETA 1
 9+#define DXGLBETA 0
1010
1111 #define STR2(x) #x
1212 #define STR(x) STR2(x)