Revision: 9829 https://osdn.net/projects/ttssh2/scm/svn/commits/9829 Author: zmatsuo Date: 2022-03-23 00:55:30 +0900 (Wed, 23 Mar 2022) Log Message: ----------- teraterm.issの読み込み時に警告が出るので修正 - cp932 "\xEF" does not map to Unico****@issve***** line 8 - r9822 で teraterm.iss が UTF-8+BOM になったため Revision Links: -------------- https://osdn.net/projects/ttssh2/scm/svn/commits/9822 Modified Paths: -------------- trunk/installer/issversion.pl -------------- next part -------------- Modified: trunk/installer/issversion.pl =================================================================== --- trunk/installer/issversion.pl 2022-03-22 14:45:11 UTC (rev 9828) +++ trunk/installer/issversion.pl 2022-03-22 15:55:30 UTC (rev 9829) @@ -4,7 +4,7 @@ use warnings; use utf8; -open(ISS, '<:crlf:encoding(cp932)', 'teraterm.iss'); +open(ISS, '<:crlf:encoding(UTF-8)', 'teraterm.iss'); while(<ISS>){ if (/^#define AppVer "(.+)"$/) { print $1;