diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/wish.exe.manifest.in | 47 |
2 files changed, 32 insertions, 20 deletions
@@ -1,3 +1,8 @@ +2009-03-25 Donal K. Fellows <dkf@users.sf.net> + + * win/wish.exe.manifest.in: [Bug 1871101]: Add magic to make Tk not be + blurred on Vista with large fonts. + 2009-03-14 Donal K. Fellows <dkf@users.sf.net> * unix/tk.pc.in (new file): [Patch 2243962] (hat0) diff --git a/win/wish.exe.manifest.in b/win/wish.exe.manifest.in index 236768e..2cae0c0 100644 --- a/win/wish.exe.manifest.in +++ b/win/wish.exe.manifest.in @@ -1,22 +1,29 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> -<assemblyIdentity - version="@TK_WIN_VERSION@" - processorArchitecture="@MACHINE@" - name="Tcl.Tk.wish" - type="win32" -/> -<description>Tcl/Tk windowing shell (wish)</description> -<dependency> -<dependentAssembly> -<assemblyIdentity - type="win32" - name="Microsoft.Windows.Common-Controls" - version="6.0.0.0" - processorArchitecture="@MACHINE@" - publicKeyToken="6595b64144ccf1df" - language="*" -/> -</dependentAssembly> -</dependency> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" + xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> + <assemblyIdentity + version="@TK_WIN_VERSION@" + processorArchitecture="@MACHINE@" + name="Tcl.Tk.wish" + type="win32" + /> + <description>Tcl/Tk windowing shell (wish)</description> + <asmv3:application> + <asmv3:windowsSettings + xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> + <dpiAware>true</dpiAware> + </asmv3:windowsSettings> + </asmv3:application> + <dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + processorArchitecture="@MACHINE@" + publicKeyToken="6595b64144ccf1df" + language="*" + /> + </dependentAssembly> + </dependency> </assembly> |