-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[wtl] Add two "post-release updates". (#21924)
* [wtl] Add two "post-release updates". See https://sourceforge.net/projects/wtl/files/WTL%2010/WTL10%20Post-Release%20Updates.txt/download * Ran magic undocumented command line.
- Loading branch information
1 parent
adc3cec
commit 34a73b5
Showing
6 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- a/AppWizard/Setup.js | ||
+++ b/AppWizard/Setup.js | ||
@@ -185,26 +185,30 @@ | ||
} | ||
} | ||
|
||
-// Search for Visual Studio 2017-2019 | ||
- var nVersionsNew = 2; | ||
+// Search for Visual Studio 2017/2019/2022 | ||
+ var nVersionsNew = 3; | ||
|
||
var strWizardFolderNew = "Common7\\IDE\\VC\\vcprojects"; | ||
|
||
var astrVersionsNew = new Array(); | ||
astrVersionsNew[0] = "Visual Studio 2017 (15.0)"; | ||
astrVersionsNew[1] = "Visual Studio 2019 (16.0)"; | ||
+ astrVersionsNew[2] = "Visual Studio 2022 (17.0)"; | ||
|
||
var astrWizVerNew = new Array(); | ||
astrWizVerNew[0] = "15.0"; | ||
astrWizVerNew[1] = "16.0"; | ||
+ astrWizVerNew[2] = "17.0"; | ||
|
||
var astrParamVerNew = new Array(); | ||
astrParamVerNew[0] = "15"; | ||
astrParamVerNew[1] = "16"; | ||
+ astrParamVerNew[2] = "17"; | ||
|
||
var astrFilterVer = new Array(); | ||
astrFilterVer[0] = "[15.0,16.0]"; | ||
astrFilterVer[1] = "[16.0,17.0]"; | ||
+ astrFilterVer[2] = "[17.0,18.0]"; | ||
|
||
// Ensure that we can run vswhere.exe | ||
var strProgFileRegKey_x86 = "HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\ProgramFilesDir (x86)"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/Include/atlmisc.h | ||
+++ b/Include/atlmisc.h | ||
@@ -628,7 +628,7 @@ | ||
{ | ||
ATLASSERT(m_hFind != NULL); | ||
|
||
- ATL::CString strResult("file://"); | ||
+ ATL::CString strResult(_T("file://")); | ||
strResult += GetFilePath(); | ||
return strResult; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "wtl", | ||
"version-string": "10.0.10320", | ||
"port-version": 1, | ||
"port-version": 2, | ||
"description": "Windows Template Library (WTL) is a C++ library for developing Windows applications and UI components.", | ||
"homepage": "https://sourceforge.net/projects/wtl/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters