mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
33756ceae9
not fazed by being displayed at other than 96DPI; testing on Vista at a range of DPIs indicates that we cope (with the minor and inevitable exception of the drag-list control). This stops pixel scaling and hence fuzzy display on high-resolution displays. (Hope this is last disastrous than my last set of manifest tweaks! -- <http://support.fogcreek.com/default.asp?copilot.6.26840.1> suggests that this is an OK thing to do.) [originally from svn r8661]
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<!-- Do not attempt to do anything clever with this file, as some versions of
|
|
Windows are very sensitive to the exact format.
|
|
Hence, some facts below are fibs. -->
|
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<assemblyIdentity
|
|
version="0.0.0.0"
|
|
processorArchitecture="x86"
|
|
name="Pageant"
|
|
type="win32" />
|
|
<description>PuTTY SSH authentication agent</description>
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<!-- Load Common Controls 6 instead of 5 to get WinXP native-
|
|
looking controls in the client area. -->
|
|
<assemblyIdentity type="win32"
|
|
name="Microsoft.Windows.Common-Controls"
|
|
version="6.0.0.0"
|
|
publicKeyToken="6595b64144ccf1df"
|
|
language="*"
|
|
processorArchitecture="x86"/>
|
|
</dependentAssembly>
|
|
</dependency>
|
|
<!-- Declare us to be "DPI-aware". -->
|
|
<asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
|
|
<asmv3:windowsSettings
|
|
xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
|
|
<dpiAware>true</dpiAware>
|
|
</asmv3:windowsSettings>
|
|
</asmv3:application>
|
|
</assembly>
|