From e4326582e8ffba36d55ad019e4166c3da7dce491 Mon Sep 17 00:00:00 2001 From: jsmorley Date: Sat, 13 Nov 2010 16:01:15 +0000 Subject: [PATCH] Changed Application.rc and Library.rc to go back to using code page 1252, as the mismatch between changing to VALUE "Translation", 0x409, 1200 and the value in BLOCK "040904E4" causes 3rd party apps to fail to read the version information. I'm not sure I see any need to possibly break things in any case changing the code page for this version info block when it really doesn't matter what it is. 1252 is the tried and true Windows standard "Latin" that we are sure works on any version of Windows and any language setup. Just don't put UNICODE chars in the version information, and we are good to go... ;-) --- Application/Application.rc | 2 +- Library/Library.rc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/Application.rc b/Application/Application.rc index bf8772e0..20149d19 100644 --- a/Application/Application.rc +++ b/Application/Application.rc @@ -56,7 +56,7 @@ BEGIN END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1252 END END diff --git a/Library/Library.rc b/Library/Library.rc index fa3908e8..125a58c0 100644 --- a/Library/Library.rc +++ b/Library/Library.rc @@ -55,7 +55,7 @@ BEGIN END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1252 END END