Revision: 9770 https://osdn.net/projects/ttssh2/scm/svn/commits/9770 Author: zmatsuo Date: 2022-02-22 23:11:15 +0900 (Tue, 22 Feb 2022) Log Message: ----------- スナップショット用設定を日本語環境向けに調整 - 絵文字設定、文字幅設定 Modified Paths: -------------- trunk/installer/release/TERATERM.INI trunk/installer/setini.pl -------------- next part -------------- Modified: trunk/installer/release/TERATERM.INI =================================================================== --- trunk/installer/release/TERATERM.INI 2022-02-22 14:11:03 UTC (rev 9769) +++ trunk/installer/release/TERATERM.INI 2022-02-22 14:11:15 UTC (rev 9770) @@ -783,6 +783,11 @@ ; high DPI support DpiAware=on +; Tera Term 5 alpha +UnicodeAmbiguousWidth= +UnicodeEmojiOverride= +UnicodeEmojiWidth= + [TTSSH] ; SSH enabled flag (1=enabled 0=disabled) Enabled=1 Modified: trunk/installer/setini.pl =================================================================== --- trunk/installer/setini.pl 2022-02-22 14:11:03 UTC (rev 9769) +++ trunk/installer/setini.pl 2022-02-22 14:11:15 UTC (rev 9770) @@ -17,6 +17,9 @@ s/^(VTFont\s*=).*$/$1$vtfont/; s/^(TEKFont\s*=).*$/$1Terminal,0,8,128/; s/^(TCPPort\s*=).*$/${1}22/; + s/^(UnicodeAmbiguousWidth=).*$/${1}2/; + s/^(UnicodeEmojiOverride=).*$/$1on/; + s/^(UnicodeEmojiWidth=).*$/${1}2/; print; } close INI;