Skip to content

Commit 9c2310b

Browse files
Merge branch 'rc2.3.1'
2 parents 1b5215d + 717c5bf commit 9c2310b

22 files changed

+138
-26
lines changed

IntelPresentMon/AppCef/AppCef.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ IDI_ICON1 ICON "flask.ico"
6161
//
6262

6363
VS_VERSION_INFO VERSIONINFO
64-
FILEVERSION 1,0,3,0
65-
PRODUCTVERSION 2,3,0,0
64+
FILEVERSION 1,0,4,0
65+
PRODUCTVERSION 2,3,1,0
6666
FILEFLAGSMASK 0x3fL
6767
#ifdef _DEBUG
6868
FILEFLAGS 0x1L
@@ -79,12 +79,12 @@ BEGIN
7979
BEGIN
8080
VALUE "CompanyName", "Intel(R) Corporation"
8181
VALUE "FileDescription", "Intel(R) PresentMon application"
82-
VALUE "FileVersion", "1.0.3.0"
82+
VALUE "FileVersion", "1.0.4.0"
8383
VALUE "InternalName", "CefNano.exe"
84-
VALUE "LegalCopyright", "Copyright (C) 2017-2024"
84+
VALUE "LegalCopyright", "Copyright (C) 2017-2025"
8585
VALUE "OriginalFilename", "CefNano.exe"
8686
VALUE "ProductName", "Intel(R) PresentMon"
87-
VALUE "ProductVersion", "2.3.0.0"
87+
VALUE "ProductVersion", "2.3.1.0"
8888
END
8989
END
9090
BLOCK "VarFileInfo"
4.8 KB
Binary file not shown.

IntelPresentMon/FlashInjector/FlashInjector.vcxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@
170170
<ClInclude Include="CliOptions.h" />
171171
<ClInclude Include="LibraryInject.h" />
172172
<ClInclude Include="Logging.h" />
173+
<ClInclude Include="resource1.h" />
173174
</ItemGroup>
174175
<ItemGroup>
175176
<ProjectReference Include="..\CommonUtilities\CommonUtilities.vcxproj">
@@ -179,6 +180,11 @@
179180
<Project>{2e571d96-1196-45d4-ae13-f05ceb1f23c8}</Project>
180181
</ProjectReference>
181182
</ItemGroup>
183+
<ItemGroup>
184+
<ResourceCompile Include="FlashInjector.rc">
185+
<PreprocessorDefinitions Condition="'$(Platform)'=='Win32'">ISX86;%(PreprocessorDefinitions)</PreprocessorDefinitions>
186+
</ResourceCompile>
187+
</ItemGroup>
182188
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
183189
<ImportGroup Label="ExtensionTargets">
184190
</ImportGroup>

IntelPresentMon/FlashInjector/FlashInjector.vcxproj.filters

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,13 @@
3232
<ClInclude Include="Logging.h">
3333
<Filter>Header Files</Filter>
3434
</ClInclude>
35+
<ClInclude Include="resource1.h">
36+
<Filter>Header Files</Filter>
37+
</ClInclude>
38+
</ItemGroup>
39+
<ItemGroup>
40+
<ResourceCompile Include="FlashInjector.rc">
41+
<Filter>Resource Files</Filter>
42+
</ResourceCompile>
3543
</ItemGroup>
3644
</Project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//{{NO_DEPENDENCIES}}
2+
// Microsoft Visual C++ generated include file.
3+
// Used by FlashInjector.rc
4+
5+
// Next default values for new objects
6+
//
7+
#ifdef APSTUDIO_INVOKED
8+
#ifndef APSTUDIO_READONLY_SYMBOLS
9+
#define _APS_NEXT_RESOURCE_VALUE 101
10+
#define _APS_NEXT_COMMAND_VALUE 40001
11+
#define _APS_NEXT_CONTROL_VALUE 1001
12+
#define _APS_NEXT_SYMED_VALUE 101
13+
#endif
14+
#endif
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//{{NO_DEPENDENCIES}}
2+
// Microsoft Visual C++ generated include file.
3+
// Used by FlashInjector.rc
4+
5+
// Next default values for new objects
6+
//
7+
#ifdef APSTUDIO_INVOKED
8+
#ifndef APSTUDIO_READONLY_SYMBOLS
9+
#define _APS_NEXT_RESOURCE_VALUE 101
10+
#define _APS_NEXT_COMMAND_VALUE 40001
11+
#define _APS_NEXT_CONTROL_VALUE 1001
12+
#define _APS_NEXT_SYMED_VALUE 101
13+
#endif
14+
#endif
Binary file not shown.

IntelPresentMon/FlashInjectorLibrary/FlashInjectorLibrary.vcxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<ClInclude Include="Logging.h" />
3939
<ClInclude Include="MemoryPool.h" />
4040
<ClInclude Include="NonCopyable.h" />
41+
<ClInclude Include="resource.h" />
4142
<ClInclude Include="WrapUtils.h" />
4243
</ItemGroup>
4344
<ItemGroup>
@@ -66,6 +67,11 @@
6667
<Project>{08a704d8-ca1c-45e9-8ede-542a1a43b53e}</Project>
6768
</ProjectReference>
6869
</ItemGroup>
70+
<ItemGroup>
71+
<ResourceCompile Include="FlashInjectorLibrary.rc">
72+
<PreprocessorDefinitions Condition="'$(Platform)'=='Win32'">ISX86;%(PreprocessorDefinitions)</PreprocessorDefinitions>
73+
</ResourceCompile>
74+
</ItemGroup>
6975
<PropertyGroup Label="Globals">
7076
<VCProjectVersion>17.0</VCProjectVersion>
7177
<Keyword>Win32Proj</Keyword>

IntelPresentMon/FlashInjectorLibrary/FlashInjectorLibrary.vcxproj.filters

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@
7575
<ClInclude Include="Logging.h">
7676
<Filter>Header Files</Filter>
7777
</ClInclude>
78+
<ClInclude Include="resource.h">
79+
<Filter>Header Files</Filter>
80+
</ClInclude>
7881
</ItemGroup>
7982
<ItemGroup>
8083
<ClCompile Include="Custom\API_D3D11.cpp">
@@ -135,4 +138,9 @@
135138
<Filter>Source Files</Filter>
136139
</ClCompile>
137140
</ItemGroup>
141+
<ItemGroup>
142+
<ResourceCompile Include="FlashInjectorLibrary.rc">
143+
<Filter>Resource Files</Filter>
144+
</ResourceCompile>
145+
</ItemGroup>
138146
</Project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//{{NO_DEPENDENCIES}}
2+
// Microsoft Visual C++ generated include file.
3+
// Used by FlashInjectorLibrary.rc
4+
5+
// Next default values for new objects
6+
//
7+
#ifdef APSTUDIO_INVOKED
8+
#ifndef APSTUDIO_READONLY_SYMBOLS
9+
#define _APS_NEXT_RESOURCE_VALUE 101
10+
#define _APS_NEXT_COMMAND_VALUE 40001
11+
#define _APS_NEXT_CONTROL_VALUE 1001
12+
#define _APS_NEXT_SYMED_VALUE 101
13+
#endif
14+
#endif

0 commit comments

Comments
 (0)