From svnnotify @ sourceforge.jp Mon Feb 2 00:06:02 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 02 Feb 2015 00:06:02 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3NzJdICBZTU9ERU0g5Y+X5L+h44Gn44OV?= =?utf-8?b?44Kh44Kk44Or44K144Kk44K644GM6YCB44KJ44KM44Gm44GT44Gq44GL44Gj?= =?utf-8?b?44Gf5aC05ZCI44CB44OV44Kh44Kk44Or44Gu5YaF5a6544GM5pu444GN6L68?= =?utf-8?b?44G+44KM44Gq44GE5ZWP6aGM44KS5L+u5q2j?= Message-ID: <1422803162.698017.9794.nullmailer@users.sourceforge.jp> Revision: 5772 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5772 Author: maya Date: 2015-02-02 00:06:00 +0900 (Mon, 02 Feb 2015) Log Message: ----------- YMODEM 受信でファイルサイズが送られてこなかった場合、ファイルの内容が書き込まれない問題を修正 http://sourceforge.jp/ticket/browse.php?tid=34235&group_id=1412 Modified Paths: -------------- trunk/teraterm/common/ttftypes.h trunk/teraterm/ttpfile/ymodem.c -------------- next part -------------- Modified: trunk/teraterm/common/ttftypes.h =================================================================== --- trunk/teraterm/common/ttftypes.h 2015-01-31 13:47:26 UTC (rev 5771) +++ trunk/teraterm/common/ttftypes.h 2015-02-01 15:06:00 UTC (rev 5772) @@ -217,6 +217,7 @@ int LastSendEot; WORD DataLen; BYTE LastMessage; + BOOL RecvFilesize; } TYVar; typedef TYVar far *PYVar; Modified: trunk/teraterm/ttpfile/ymodem.c =================================================================== --- trunk/teraterm/ttpfile/ymodem.c 2015-01-31 13:47:26 UTC (rev 5771) +++ trunk/teraterm/ttpfile/ymodem.c 2015-02-01 15:06:00 UTC (rev 5772) @@ -245,6 +245,7 @@ fv->FileHandle = -1; fv->FileSize = 0; fv->FileMtime = 0; + yv->RecvFilesize = FALSE; } fv->FileOpen = fv->FileHandle>0; @@ -563,6 +564,7 @@ ret = sscanf(nameend, "%ld%lo%o", &bytes_total, &modtime, &mode); if (ret >= 1) { fv->FileSize = bytes_total; + yv->RecvFilesize = TRUE; } if (ret >= 2) { fv->FileMtime = modtime; @@ -589,7 +591,7 @@ c--; // \x8D?I\x83u\x83\x8D\x83b\x83N\x82?]\x95\xAA\x82?f\x81[\x83^\x82\xF0\x8F\x9C\x8B\x8E\x82\xB7\x82\xE9 - if (fv->ByteCount + c > fv->FileSize) { + if (yv->RecvFilesize && fv->ByteCount + c > fv->FileSize) { c = fv->FileSize - fv->ByteCount; } From svnnotify @ sourceforge.jp Mon Feb 2 12:54:19 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 02 Feb 2015 12:54:19 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3NzNdICDjg4njgq3jg6Xjg6Hjg7Pjg4g=?= =?utf-8?b?5pu05paw?= Message-ID: <1422849259.068735.23183.nullmailer@users.sourceforge.jp> Revision: 5773 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5773 Author: maya Date: 2015-02-02 12:54:15 +0900 (Mon, 02 Feb 2015) Log Message: ----------- ドキュメント更新 r5756, r5762, r5765, r5768, r5770-r5772 ぶん Revision Links: -------------- http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5756 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5762 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5765 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5768 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5770 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5772 Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/ja/html/about/history.html -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-01 15:06:00 UTC (rev 5772) +++ trunk/doc/en/html/about/history.html 2015-02-02 03:54:15 UTC (rev 5773) @@ -35,12 +35,18 @@
  • Changes
  • Bug fixes @@ -2540,15 +2546,18 @@

    2015.xx.xx (Ver 2.72)

  • Bug fixes - +
  • Misc
  • Modified: trunk/doc/en/html/macro/command/index.html =================================================================== --- trunk/doc/en/html/macro/command/index.html 2015-02-13 08:57:40 UTC (rev 5779) +++ trunk/doc/en/html/macro/command/index.html 2015-02-13 08:59:35 UTC (rev 5780) @@ -201,6 +201,7 @@
  • crc32 (version 4.60 or later)
  • crc32file (version 4.60 or later)
  • exec +
  • dirnamebox (version 4.86 or later)
  • filenamebox (version 4.54 or later)
  • getdate
  • getenv Modified: trunk/doc/en/teraterm.hhc =================================================================== --- trunk/doc/en/teraterm.hhc 2015-02-13 08:57:40 UTC (rev 5779) +++ trunk/doc/en/teraterm.hhc 2015-02-13 08:59:35 UTC (rev 5780) @@ -1437,6 +1437,11 @@
  • + + + + +
  • Modified: trunk/doc/en/teraterm.hhp =================================================================== --- trunk/doc/en/teraterm.hhp 2015-02-13 08:57:40 UTC (rev 5779) +++ trunk/doc/en/teraterm.hhp 2015-02-13 08:59:35 UTC (rev 5780) @@ -180,6 +180,7 @@ HlpMacroCommandCygConnect=html\macro\command\cygconnect.html HlpMacroCommandDelpassword=html\macro\command\delpassword.html HlpMacroCommandDirname=html\macro\command\dirname.html +HlpMacroCommandDirnamebox=html\macro\command\dirnamebox.html HlpMacroCommandDisconnect=html\macro\command\disconnect.html HlpMacroCommandDispstr=html\macro\command\dispstr.html HlpMacroCommandDo=html\macro\command\doloop.html Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2015-02-13 08:57:40 UTC (rev 5779) +++ trunk/doc/ja/html/about/history.html 2015-02-13 08:59:35 UTC (rev 5780) @@ -37,6 +37,7 @@
  • [Control] \x83\x81\x83j\x83\x85\x81[\x82\xCC [Reset Terminal] \x82\xC5 OSC 10/11 \x82Ő??\x82\xBD\x90F\x82\xE0\x83\x8A\x83Z\x83b\x83g\x82\xB7\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B
  • YMODEM \x82ő\x97\x90M\x82\xB7\x82?\x90M\x8FI\x97\xB9\x82\xF0\x88?\xA1\x82\xB7\x82\xE9\x83p\x83P\x83b\x83g(block0)\x82?T\x83C\x83Y\x82\xF0\x95K\x97v\x8D?\xAC\x8C\xC0(128byte)\x82?\xB5\x82\xBD\x81Bmlukoshkov \x82?\xB4\x8E?\xB5\x82?\xB7
  • YMODEM \x82ő\x97\x90M\x82\xB7\x82\xE9\x83t\x83@\x83C\x83\x8B\x8F\xEE\x95\xF1\x82?p\x83P\x83b\x83g\x82\xF0\x81A\x95K\x97v\x82??\xAB\x82??\xB7\x82\xA2\x83p\x83P\x83b\x83g(128 or 1024byte)\x82??\xE9\x82悤\x82?\xB5\x82\xBD
  • +
  • dirnamebox \x83}\x83N\x83\x8D\x83R\x83}\x83\x93\x83h\x82\xF0\x92?\xC1\x82\xB5\x82\xBD\x81B
  • getmodemstatus \x83}\x83N\x83\x8D\x83R\x83}\x83\x93\x83h\x82\xF0\x92?\xC1\x82\xB5\x82\xBD\x81B
  • Modified: trunk/doc/ja/html/macro/command/index.html =================================================================== --- trunk/doc/ja/html/macro/command/index.html 2015-02-13 08:57:40 UTC (rev 5779) +++ trunk/doc/ja/html/macro/command/index.html 2015-02-13 08:59:35 UTC (rev 5780) @@ -201,6 +201,7 @@
  • crc32 (\x83o\x81[\x83W\x83\x87\x83\x934.60\x88?~)
  • crc32file (\x83o\x81[\x83W\x83\x87\x83\x934.60\x88?~)
  • exec +
  • dirnamebox (\x83o\x81[\x83W\x83\x87\x83\x934.86\x88?~)
  • filenamebox (\x83o\x81[\x83W\x83\x87\x83\x934.54\x88?~)
  • getdate
  • getenv Modified: trunk/doc/ja/teraterm.hhc =================================================================== --- trunk/doc/ja/teraterm.hhc 2015-02-13 08:57:40 UTC (rev 5779) +++ trunk/doc/ja/teraterm.hhc 2015-02-13 08:59:35 UTC (rev 5780) @@ -1431,6 +1431,11 @@
  • + + + + +
  • Modified: trunk/doc/ja/teraterm.hhp =================================================================== --- trunk/doc/ja/teraterm.hhp 2015-02-13 08:57:40 UTC (rev 5779) +++ trunk/doc/ja/teraterm.hhp 2015-02-13 08:59:35 UTC (rev 5780) @@ -190,6 +190,7 @@ HlpMacroCommandCygConnect=html\macro\command\cygconnect.html HlpMacroCommandDelpassword=html\macro\command\delpassword.html HlpMacroCommandDirname=html\macro\command\dirname.html +HlpMacroCommandDirnamebox=html\macro\command\dirnamebox.html HlpMacroCommandDisconnect=html\macro\command\disconnect.html HlpMacroCommandDispstr=html\macro\command\dispstr.html HlpMacroCommandDo=html\macro\command\doloop.html From svnnotify @ sourceforge.jp Sat Feb 14 07:54:42 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 14 Feb 2015 07:54:42 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODFdICDjg5XjgqHjgqTjg6vov73liqA=?= =?utf-8?b?5ryP44KM?= Message-ID: <1423868082.509904.20803.nullmailer@users.sourceforge.jp> Revision: 5781 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5781 Author: maya Date: 2015-02-14 07:54:40 +0900 (Sat, 14 Feb 2015) Log Message: ----------- ファイル追加漏れ Modified Paths: -------------- trunk/doc/en/html/macro/command/index.html trunk/doc/ja/html/macro/command/index.html Added Paths: ----------- trunk/doc/en/html/macro/command/dirnamebox.html trunk/doc/ja/html/macro/command/dirnamebox.html -------------- next part -------------- Added: trunk/doc/en/html/macro/command/dirnamebox.html =================================================================== --- trunk/doc/en/html/macro/command/dirnamebox.html (rev 0) +++ trunk/doc/en/html/macro/command/dirnamebox.html 2015-02-13 22:54:40 UTC (rev 5781) @@ -0,0 +1,57 @@ + + + + + dirnamebox + + + + + + + +

    dirnamebox

    + +

    + +

    + +
    +dirnamebox <title> [<initialdir>]
    +
    + +

    Parameters

    + +
    +
    string <title>
    +
    The titie of dialog box
    + +
    string <initialdir> (optional default="")
    + + +
    + +

    Return Value

    + +
    +
    System variable <result>
    +
    If the user specifies a directory name and clicks OK button, set to 1. The directory name is stored in "inputstr."
    + If the user cancels or closes the dialog, set to zero.
    + +
    System variable <inputstr>
    +
    The directory name entered by the user
    +
    + +

    Example

    + +
    +dirnamebox 'select a directory'
    +if result<>0 then
    +	messagebox inputstr 'selected directory'
    +endif
    +
    + + + Modified: trunk/doc/en/html/macro/command/index.html =================================================================== --- trunk/doc/en/html/macro/command/index.html 2015-02-13 08:59:35 UTC (rev 5780) +++ trunk/doc/en/html/macro/command/index.html 2015-02-13 22:54:40 UTC (rev 5781) @@ -201,7 +201,7 @@
  • crc32 (version 4.60 or later)
  • crc32file (version 4.60 or later)
  • exec -
  • dirnamebox (version 4.86 or later) +
  • dirnamebox (version 4.86 or later)
  • filenamebox (version 4.54 or later)
  • getdate
  • getenv Added: trunk/doc/ja/html/macro/command/dirnamebox.html =================================================================== --- trunk/doc/ja/html/macro/command/dirnamebox.html (rev 0) +++ trunk/doc/ja/html/macro/command/dirnamebox.html 2015-02-13 22:54:40 UTC (rev 5781) @@ -0,0 +1,56 @@ + + + + + dirnamebox + + + + + + + +

    dirnamebox

    + +

    +\x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x96\xBC\x82\xF0\x91I\x91\xF0\x82\xB7\x82\xE9\x83_\x83C\x83A\x83\x8D\x83O\x83{\x83b\x83N\x83X\x82\xF0\x8AJ\x82\xAD\x81B +

    + +
    +dirnamebox <title> [<initialdir>]
    +
    + +

    \x83p\x83\x89\x83\x81\x81[\x83^

    + +
    +
    \x95\xB6\x8E\x9A\x97\xF1 <title>
    +
    \x83_\x83C\x83A\x83\x8D\x83O\x83{\x83b\x83N\x83X\x82?^\x83C\x83g\x83\x8B
    + +
    \x95\xB6\x8E\x9A\x97\xF1 <initialdir> (\x83I\x83v\x83V\x83\x87\x83\x93 \x83f\x83t\x83H\x83\x8B\x83g="")
    +
    \x83_\x83C\x83A\x83\x8D\x83O\x83{\x83b\x83N\x83X\x82?\x89\x8A\xFA\x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82\xF0\x8Ew\x92?\x82\xE9\x81B
    + \x8B?\x9A\x97\xF1\x82△\x8C\xF8\x82?p\x83X\x82\xF0\x8Ew\x92?\x82\xE9\x82?A\x83f\x83X\x83N\x83g\x83b\x83v\x82\xAA\x8F\x89\x8A\xFA\x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82??\xE9\x81B
    +
    + +

    \x95?\xE8\x92l

    + +
    +
    \x83V\x83X\x83e\x83\x80\x95?\x94 <result>
    +
    \x83\x86\x81[\x83U\x82\xAA\x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x96\xBC\x82\xF0\x91I\x91\xF0\x82\xB5\x82\xC4OK\x83{\x83^\x83\x93\x82\xF0\x89\x9F\x82\xB7\x82\xC61\x82\xAA\x8Ai\x94[\x82\xB3\x82\xEA\x81Ainputstr\x82?t\x83H\x83\x8B\x83_\x96\xBC\x82\xAA\x8Ai\x94[\x82\xB3\x82\xEA\x82\xE9\x81B
    + \x83\x86\x81[\x83U\x82\xAA\x83_\x83C\x83A\x83\x8D\x83O\x82\xF0\x83L\x83\x83\x83\x93\x83Z\x83\x8B\x82\xB5\x82\xBD\x82\xE8\x95?\xB6\x82\xBD\x82?\x82\xE9\x82\xC60\x82\xAA\x8Ai\x94[\x82\xB3\x82\xEA\x82\xE9\x81B
    + +
    \x83V\x83X\x83e\x83\x80\x95?\x94 <inputstr>
    +
    \x91I\x91\xF0\x82\xB3\x82?\x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x96\xBC
    +
    + +

    \x97\xE1

    + +
    +dirnamebox 'select a directory'
    +if result<>0 then
    +	messagebox inputstr 'selected directory'
    +endif
    +
    + + + Modified: trunk/doc/ja/html/macro/command/index.html =================================================================== --- trunk/doc/ja/html/macro/command/index.html 2015-02-13 08:59:35 UTC (rev 5780) +++ trunk/doc/ja/html/macro/command/index.html 2015-02-13 22:54:40 UTC (rev 5781) @@ -201,7 +201,7 @@
  • crc32 (\x83o\x81[\x83W\x83\x87\x83\x934.60\x88?~)
  • crc32file (\x83o\x81[\x83W\x83\x87\x83\x934.60\x88?~)
  • exec -
  • dirnamebox (\x83o\x81[\x83W\x83\x87\x83\x934.86\x88?~) +
  • dirnamebox (\x83o\x81[\x83W\x83\x87\x83\x934.86\x88?~)
  • filenamebox (\x83o\x81[\x83W\x83\x87\x83\x934.54\x88?~)
  • getdate
  • getenv From svnnotify @ sourceforge.jp Sat Feb 14 22:24:03 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 14 Feb 2015 22:24:03 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODJdICDoi7HoqLM=?= Message-ID: <1423920243.938305.25774.nullmailer@users.sourceforge.jp> Revision: 5782 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5782 Author: yutakapon Date: 2015-02-14 22:24:00 +0900 (Sat, 14 Feb 2015) Log Message: ----------- 英訳 Modified Paths: -------------- trunk/doc/en/html/macro/command/dirnamebox.html -------------- next part -------------- Modified: trunk/doc/en/html/macro/command/dirnamebox.html =================================================================== --- trunk/doc/en/html/macro/command/dirnamebox.html 2015-02-13 22:54:40 UTC (rev 5781) +++ trunk/doc/en/html/macro/command/dirnamebox.html 2015-02-14 13:24:00 UTC (rev 5782) @@ -14,7 +14,7 @@

    dirnamebox

    - +Open a dialog can be selected a directory.

    @@ -28,8 +28,8 @@
     	
    The titie of dialog box
    string <initialdir> (optional default="")
    - +
    Initial directory of dialog box.
    + Whne an empty string and an invalid path is specified, the initial directory is the user desktop.
    From svnnotify @ sourceforge.jp Sun Feb 15 23:07:30 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 15 Feb 2015 23:07:30 +0900 Subject: [Ttssh2-commit] [5783] typo fix. Message-ID: <1424009250.094994.30621.nullmailer@users.sourceforge.jp> Revision: 5783 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5783 Author: maya Date: 2015-02-15 23:07:29 +0900 (Sun, 15 Feb 2015) Log Message: ----------- typo fix. Modified Paths: -------------- trunk/doc/en/html/macro/command/dirnamebox.html trunk/doc/en/html/macro/command/filenamebox.html -------------- next part -------------- Modified: trunk/doc/en/html/macro/command/dirnamebox.html =================================================================== --- trunk/doc/en/html/macro/command/dirnamebox.html 2015-02-14 13:24:00 UTC (rev 5782) +++ trunk/doc/en/html/macro/command/dirnamebox.html 2015-02-15 14:07:29 UTC (rev 5783) @@ -30,7 +30,6 @@
    string <initialdir> (optional default="")
    Initial directory of dialog box.
    Whne an empty string and an invalid path is specified, the initial directory is the user desktop.
    -

    Return Value

    Modified: trunk/doc/en/html/macro/command/filenamebox.html =================================================================== --- trunk/doc/en/html/macro/command/filenamebox.html 2015-02-14 13:24:00 UTC (rev 5782) +++ trunk/doc/en/html/macro/command/filenamebox.html 2015-02-15 14:07:29 UTC (rev 5783) @@ -14,7 +14,7 @@

    filenamebox

    -Displays a dialog box prompting user to input a string. +Open a dialog can be selected a file.

    
    From svnnotify @ sourceforge.jp  Sat Feb 21 17:25:24 2015
    From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
    Date: Sat, 21 Feb 2015 17:25:24 +0900
    Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODRdICDjg57jgq/jg63jgYvjgonotbc=?=
     =?utf-8?b?5YuV44GX44Gf5aC05ZCI44CBS0VZQk9BUkQuQ05G44GM6Kqt44G/6L6844G+?=
     =?utf-8?b?44KM44Gq44GE5ZWP6aGM44KS5L+u5q2j?=
    Message-ID: <1424507124.520301.11469.nullmailer@users.sourceforge.jp>
    
    Revision: 5784
              http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5784
    Author:   maya
    Date:     2015-02-21 17:25:23 +0900 (Sat, 21 Feb 2015)
    Log Message:
    -----------
    マクロから起動した場合、KEYBOARD.CNFが読み込まれない問題を修正
      http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=34898
      共有メモリの keycode map (pm->km) を使うのをやめた
    
    Modified Paths:
    --------------
        trunk/teraterm/teraterm/keyboard.c
        trunk/teraterm/teraterm/vtwin.cpp
    
    -------------- next part --------------
    Modified: trunk/teraterm/teraterm/keyboard.c
    ===================================================================
    --- trunk/teraterm/teraterm/keyboard.c	2015-02-15 14:07:29 UTC (rev 5783)
    +++ trunk/teraterm/teraterm/keyboard.c	2015-02-21 08:25:23 UTC (rev 5784)
    @@ -45,7 +45,13 @@
       char TempDir[MAXPATHLEN];
       char TempName[MAX_PATH];
     
    +#ifdef SHARED_KEYMAP
       if ( strlen(ts.KeyCnfFN)==0 ) return;
    +#else
    +  if ( strlen(ts.KeyCnfFN)==0 ) {
    +    strncpy_s(ts.KeyCnfFN, sizeof(ts.KeyCnfFN),"KEYBOARD.CNF", _TRUNCATE);
    +  }
    +#endif
       ExtractFileName(ts.KeyCnfFN,TempName,sizeof(TempName));
       ExtractDirName(ts.KeyCnfFN,TempDir);
       if (TempDir[0]==0)
    @@ -64,6 +70,7 @@
           (*ReadKeyboardCnf)(ts.KeyCnfFN, KeyMap, TRUE);
         FreeTTSET();
       }
    +#ifdef SHARED_KEYMAP
       if ((_stricmp(TempDir,ts.HomeDir)==0) &&
           (_stricmp(TempName,"KEYBOARD.CNF")==0))
       {
    @@ -71,6 +78,7 @@
          free(KeyMap);
          KeyMap = NULL;
       }
    +#endif
     }
     
     void ClearUserKey()
    
    Modified: trunk/teraterm/teraterm/vtwin.cpp
    ===================================================================
    --- trunk/teraterm/teraterm/vtwin.cpp	2015-02-15 14:07:29 UTC (rev 5783)
    +++ trunk/teraterm/teraterm/vtwin.cpp	2015-02-21 08:25:23 UTC (rev 5784)
    @@ -512,10 +512,12 @@
     #ifdef ALPHABLEND_TYPE2
     	DWORD ExStyle;
     #endif
    -	char Temp[MAX_PATH];
     	char *Param;
     	int CmdShow;
    +#ifdef SHARED_KEYMAP
    +	char Temp[MAX_PATH];
     	PKeyMap tempkm;
    +#endif
     	int fuLoad = LR_DEFAULTCOLOR;
     
     #ifdef _DEBUG
    @@ -536,6 +538,7 @@
     		if (LoadTTSET()) {
     			/* read setup info from "teraterm.ini" */
     			(*ReadIniFile)(ts.SetupFName, &ts);
    +#ifdef SHARED_KEYMAP
     			/* read keycode map from "keyboard.cnf" */
     			tempkm = (PKeyMap)malloc(sizeof(TKeyMap));
     			if (tempkm!=NULL) {
    @@ -544,7 +547,9 @@
     				strncat_s(Temp,sizeof(Temp),"KEYBOARD.CNF",_TRUNCATE);
     				(*ReadKeyboardCnf)(Temp,tempkm,TRUE);
     			}
    +#endif
     			FreeTTSET();
    +#ifdef SHARED_KEYMAP
     			/* store default sets in TTCMN */
     #if 0
     			ChangeDefaultSet(&ts,tempkm);
    @@ -552,6 +557,7 @@
     			ChangeDefaultSet(NULL,tempkm);
     #endif
     			if (tempkm!=NULL) free(tempkm);
    +#endif
     		}
     
     	} else {
    @@ -559,6 +565,7 @@
     		if (LoadTTSET()) {
     			/* read setup info from "teraterm.ini" */
     			(*ReadIniFile)(ts.SetupFName, &ts);
    +#ifdef SHARED_KEYMAP
     			/* read keycode map from "keyboard.cnf" */
     			tempkm = (PKeyMap)malloc(sizeof(TKeyMap));
     			if (tempkm!=NULL) {
    @@ -567,11 +574,14 @@
     				strncat_s(Temp,sizeof(Temp),"KEYBOARD.CNF",_TRUNCATE);
     				(*ReadKeyboardCnf)(Temp,tempkm,TRUE);
     			}
    +#endif
     			FreeTTSET();
    +#ifdef SHARED_KEYMAP
     			/* store default sets in TTCMN */
     			if (tempkm!=NULL) {
     				free(tempkm);
     			}
    +#endif
     		}
     
     	}
    
    From svnnotify @ sourceforge.jp  Sat Feb 21 18:06:02 2015
    From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
    Date: Sat, 21 Feb 2015 18:06:02 +0900
    Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODVdICDjg4njgq3jg6Xjg6Hjg7Pjg4g=?=
     =?utf-8?b?5pu05paw?=
    Message-ID: <1424509562.899565.11891.nullmailer@users.sourceforge.jp>
    
    Revision: 5785
              http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5785
    Author:   maya
    Date:     2015-02-21 18:05:58 +0900 (Sat, 21 Feb 2015)
    Log Message:
    -----------
    ドキュメント更新
      r5784 ぶん追加
    
    Revision Links:
    --------------
        http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5784
    
    Modified Paths:
    --------------
        trunk/doc/en/html/about/history.html
        trunk/doc/ja/html/about/history.html
    
    -------------- next part --------------
    Modified: trunk/doc/en/html/about/history.html
    ===================================================================
    --- trunk/doc/en/html/about/history.html	2015-02-21 08:25:23 UTC (rev 5784)
    +++ trunk/doc/en/html/about/history.html	2015-02-21 09:05:58 UTC (rev 5785)
    @@ -44,6 +44,7 @@
     
       
  • Bug fixes
      +
    • YMODEM: When the data is sent, the CANCEL command from the remote host does not work well.
    • YMODEM: When the received file information contains only a file name, an end of the file name is broken.
    • YMODEM: When the received file information does not include the file size, the file data can not be recorded well.
    • Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2015-02-21 08:25:23 UTC (rev 5784) +++ trunk/doc/ja/html/about/history.html 2015-02-21 09:05:58 UTC (rev 5785) @@ -44,6 +44,7 @@
    • \x83o\x83O\x8FC\x90\xB3
        +
      • \x83}\x83N\x83\x8D\x82\xA9\x82\xE7\x8BN\x93\xAE\x82\xB5\x82\xBD\x8F?\x82\xC9 KEYBOARD.CNF \x82??肪\x94\xBD\x89f\x82\xB3\x82\xEA\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
      • YMODEM \x91\x97\x90M\x8E\x9E\x82?\x8A\x83\x82\x81[\x83g\x82\xA9\x82\xE7\x82?L\x83\x83\x83\x93\x83Z\x83\x8B\x82?\xB5\x82\xAD\x8F\x88\x97\x9D\x82\xB5\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
      • YMODEM \x82?\xF3\x90M\x82\xB5\x82\xBD\x83t\x83@\x83C\x83\x8B\x8F\xEE\x95?Ō\xE3\x82?Ńt\x83@\x83C\x83\x8B\x96\xBC\x82\xBE\x82\xC1\x82\xBD\x8F?\x82?A\x95?\xB6\x82\xB3\x82\xEA\x82\xE9\x83t\x83@\x83C\x83\x8B\x96\xBC\x82?I\x92[\x82\xAA\x89\xF3\x82\xEA\x82\xE9\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
      • YMODEM \x82?\xF3\x90M\x82\xB5\x82\xBD\x83t\x83@\x83C\x83\x8B\x8F\xEE\x95\xF1\x82?t\x83@\x83C\x83\x8B\x83T\x83C\x83Y\x82\xAA\x82?\xA9\x82\xC1\x82\xBD\x8F?\x82?A\x83t\x83@\x83C\x83\x8B\x82?\x86\x90g\x82\xAA\x95?\xB6\x82\xB3\x82\xEA\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
      • From svnnotify @ sourceforge.jp Sat Feb 21 18:15:43 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 21 Feb 2015 18:15:43 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODZdICDoi7HoqLM=?= Message-ID: <1424510143.543972.16489.nullmailer@users.sourceforge.jp> Revision: 5786 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5786 Author: yutakapon Date: 2015-02-21 18:15:42 +0900 (Sat, 21 Feb 2015) Log Message: ----------- 英訳 Modified Paths: -------------- trunk/doc/en/html/about/history.html -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-21 09:05:58 UTC (rev 5785) +++ trunk/doc/en/html/about/history.html 2015-02-21 09:15:42 UTC (rev 5786) @@ -44,7 +44,7 @@
      • Bug fixes
          - +
        • The KEYBOARD.CNF file can not be loaded when the Tera Term is performed with the macro script.
        • YMODEM: When the data is sent, the CANCEL command from the remote host does not work well.
        • YMODEM: When the received file information contains only a file name, an end of the file name is broken.
        • YMODEM: When the received file information does not include the file size, the file data can not be recorded well.
        • From svnnotify @ sourceforge.jp Sat Feb 21 19:38:07 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 21 Feb 2015 19:38:07 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODddICBURVJNIOOBjOato+OBl+OBjw==?= =?utf-8?b?44K744OD44OI44GV44KM44Gq44GE5ZWP6aGM44G444Gu5a++5Yem?= Message-ID: <1424515087.962488.27355.nullmailer@users.sourceforge.jp> Revision: 5787 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5787 Author: doda Date: 2015-02-21 19:38:05 +0900 (Sat, 21 Feb 2015) Log Message: ----------- TERM が正しくセットされない問題への対処 Modified Paths: -------------- trunk/cygterm/cygterm.cc -------------- next part -------------- Modified: trunk/cygterm/cygterm.cc =================================================================== --- trunk/cygterm/cygterm.cc 2015-02-21 09:15:42 UTC (rev 5786) +++ trunk/cygterm/cygterm.cc 2015-02-21 10:38:05 UTC (rev 5787) @@ -901,6 +901,7 @@ //-----------------// int exec_shell(int* sh_pid) { + char env_term[64]; // open pty master int master; if ((master = open(DEVPTY, O_RDWR)) < 0) { @@ -938,7 +939,6 @@ // set env vars if (*term_type != 0) { // set terminal type to $TERM - char env_term[64]; sprintf(env_term, "TERM=%s", term_type); putenv(env_term); } From svnnotify @ sourceforge.jp Sat Feb 21 20:47:17 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 21 Feb 2015 20:47:17 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODhdICDjg5Djg7zjgrjjg6fjg7Pmm7Q=?= =?utf-8?b?5paw?= Message-ID: <1424519237.368378.23619.nullmailer@users.sourceforge.jp> Revision: 5788 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5788 Author: maya Date: 2015-02-21 20:47:16 +0900 (Sat, 21 Feb 2015) Log Message: ----------- バージョン更新 ドキュメント更新 r5787 ぶん Revision Links: -------------- http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5787 Modified Paths: -------------- trunk/cygterm/cygterm.cc -------------- next part -------------- Modified: trunk/cygterm/cygterm.cc =================================================================== --- trunk/cygterm/cygterm.cc 2015-02-21 10:38:05 UTC (rev 5787) +++ trunk/cygterm/cygterm.cc 2015-02-21 11:47:16 UTC (rev 5788) @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // CygTerm+ - yet another Cygwin console -// Copyright (c) 2006-2011 TeraTerm Project +// Copyright (c) 2006-2015 TeraTerm Project // Copyright (C) 2000-2006 NSym. //--------------------------------------------------------------------------- // This program is free software; you can redistribute it and/or modify it @@ -120,9 +120,17 @@ // patch level 23 - display errormessage when chdir failed. // Written by IWAMOTO Kouichi. (doda) // +///////////////////////////////////////////////////////////////////////////// +// patch level 24 - support for 64bit Cygwin +// Written by NAGATA Shinya. (maya) +// +///////////////////////////////////////////////////////////////////////////// +// patch level 25 - +// Written by IWAMOTO Kouichi. (doda) +// static char Program[] = "CygTerm+"; -static char Version[] = "version 1.07_23 (2011/4/18)"; +static char Version[] = "version 1.07_25 (2015/02/21)"; #include #include From svnnotify @ sourceforge.jp Sat Feb 21 20:49:16 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 21 Feb 2015 20:49:16 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3ODldICDjg4njgq3jg6Xjg6Hjg7Pjg4g=?= =?utf-8?b?5pu05pawIHI1Nzg3IOOBtuOCkw==?= Message-ID: <1424519356.139358.1128.nullmailer@users.sourceforge.jp> Revision: 5789 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5789 Author: maya Date: 2015-02-21 20:49:16 +0900 (Sat, 21 Feb 2015) Log Message: ----------- ドキュメント更新 r5787 ぶん Revision Links: -------------- http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5787 Modified Paths: -------------- trunk/cygterm/README trunk/cygterm/README-j trunk/doc/en/html/about/history.html trunk/doc/ja/html/about/history.html -------------- next part -------------- Modified: trunk/cygterm/README =================================================================== --- trunk/cygterm/README 2015-02-21 11:47:16 UTC (rev 5788) +++ trunk/cygterm/README 2015-02-21 11:49:16 UTC (rev 5789) @@ -3,7 +3,7 @@ Using Cygwin with a terminal emulator. - Copyright (c) 2006-2013 TeraTerm Project + Copyright (c) 2006-2015 TeraTerm Project http://ttssh2.sourceforge.jp/ Based on CygTerm by Original developer: @@ -266,6 +266,9 @@ zsh 4.3.10 // C H A N G E S // +v1.07_25 2015/02/21 (by doda) + * + v1.07_24 2013/08/15 (by maya) * Support for 64bit Cygwin. Modified: trunk/cygterm/README-j =================================================================== --- trunk/cygterm/README-j 2015-02-21 11:47:16 UTC (rev 5788) +++ trunk/cygterm/README-j 2015-02-21 11:49:16 UTC (rev 5789) @@ -3,7 +3,7 @@ $B%?!<%_%J%k!&%(%_%e%l!<%?$G(B Cygwin $B$r;H$&!#(B - Copyright (c) 2006-2013 TeraTerm Project + Copyright (c) 2006-2015 TeraTerm Project http://ttssh2.sourceforge.jp/ Based on CygTerm by Original developer: @@ -278,6 +278,9 @@ zsh 4.3.10 // $BJQ(B $B99(B $BMz(B $BNr(B // +v1.07_25 2015/02/21 (by maya) + * TERM $B4D6-JQ?t$, @ 5$7$/@_Dj$5$l$k$h$&$K$7$?!#(B + v1.07_24 2013/08/15 (by maya) * 64bit Cygwin $B$G$bF0:n$9$k$h$&$K$7$?!#(B Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-21 11:47:16 UTC (rev 5788) +++ trunk/doc/en/html/about/history.html 2015-02-21 11:49:16 UTC (rev 5789) @@ -57,6 +57,7 @@
        • Misc
          • upgraded TTSSH to 2.72
          • +
          • upgraded CygTerm+ to 1.07_25
          • upgraded Oniguruma to 5.9.6.
        • @@ -3512,6 +3513,11 @@

          CygTerm+

          +

          v1.07_25 2015/02/21 (by doda)

          +
            + +
          +

          v1.07_24 2013/08/15 (by maya)

          • Support for 64bit Cygwin.
          • Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2015-02-21 11:47:16 UTC (rev 5788) +++ trunk/doc/ja/html/about/history.html 2015-02-21 11:49:16 UTC (rev 5789) @@ -57,6 +57,7 @@
          • \x82\xBB\x82?\xBC
            • TTSSH(2.72)\x82?\xB7\x82\xB5\x91?\xA6\x82\xBD\x81B
            • +
            • CygTerm+ 1.07_25\x82?\xB7\x82\xB5\x91?\xA6\x82\xBD\x81B
            • Oniguruma 5.9.6\x82?\xB7\x82\xB5\x91?\xA6\x82\xBD
          • @@ -3517,6 +3518,11 @@

            CygTerm+

            +

            v1.07_25 2015/02/21 (by doda)

            +
              +
            • TERM \x8A?\xAB\x95?\x94\x82\xAA\x90\xB3\x82\xB5\x82\xAD\x90??\x82\xEA\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B
            • +
            +

            v1.07_24 2013/08/15 (by maya)

            • 64bit Cygwin \x82ł\xE0\x93\xAE\x8D?\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B
            • From svnnotify @ sourceforge.jp Sat Feb 21 20:50:07 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 21 Feb 2015 20:50:07 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTBdICA2NGJpdOeJiOODkOOCpOODig==?= =?utf-8?b?44Oq44KS5pu05paw?= Message-ID: <1424519407.023396.4696.nullmailer@users.sourceforge.jp> Revision: 5790 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5790 Author: maya Date: 2015-02-21 20:50:06 +0900 (Sat, 21 Feb 2015) Log Message: ----------- 64bit版バイナリを更新 Modified Paths: -------------- trunk/cygterm/cygterm+-x86_64/cygterm.exe -------------- next part -------------- Modified: trunk/cygterm/cygterm+-x86_64/cygterm.exe =================================================================== (Binary files differ) From svnnotify @ sourceforge.jp Sat Feb 21 21:47:08 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 21 Feb 2015 21:47:08 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTFdICDoi7HoqLM=?= Message-ID: <1424522828.463372.2905.nullmailer@users.sourceforge.jp> Revision: 5791 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5791 Author: yutakapon Date: 2015-02-21 21:47:04 +0900 (Sat, 21 Feb 2015) Log Message: ----------- 英訳 Modified Paths: -------------- trunk/doc/en/html/about/history.html -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-21 11:50:06 UTC (rev 5790) +++ trunk/doc/en/html/about/history.html 2015-02-21 12:47:04 UTC (rev 5791) @@ -3515,7 +3515,7 @@

              v1.07_25 2015/02/21 (by doda)

                - +
              • Bug fix: The TERM environment variable can not be configured.

              v1.07_24 2013/08/15 (by maya)

              From svnnotify @ sourceforge.jp Sat Feb 21 23:53:31 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 21 Feb 2015 23:53:31 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTJdICDjg4njgq3jg6Xjg6Hjg7Pjg4g=?= =?utf-8?b?5pu05paw?= Message-ID: <1424530411.905539.13564.nullmailer@users.sourceforge.jp> Revision: 5792 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5792 Author: maya Date: 2015-02-21 23:53:27 +0900 (Sat, 21 Feb 2015) Log Message: ----------- ドキュメント更新 Modified Paths: -------------- trunk/cygterm/README trunk/cygterm/README-j trunk/cygterm/cygterm.cc -------------- next part -------------- Modified: trunk/cygterm/README =================================================================== --- trunk/cygterm/README 2015-02-21 12:47:04 UTC (rev 5791) +++ trunk/cygterm/README 2015-02-21 14:53:27 UTC (rev 5792) @@ -267,10 +267,10 @@ // C H A N G E S // v1.07_25 2015/02/21 (by doda) - * + * Bug fix: The TERM environment variable can not be configured. v1.07_24 2013/08/15 (by maya) - * Support for 64bit Cygwin. + * Support for 64bit Cygwin. (cyglaunch) v1.07_23 2011/04/18 (by doda) * Display error message when chdir() was failed. Modified: trunk/cygterm/README-j =================================================================== --- trunk/cygterm/README-j 2015-02-21 12:47:04 UTC (rev 5791) +++ trunk/cygterm/README-j 2015-02-21 14:53:27 UTC (rev 5792) @@ -282,7 +282,7 @@ * TERM $B4D6-JQ?t$, @ 5$7$/@_Dj$5$l$k$h$&$K$7$?!#(B v1.07_24 2013/08/15 (by maya) - * 64bit Cygwin $B$G$bF0:n$9$k$h$&$K$7$?!#(B + * 64bit Cygwin $B$G$bF0:n$9$k$h$&$K$7$?!#(B (cyglaunch) v1.07_23 2011/04/18 (by doda) * -d $B%*%W%7%g%s$G;XDj$5$l$?%G%#%l%/%H%j$X$N0\F0$,<:GT$7$?;~!"(B Modified: trunk/cygterm/cygterm.cc =================================================================== --- trunk/cygterm/cygterm.cc 2015-02-21 12:47:04 UTC (rev 5791) +++ trunk/cygterm/cygterm.cc 2015-02-21 14:53:27 UTC (rev 5792) @@ -31,103 +31,6 @@ // (English) http://www.dd.iij4u.or.jp/~nsym/cygwin/cygterm/index-e.html // (Japanese) http://www.dd.iij4u.or.jp/~nsym/cygwin/cygterm/index.html // -///////////////////////////////////////////////////////////////////////////// -// patch level 01 - support for "~/.cygtermrc" and "/etc/cygterm.conf" -// Written by BabyDaemon. (babydamons @ yahoo.co.jp) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 03 - change directory to home only if HOME_CHDIR is set -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 04 - add login shell option -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 05 - add mutex -// Written by NAGATA Shinya. (maya.negeta @ gmail.com) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 06 - limit a parameter length of -s and -t option -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 07 - use %HOME% for home directory -// Written by NAGATA Shinya. (maya.negeta @ gmail.com) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 08 - change the priority of config file -// Written by NAGATA Shinya. (maya.negeta @ gmail.com) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 09 - get shell from /etc/passwd if SHELL is not specified -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 10 - to get user name, use getlogin() instead of $USERNAME -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 11 - stopped using %HOME% and /etc/passwd for home directory -// changed the priority of config files -// Written by NAGATA Shinya. (maya.negeta @ gmail.com) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 12 - add SOCKET_TIMEOUT setting. -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 13 - added '-d' option that is specifies the start directory -// Written by NAGATA Shinya. (maya.negeta @ gmail.com) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 14 - added '-o' option that is specifies additional option for terminal emulator -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 15 - add ssh-agent proxy support -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 16 - added '-A' option and change '-a' option -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 17 - added TELNET SGA/ECHO negotiation -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 18 - delete double quote character from '-d' option's parameter -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 19 - accept keyword "AUTO" with '-s' option -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 20 - directory change timing with '-d' option is delayed -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 21 - add mutex -// Written by NAGATA Shinya. (maya) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 22 - delete mutex -// Written by NAGATA Shinya. (maya) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 23 - display errormessage when chdir failed. -// Written by IWAMOTO Kouichi. (doda) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 24 - support for 64bit Cygwin -// Written by NAGATA Shinya. (maya) -// -///////////////////////////////////////////////////////////////////////////// -// patch level 25 - -// Written by IWAMOTO Kouichi. (doda) -// static char Program[] = "CygTerm+"; static char Version[] = "version 1.07_25 (2015/02/21)"; From svnnotify @ sourceforge.jp Sun Feb 22 22:04:29 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 22 Feb 2015 22:04:29 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTNdICBY6Lui6YCB5pmC44Gu6Lui6YCB?= =?utf-8?b?5YWI44KS44Kz44Oe44Oz44OJ44Op44Kk44Oz44Gn5oyH5a6a44Gn44GN44KL?= =?utf-8?b?44KI44GG44Gr44GX44Gf44CC?= Message-ID: <1424610269.677195.32124.nullmailer@users.sourceforge.jp> Revision: 5793 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5793 Author: doda Date: 2015-02-22 22:04:28 +0900 (Sun, 22 Feb 2015) Log Message: ----------- X転送時の転送先をコマンドラインで指定できるようにした。 Modified Paths: -------------- trunk/ttssh2/ttxssh/fwdui.c trunk/ttssh2/ttxssh/ttxssh.c trunk/ttssh2/ttxssh/ttxssh.h trunk/ttssh2/ttxssh/x11util.c trunk/ttssh2/ttxssh/x11util.h -------------- next part -------------- Modified: trunk/ttssh2/ttxssh/fwdui.c =================================================================== --- trunk/ttssh2/ttxssh/fwdui.c 2015-02-21 14:53:27 UTC (rev 5792) +++ trunk/ttssh2/ttxssh/fwdui.c 2015-02-22 13:04:28 UTC (rev 5793) @@ -382,7 +382,7 @@ { spec->type = FWD_REMOTE_X11_TO_LOCAL; spec->from_port = -1; - X11_get_DISPLAY_info(spec->to_host, sizeof(spec->to_host), + X11_get_DISPLAY_info(pvar, spec->to_host, sizeof(spec->to_host), &spec->to_port, &spec->x11_screen); UTIL_get_lang_msg("MSG_FWD_REMOTE_XSERVER", pvar, "remote X server"); strncpy_s(spec->from_port_name, sizeof(spec->from_port_name), Modified: trunk/ttssh2/ttxssh/ttxssh.c =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.c 2015-02-21 14:53:27 UTC (rev 5792) +++ trunk/ttssh2/ttxssh/ttxssh.c 2015-02-22 13:04:28 UTC (rev 5793) @@ -473,6 +473,8 @@ // \x83G\x83\x89\x81[\x82\xA8\x82\xE6\x82ьx\x8D\x90\x8E\x9E\x82?|\x83b\x83v\x83A\x83b\x83v\x83\x81\x83b\x83Z\x81[\x83W\x82\xF0\x97}\x8E~\x82\xB7\x82\xE9 (2014.6.26 yutaka) settings->DisablePopupMessage = GetPrivateProfileInt("TTSSH", "DisablePopupMessage", 0, fileName); + READ_STD_STRING_OPTION(X11Display); + clear_local_settings(pvar); } @@ -576,6 +578,8 @@ _itoa(settings->DisablePopupMessage, buf, 10); WritePrivateProfileString("TTSSH", "DisablePopupMessage", buf, fileName); + + WritePrivateProfileString("TTSSH", "X11Display", settings->X11Display, fileName); } @@ -1654,6 +1658,10 @@ sizeof(pvar->settings.DefaultForwarding), option + 5, _TRUNCATE); } + } else if (MATCH_STR(option + 4, "-display=") == 0) { + strncpy_s(pvar->settings.X11Display, + sizeof(pvar->settings.X11Display), + option + 13, _TRUNCATE); } else if (MATCH_STR(option + 4, "-f=") == 0) { read_ssh_options_from_user_file(pvar, option + 7); } else if (MATCH_STR(option + 4, "-v") == 0) { Modified: trunk/ttssh2/ttxssh/ttxssh.h =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.h 2015-02-21 14:53:27 UTC (rev 5792) +++ trunk/ttssh2/ttxssh/ttxssh.h 2015-02-22 13:04:28 UTC (rev 5793) @@ -157,6 +157,8 @@ int IconID; int DisablePopupMessage; + + char X11Display[128]; } TS_SSH; typedef struct _TInstVar { Modified: trunk/ttssh2/ttxssh/x11util.c =================================================================== --- trunk/ttssh2/ttxssh/x11util.c 2015-02-21 14:53:27 UTC (rev 5792) +++ trunk/ttssh2/ttxssh/x11util.c 2015-02-22 13:04:28 UTC (rev 5793) @@ -41,11 +41,9 @@ int init_data_len; } X11UnspoofingFilterClosure; -void X11_get_DISPLAY_info(char FAR * name_buf, int name_buf_len, - int FAR * port, int FAR * screen) +void parse_DISPLAY_str(char FAR * name_buf, int name_buf_len, + int FAR * port, int FAR * screen, char *DISPLAY) { - char FAR *DISPLAY = getenv("DISPLAY"); - strncpy_s(name_buf, name_buf_len, "localhost", _TRUNCATE); *port = 6000; *screen = 0; @@ -75,6 +73,20 @@ } } +void X11_get_DISPLAY_info(PTInstVar pvar, char FAR * name_buf, int name_buf_len, + int FAR * port, int FAR * screen) +{ + char FAR *DISPLAY = getenv("DISPLAY"); + + if (pvar->settings.X11Display[0] != 0) { + parse_DISPLAY_str(name_buf, name_buf_len, port, screen, pvar->settings.X11Display); + } + else { + parse_DISPLAY_str(name_buf, name_buf_len, port, screen, DISPLAY); + } +} + + X11AuthData FAR *X11_load_local_auth_data(int screen_num) { X11AuthData FAR *auth_data = Modified: trunk/ttssh2/ttxssh/x11util.h =================================================================== --- trunk/ttssh2/ttxssh/x11util.h 2015-02-21 14:53:27 UTC (rev 5792) +++ trunk/ttssh2/ttxssh/x11util.h 2015-02-22 13:04:28 UTC (rev 5793) @@ -49,7 +49,7 @@ #define X11_get_spoofed_protocol_data(d) ((d)->spoofed_data) #define X11_get_spoofed_protocol_data_len(d) ((d)->spoofed_data_len) -void X11_get_DISPLAY_info(char FAR * name_buf, int name_buf_len, int FAR * port, int FAR * screen); +void X11_get_DISPLAY_info(PTInstVar pvar, char FAR * name_buf, int name_buf_len, int FAR * port, int FAR * screen); X11AuthData FAR * X11_load_local_auth_data(int screen_num); void FAR * X11_init_unspoofing_filter(struct _TInstVar FAR * pvar, X11AuthData FAR * auth_data); From svnnotify @ sourceforge.jp Mon Feb 23 10:28:34 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 23 Feb 2015 10:28:34 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTRdICBXYXJuaW5nIOa2iOOBlw==?= Message-ID: <1424654914.684347.13808.nullmailer@users.sourceforge.jp> Revision: 5794 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5794 Author: doda Date: 2015-02-23 10:28:31 +0900 (Mon, 23 Feb 2015) Log Message: ----------- Warning 消し Modified Paths: -------------- trunk/cygterm/cygterm.cc -------------- next part -------------- Modified: trunk/cygterm/cygterm.cc =================================================================== --- trunk/cygterm/cygterm.cc 2015-02-22 13:04:28 UTC (rev 5793) +++ trunk/cygterm/cygterm.cc 2015-02-23 01:28:31 UTC (rev 5794) @@ -127,7 +127,7 @@ //=========================// // Win32-API error message // //-------------------------// -void api_error(char* string = "") +void api_error(const char* string = "") { char msg[1024]; char *ptr = msg; @@ -144,7 +144,7 @@ //=========================// // C-runtime error message // //-------------------------// -void c_error(char* string = "") +void c_error(const char* string = "") { char msg[1024]; char *ptr = msg; From svnnotify @ sourceforge.jp Mon Feb 23 10:43:29 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 23 Feb 2015 10:43:29 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTVdICDjg5Hjg6njg6Hjg7zjgr/nnIE=?= =?utf-8?b?55Wl5pmC44Gv5L2Z6KiI44Gq5pS56KGM44KS5ZCr44KB44Gq44GE44KI44GG?= =?utf-8?b?44Gr44GX44Gf?= Message-ID: <1424655809.289790.32098.nullmailer@users.sourceforge.jp> Revision: 5795 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5795 Author: doda Date: 2015-02-23 10:43:22 +0900 (Mon, 23 Feb 2015) Log Message: ----------- パラメータ省略時は余計な改行を含めないようにした # 最初からこうしておけばよかった…… Modified Paths: -------------- trunk/cygterm/cygterm.cc -------------- next part -------------- Modified: trunk/cygterm/cygterm.cc =================================================================== --- trunk/cygterm/cygterm.cc 2015-02-23 01:28:31 UTC (rev 5794) +++ trunk/cygterm/cygterm.cc 2015-02-23 01:43:22 UTC (rev 5795) @@ -127,7 +127,7 @@ //=========================// // Win32-API error message // //-------------------------// -void api_error(const char* string = "") +void api_error(const char* string = NULL) { char msg[1024]; char *ptr = msg; @@ -144,7 +144,7 @@ //=========================// // C-runtime error message // //-------------------------// -void c_error(const char* string = "") +void c_error(const char* string = NULL) { char msg[1024]; char *ptr = msg; From svnnotify @ sourceforge.jp Mon Feb 23 17:30:20 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 23 Feb 2015 17:30:20 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTZdICDjgqLjgq/jgrvjgrnjgq3jg7w=?= =?utf-8?b?44KS5aSJ5pu044GX44Gf?= Message-ID: <1424680220.305351.11876.nullmailer@users.sourceforge.jp> Revision: 5796 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5796 Author: maya Date: 2015-02-23 17:30:19 +0900 (Mon, 23 Feb 2015) Log Message: ----------- アクセスキーを変更した Modified Paths: -------------- trunk/installer/release/lang/English.lng trunk/installer/release/lang/Japanese.lng trunk/installer/release/lang/Korean.lng trunk/installer/release/lang/Simplified Chinese.lng trunk/installer/release/lang/Traditional Chinese.lng trunk/ttssh2/ttxssh/ttxssh.rc -------------- next part -------------- Modified: trunk/installer/release/lang/English.lng =================================================================== --- trunk/installer/release/lang/English.lng 2015-02-23 01:43:22 UTC (rev 5795) +++ trunk/installer/release/lang/English.lng 2015-02-23 08:30:19 UTC (rev 5796) @@ -632,7 +632,7 @@ DLG_KEYGEN_PASSPHRASE=Key passphrase: DLG_KEYGEN_PASSPHRASE2=Confirm passphrase: DLG_KEYGEN_COMMENT=C&omment: -DLG_KEYGEN_SAVEPUBLIC=Save publi&c key +DLG_KEYGEN_SAVEPUBLIC=Save publ&ic key DLG_KEYGEN_SAVEPRIVATE=Save &private key DLG_KEYGEN_GENERATE=&Generate DLG_KEYGEN_BITS=Key &Bits: Modified: trunk/installer/release/lang/Japanese.lng =================================================================== --- trunk/installer/release/lang/Japanese.lng 2015-02-23 01:43:22 UTC (rev 5795) +++ trunk/installer/release/lang/Japanese.lng 2015-02-23 08:30:19 UTC (rev 5796) @@ -631,7 +631,7 @@ DLG_KEYGEN_PASSPHRASE=\x8C\xAE\x82?p\x83X\x83t\x83\x8C\x81[\x83Y: DLG_KEYGEN_PASSPHRASE2=\x83p\x83X\x83t\x83\x8C\x81[\x83Y\x82?m\x94F: DLG_KEYGEN_COMMENT=\x83R\x83\x81\x83\x93\x83g(&O): -DLG_KEYGEN_SAVEPUBLIC=\x8C\xF6\x8AJ\x8C\xAE\x82??\xB6(&C) +DLG_KEYGEN_SAVEPUBLIC=\x8C\xF6\x8AJ\x8C\xAE\x82??\xB6(&I) DLG_KEYGEN_SAVEPRIVATE=\x94閧\x8C\xAE\x82??\xB6(&P) DLG_KEYGEN_GENERATE=\x90\xB6\x90\xAC(&G) DLG_KEYGEN_BITS=\x83r\x83b\x83g\x90\x94(&B): Modified: trunk/installer/release/lang/Korean.lng =================================================================== --- trunk/installer/release/lang/Korean.lng 2015-02-23 01:43:22 UTC (rev 5795) +++ trunk/installer/release/lang/Korean.lng 2015-02-23 08:30:19 UTC (rev 5796) @@ -633,7 +633,7 @@ DLG_KEYGEN_PASSPHRASE=\xBE\xCF?: DLG_KEYGEN_PASSPHRASE2=\xBE\xCF? ?\xC0\xCE: DLG_KEYGEN_COMMENT=\xC1?\xAE(&O): -DLG_KEYGEN_SAVEPUBLIC=\xB0\xF8\xB0\xB3Ű \xC0\xFA\xC0\xE5(&C) +DLG_KEYGEN_SAVEPUBLIC=\xB0\xF8\xB0\xB3Ű \xC0\xFA\xC0\xE5(&I) DLG_KEYGEN_SAVEPRIVATE=\xB0\xB3\xC0\xCEŰ \xC0\xFA\xC0\xE5(&P) DLG_KEYGEN_GENERATE=\xBB\xFD\xBC\xBA(&G) DLG_KEYGEN_BITS=Ű\xBA\xF1?(&B): Modified: trunk/installer/release/lang/Simplified Chinese.lng =================================================================== --- trunk/installer/release/lang/Simplified Chinese.lng 2015-02-23 01:43:22 UTC (rev 5795) +++ trunk/installer/release/lang/Simplified Chinese.lng 2015-02-23 08:30:19 UTC (rev 5796) @@ -633,7 +633,7 @@ DLG_KEYGEN_PASSPHRASE=\xC3\xDC?\xC3\xDC\xC2? DLG_KEYGEN_PASSPHRASE2=?\xC8\xCF\xC3\xDC\xC2? DLG_KEYGEN_COMMENT=?\xCA\xCD(&O)\xA3\xBA -DLG_KEYGEN_SAVEPUBLIC=\xB1\xA3\xB4\xE6Ϊ\xB9\xAB\xB9\xB2\xC3\xDC?(&C) +DLG_KEYGEN_SAVEPUBLIC=\xB1\xA3\xB4\xE6Ϊ\xB9\xAB\xB9\xB2\xC3\xDC?(&I) DLG_KEYGEN_SAVEPRIVATE=\xB1\xA3\xB4\xE6Ϊ?\xD3\xD0\xC3\xDC?(&P) DLG_KEYGEN_GENERATE=\xC9\xFA\xB3\xC9(&G) DLG_KEYGEN_BITS=\xC3\xDC?\xD7?\xDA\xCA\xFD(&B)\xA3\xBA Modified: trunk/installer/release/lang/Traditional Chinese.lng =================================================================== --- trunk/installer/release/lang/Traditional Chinese.lng 2015-02-23 01:43:22 UTC (rev 5795) +++ trunk/installer/release/lang/Traditional Chinese.lng 2015-02-23 08:30:19 UTC (rev 5796) @@ -633,7 +633,7 @@ DLG_KEYGEN_PASSPHRASE=\xB1K\xC6_\xB1K\xBDX\xA1G DLG_KEYGEN_PASSPHRASE2=\xBDT\xBB{\xB1K\xBDX\xA1G DLG_KEYGEN_COMMENT=\xB5\xF9\xC4\xC0(&O)\xA1G -DLG_KEYGEN_SAVEPUBLIC=\xC0x\xA6s\xAC\xB0\xA4\xBD\xA6@\xB1K\xC6_(&C) +DLG_KEYGEN_SAVEPUBLIC=\xC0x\xA6s\xAC\xB0\xA4\xBD\xA6@\xB1K\xC6_(&I) DLG_KEYGEN_SAVEPRIVATE=\xC0x\xA6s\xAC\xB0\xA8p\xA6\xB3\xB1K\xC6_(&P) DLG_KEYGEN_GENERATE=\xA5?\xA8(&G) DLG_KEYGEN_BITS=\xB1K\xC6_\xA6r\xB8`\xBC\xC6(&B)\xA1G Modified: trunk/ttssh2/ttxssh/ttxssh.rc =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.rc 2015-02-23 01:43:22 UTC (rev 5795) +++ trunk/ttssh2/ttxssh/ttxssh.rc 2015-02-23 08:30:19 UTC (rev 5796) @@ -361,7 +361,7 @@ CONTROL "bcrypt &KDF format",IDC_BCRYPT_KDF_CHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,118,80,10 RTEXT "&Number of rounds:",IDC_BCRYPT_KDF_ROUNDS_LABEL,100,118,77,10,NOT WS_GROUP EDITTEXT IDC_BCRYPT_KDF_ROUNDS,182,117,25,12,ES_AUTOHSCROLL | ES_NUMBER | WS_GROUP - PUSHBUTTON "Save publi&c key",IDC_SAVE_PUBLIC_KEY,49,135,68,14 + PUSHBUTTON "Save publ&ic key",IDC_SAVE_PUBLIC_KEY,49,135,68,14 PUSHBUTTON "Save &private key",IDC_SAVE_PRIVATE_KEY,133,135,68,14 END From svnnotify @ sourceforge.jp Tue Feb 24 07:51:27 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 24 Feb 2015 07:51:27 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTddICA2NGJpdOeJiOODkOOCpOODig==?= =?utf-8?b?44Oq44KS5pu05paw?= Message-ID: <1424731887.352023.16684.nullmailer@users.sourceforge.jp> Revision: 5797 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5797 Author: maya Date: 2015-02-24 07:51:24 +0900 (Tue, 24 Feb 2015) Log Message: ----------- 64bit版バイナリを更新 Modified Paths: -------------- trunk/cygterm/cygterm+-x86_64/cygterm.exe -------------- next part -------------- Modified: trunk/cygterm/cygterm+-x86_64/cygterm.exe =================================================================== (Binary files differ) From svnnotify @ sourceforge.jp Tue Feb 24 07:58:51 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 24 Feb 2015 07:58:51 +0900 Subject: [Ttssh2-commit] [5798] 4.86-RC1 Message-ID: <1424732331.196031.4288.nullmailer@users.sourceforge.jp> Revision: 5798 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5798 Author: maya Date: 2015-02-24 07:58:51 +0900 (Tue, 24 Feb 2015) Log Message: ----------- 4.86-RC1 Modified Paths: -------------- trunk/installer/teraterm.iss -------------- next part -------------- Modified: trunk/installer/teraterm.iss =================================================================== --- trunk/installer/teraterm.iss 2015-02-23 22:51:24 UTC (rev 5797) +++ trunk/installer/teraterm.iss 2015-02-23 22:58:51 UTC (rev 5798) @@ -1,30 +1,30 @@ #define AppName "Tera Term" -#define AppVer "4.85" -#define snapshot GetDateTimeString('yyyymmdd_hhnnss', '', ''); +#define AppVer "4.86-RC1" +;#define snapshot GetDateTimeString('yyyymmdd_hhnnss', '', ''); [InnoIDE_PreCompile] Name: makechm.bat -Name: build.bat -;Name: build.bat; Parameters: rebuild +;Name: build.bat +Name: build.bat; Parameters: rebuild [InnoIDE_PostCompile] -;Name: makearchive.bat; Parameters: release +Name: makearchive.bat; Parameters: release [PreCompile] Name: makechm.bat -Name: build.bat -;Name: build.bat; Parameters: rebuild +;Name: build.bat +Name: build.bat; Parameters: rebuild [PostCompile] -;Name: makearchive.bat; Parameters: release +Name: makearchive.bat; Parameters: release [_ISToolPreCompile] Name: makechm.bat -Name: build.bat -;Name: build.bat; Parameters: rebuild +;Name: build.bat +Name: build.bat; Parameters: rebuild [_ISToolPostCompile] -;Name: makearchive.bat; Parameters: release +Name: makearchive.bat; Parameters: release [Setup] AppCopyright=TeraTerm Project From svnnotify @ sourceforge.jp Thu Feb 26 00:50:33 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 26 Feb 2015 00:50:33 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU3OTldICBYMTHou6LpgIHjga7ou6LpgIE=?= =?utf-8?b?5YWI5oyH5a6a5pa55rOV44KSIC8gc3NoLVgg44Kq44OX44K344On44Oz44Gr?= =?utf-8?b?5aSJ5pu044GX44Gf44CC?= Message-ID: <1424879433.799915.10336.nullmailer@users.sourceforge.jp> Revision: 5799 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5799 Author: doda Date: 2015-02-26 00:50:25 +0900 (Thu, 26 Feb 2015) Log Message: ----------- X11転送の転送先指定方法を /ssh-X オプションに変更した。 Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/en/html/commandline/ttssh.html trunk/doc/ja/html/about/history.html trunk/doc/ja/html/commandline/ttssh.html trunk/installer/release/TERATERM.INI trunk/ttssh2/ttxssh/ttxssh.c -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-23 22:58:51 UTC (rev 5798) +++ trunk/doc/en/html/about/history.html 2015-02-25 15:50:25 UTC (rev 5799) @@ -2552,6 +2552,7 @@
            • Changes
              • When the private key is saved on the SSH key generator dialog, the round number of the bcrypt KDF can be specified.
              • +
            • Modified: trunk/doc/en/html/commandline/ttssh.html =================================================================== --- trunk/doc/en/html/commandline/ttssh.html 2015-02-23 22:58:51 UTC (rev 5798) +++ trunk/doc/en/html/commandline/ttssh.html 2015-02-25 15:50:25 UTC (rev 5799) @@ -113,8 +113,18 @@ if <listen_addr> is omitted, it listens at localhost.
              <listen_addr> is not used with SSH1 protocol. -
              /ssh-X
              -
              X11 port-fowarding
              +
              /ssh-X[[<host>]:<display>[.<screen>]]
              +
              enable X11 fowarding
              + +
              /ssh-A
              enable agent forwarding
              @@ -164,6 +174,7 @@
               ttermpro.exe server1:22 /ssh /ssh-L30025:smtpsrv1:25 /ssh-L30110:pop3srv1:110
               ttermpro.exe server2:22 /ssh /ssh-X
              +ttermpro.exe server2:22 /ssh /ssh-Xlocalhost:3.0
               ttermpro.exe server3:22 /ssh /2 /auth=password /user=guest /passwd=guest
               ttermpro.exe server4:22 /ssh /2 /auth=publickey /user=admin /keyfile=pathofkeyfile /ask4passwd
               ttermpro.exe ssh://user:password @ server5/ /auth=password
              
              Modified: trunk/doc/ja/html/about/history.html
              ===================================================================
              --- trunk/doc/ja/html/about/history.html	2015-02-23 22:58:51 UTC (rev 5798)
              +++ trunk/doc/ja/html/about/history.html	2015-02-25 15:50:25 UTC (rev 5799)
              @@ -2557,6 +2557,7 @@
                 
            • \x95ύX
              • SSH \x8C\xAE\x90\xB6\x90\xAC\x83_\x83C\x83A\x83\x8D\x83O\x82Ŕ閧\x8C\xAE\x82\xF0\x95?\xB6\x82\xB7\x82\xE9\x82?\xAB\x81Abcrypt KDF \x82?\x89\x83E\x83\x93\x83h\x90\x94\x82\xF0\x8Ew\x92\xE8\x82ł\xAB\x82\xE9\x82悤\x82?\xB5\x82\xBD
              • +
              • X11\x93]\x91\x97\x82\xF0\x8Ew\x92?\x82\xE9\x83R\x83}\x83\x93\x83h\x83\x89\x83C\x83\x93\x83I\x83v\x83V\x83\x87\x83\x93 /ssh-X \x82ŁA\x93]\x91\x97\x90\xE6\x82\xF0\x8Ew\x92\xE8\x82ł\xAB\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B
            • Modified: trunk/doc/ja/html/commandline/ttssh.html =================================================================== --- trunk/doc/ja/html/commandline/ttssh.html 2015-02-23 22:58:51 UTC (rev 5798) +++ trunk/doc/ja/html/commandline/ttssh.html 2015-02-25 15:50:25 UTC (rev 5799) @@ -113,8 +113,16 @@ <listen_addr>\x82\xF0\x8F?\xAA\x82\xB7\x82\xE9\x82?Alocalhost\x82Ń\x8A\x83b\x83X\x83\x93\x82\xB7\x82\xE9
              SSH1\x83v\x83\x8D\x83g\x83R\x83\x8B\x82ł\xCD<listen_addr>\x82?\x98\x97p\x82\xB3\x82\xEA\x82?\xA2 -
              /ssh-X
              -
              X11\x82\xF0\x83|\x81[\x83g\x83t\x83H\x83\x8F\x81[\x83f\x83B\x83\x93\x83O\x82\xB7\x82\xE9
              +
              /ssh-X[[<host>]:<display>[.<screen>]]
              +
              X11\x93]\x91\x97\x82\xF0\x97L\x8C\xF8\x82?\xB7\x82\xE9
              + \x93]\x91\x97\x90\xE6\x82\xF0\x8Ew\x92?\x82\xBD\x8F?\x82?\xBB\x82?]\x91\x97\x90\xE6\x82\xD6X11\x90?\xB1\x82\xF0\x93]\x91\x97\x82\xB7\x82\xE9
              + \x93]\x91\x97\x90\xE6\x82\xF0\x8Ew\x92?\x82?\xA9\x82\xC1\x82\xBD\x8F?\x82??\xBA\x82?D\x90?\x88?œ]\x91\x97\x90悪\x8C\x88\x92?\x82\xEA\x82\xE9\x81B +
                +
              1. \x90?\xE8\x83t\x83@\x83C\x83\x8B\x82\xCC [TTSSH] \x83Z\x83N\x83V\x83\x87\x83\x93\x82\xCC X11Display \x90?\xE8
              2. +
              3. \x8A?\xAB\x95?\x94 DISPLAY \x82?l
              4. +
              5. localhost:0.0
              6. +
              +
              /ssh-A
              \x83G\x81[\x83W\x83F\x83\x93\x83g\x93]\x91\x97\x82\xF0\x97L\x8C\xF8\x82?\xB7\x82\xE9
              @@ -164,6 +172,7 @@
               ttermpro.exe server1:22 /ssh /ssh-L30025:smtpsrv1:25 /ssh-L30110:pop3srv1:110
               ttermpro.exe server2:22 /ssh /ssh-X
              +ttermpro.exe server2:22 /ssh /ssh-Xlocalhost:3.0
               ttermpro.exe server3:22 /ssh /2 /auth=password /user=guest /passwd=guest
               ttermpro.exe server4:22 /ssh /2 /auth=publickey /user=admin /keyfile=pathofkeyfile /ask4passwd
               ttermpro.exe ssh://user:password @ server5/ /auth=password
              
              Modified: trunk/installer/release/TERATERM.INI
              ===================================================================
              --- trunk/installer/release/TERATERM.INI	2015-02-23 22:58:51 UTC (rev 5798)
              +++ trunk/installer/release/TERATERM.INI	2015-02-25 15:50:25 UTC (rev 5799)
              @@ -827,6 +827,8 @@
               ;  1 ... Sending forwarded data to a local port
               DisablePopupMessage=0
               
              +; X11 Forwarding
              +X11Display=
               
               [TTProxy]
               ConnectionTimeout="10"
              
              Modified: trunk/ttssh2/ttxssh/ttxssh.c
              ===================================================================
              --- trunk/ttssh2/ttxssh/ttxssh.c	2015-02-23 22:58:51 UTC (rev 5798)
              +++ trunk/ttssh2/ttxssh/ttxssh.c	2015-02-25 15:50:25 UTC (rev 5799)
              @@ -1636,6 +1636,22 @@
               	return;
               }
               
              +void add_forward_param(PTInstVar pvar, char *param)
              +{
              +	if (pvar->settings.DefaultForwarding[0] == 0) {
              +		strncpy_s(pvar->settings.DefaultForwarding,
              +		          sizeof(pvar->settings.DefaultForwarding),
              +		          param, _TRUNCATE);
              +	} else {
              +		strncat_s(pvar->settings.DefaultForwarding,
              +		          sizeof(pvar->settings.DefaultForwarding),
              +		          ";", _TRUNCATE);
              +		strncat_s(pvar->settings.DefaultForwarding,
              +		          sizeof(pvar->settings.DefaultForwarding),
              +		          param, _TRUNCATE);
              +	}
              +}
              +
               /* returns 1 if the option text must be deleted */
               static int parse_option(PTInstVar pvar, char FAR * option)
               {
              @@ -1646,22 +1662,12 @@
               			} else if (MATCH_STR(option + 4, "-L") == 0 ||
               			           MATCH_STR(option + 4, "-R") == 0 ||
               			           _stricmp(option + 4, "-X") == 0) {
              -				if (pvar->settings.DefaultForwarding[0] == 0) {
              -					strncpy_s(pvar->settings.DefaultForwarding,
              -					          sizeof(pvar->settings.DefaultForwarding),
              -					          option + 5, _TRUNCATE);
              -				} else {
              -					strncat_s(pvar->settings.DefaultForwarding,
              -					          sizeof(pvar->settings.DefaultForwarding),
              -					          ";", _TRUNCATE);
              -					strncat_s(pvar->settings.DefaultForwarding,
              -					          sizeof(pvar->settings.DefaultForwarding),
              -					          option + 5, _TRUNCATE);
              -				}
              -			} else if (MATCH_STR(option + 4, "-display=") == 0) {
              +				add_forward_param(pvar, option+5);
              +			} else if (MATCH_STR(option + 4, "-X") == 0) {
              +				add_forward_param(pvar, "X");
               				strncpy_s(pvar->settings.X11Display,
               				          sizeof(pvar->settings.X11Display),
              -				          option + 13, _TRUNCATE);
              +				          option + 6, _TRUNCATE);
               			} else if (MATCH_STR(option + 4, "-f=") == 0) {
               				read_ssh_options_from_user_file(pvar, option + 7);
               			} else if (MATCH_STR(option + 4, "-v") == 0) {
              
              From svnnotify @ sourceforge.jp  Fri Feb 27 23:57:33 2015
              From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
              Date: Fri, 27 Feb 2015 23:57:33 +0900
              Subject: [Ttssh2-commit] =?utf-8?b?WzU4MDBdICDnlLvpnaLlt6bnq6/jgafjga4g?=
               =?utf-8?b?REVDQkkg44Gn44CB5bem56uv44Gr5ryi5a2X44GM5pyJ44Gj44Gf5aC05ZCI?=
               =?utf-8?b?44Gr44Gd44Gu5paH5a2X44GM5raI44GI44KL44Gu44KS5L+u5q2j?=
              Message-ID: <1425049053.157958.10037.nullmailer@users.sourceforge.jp>
              
              Revision: 5800
                        http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5800
              Author:   doda
              Date:     2015-02-27 23:57:30 +0900 (Fri, 27 Feb 2015)
              Log Message:
              -----------
              画面左端での DECBI で、左端に漢字が有った場合にその文字が消えるのを修正
              
              Modified Paths:
              --------------
                  trunk/teraterm/teraterm/buffer.c
              
              -------------- next part --------------
              Modified: trunk/teraterm/teraterm/buffer.c
              ===================================================================
              --- trunk/teraterm/teraterm/buffer.c	2015-02-25 15:50:25 UTC (rev 5799)
              +++ trunk/teraterm/teraterm/buffer.c	2015-02-27 14:57:30 UTC (rev 5800)
              @@ -3801,7 +3801,7 @@
               	for (i = CursorTop; i <= CursorBottom; i++) {
               		Ptr = LPtr + CursorLeftM;
               
              -		if (AttrBuff[LPtr + CursorRightM] & AttrKanji) {
              +		if (AttrBuff[LPtr+CursorRightM] & AttrKanji) {
               			CodeBuff[LPtr+CursorRightM] = 0x20;
               			AttrBuff[LPtr+CursorRightM] &= ~AttrKanji;
               			if (CursorRightM < NumOfColumns-1) {
              @@ -3833,7 +3833,7 @@
               		LPtr = NextLinePtr(LPtr);
               	}
               
              -	BuffUpdateRect(CursorLeftM, CursorTop, CursorRightM, CursorBottom);
              +	BuffUpdateRect(CursorLeftM-(CursorLeftM>0), CursorTop, CursorRightM+(CursorRightM 0 && AttrBuff[Ptr-1] & AttrKanji) {
              +			CodeBuff[Ptr-1] = 0x20;
              +			AttrBuff[Ptr-1] &= ~AttrKanji;
              +			CodeBuff[Ptr] = 0x20;
               		}
               
               		memmove(&(CodeBuff[Ptr+count]),   &(CodeBuff[Ptr]),   MoveLen);
              @@ -3870,7 +3870,7 @@
               		memset(&(AttrBuffFG[Ptr]), AttrDefaultFG, count);
               		memset(&(AttrBuffBG[Ptr]), AttrDefaultBG, count);
               
              -		if (AttrBuff[LPtr + CursorRightM] & AttrKanji) {
              +		if (AttrBuff[LPtr+CursorRightM] & AttrKanji) {
               			CodeBuff[LPtr+CursorRightM] = 0x20;
               			AttrBuff[LPtr+CursorRightM] &= ~AttrKanji;
               		}
              @@ -3878,7 +3878,7 @@
               		LPtr = NextLinePtr(LPtr);
               	}
               
              -	BuffUpdateRect(CursorLeftM, CursorTop, CursorRightM, CursorBottom);
              +	BuffUpdateRect(CursorLeftM-(CursorLeftM>0), CursorTop, CursorRightM+(CursorRightM
              
              Revision: 5801
                        http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5801
              Author:   doda
              Date:     2015-02-28 00:12:41 +0900 (Sat, 28 Feb 2015)
              Log Message:
              -----------
              変更履歴更新 (r5800)
              
              Revision Links:
              --------------
                  http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5800
              
              Modified Paths:
              --------------
                  trunk/doc/en/html/about/history.html
                  trunk/doc/ja/html/about/history.html
              
              -------------- next part --------------
              Modified: trunk/doc/en/html/about/history.html
              ===================================================================
              --- trunk/doc/en/html/about/history.html	2015-02-27 14:57:30 UTC (rev 5800)
              +++ trunk/doc/en/html/about/history.html	2015-02-27 15:12:41 UTC (rev 5801)
              @@ -49,6 +49,7 @@
                     
            • YMODEM: When the received file information contains only a file name, an end of the file name is broken.
            • YMODEM: When the received file information does not include the file size, the file data can not be recorded well.
            • The setting value of the Log Rotate will not display well.
            • +
            • When the x=0,y=0 is specified by the setdlgpos marco command, the statusbox will be newly opened and however the statusbox can not be properly shown.
            • When the macro filename is so longer, the currently executing line number can not be shown. And also, the macro window can be resizable.
            Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2015-02-27 14:57:30 UTC (rev 5800) +++ trunk/doc/ja/html/about/history.html 2015-02-27 15:12:41 UTC (rev 5801) @@ -49,6 +49,7 @@
          • YMODEM \x82?\xF3\x90M\x82\xB5\x82\xBD\x83t\x83@\x83C\x83\x8B\x8F\xEE\x95?Ō\xE3\x82?Ńt\x83@\x83C\x83\x8B\x96\xBC\x82\xBE\x82\xC1\x82\xBD\x8F?\x82?A\x95?\xB6\x82\xB3\x82\xEA\x82\xE9\x83t\x83@\x83C\x83\x8B\x96\xBC\x82?I\x92[\x82\xAA\x89\xF3\x82\xEA\x82\xE9\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
          • YMODEM \x82?\xF3\x90M\x82\xB5\x82\xBD\x83t\x83@\x83C\x83\x8B\x8F\xEE\x95\xF1\x82?t\x83@\x83C\x83\x8B\x83T\x83C\x83Y\x82\xAA\x82?\xA9\x82\xC1\x82\xBD\x8F?\x82?A\x83t\x83@\x83C\x83\x8B\x82?\x86\x90g\x82\xAA\x95?\xB6\x82\xB3\x82\xEA\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
          • \x83\x8D\x83O\x81E\x83\x8D\x81[\x83e\x81[\x83g\x82??\xE8\x92l\x82\xAA\x90?\xE8\x89\xE6\x96\xCA\x82?\xB3\x82\xB5\x82\xAD\x95\\x8E\xA6\x82\xB3\x82\xEA\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
          • +
          • \x89\xE6\x96?\xB6\x92[\x82ł\xCC DECBI \x90\xA7\x8C\xE4\x83V\x81[\x83P\x83\x93\x83X\x82ŁA\x89\xE6\x96?\xB6\x92[\x82?\xA0\x82?\x83C\x83h\x95\xB6\x8E\x9A\x82\xAA\x8F\xC1\x82\xA6\x82\xE9\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
          • setdlgpos \x83}\x83N\x83\x8D\x83R\x83}\x83\x93\x83h\x82\xC5 x=0,y=0 \x82\xF0\x8Ew\x92?\x82\xBD\x82\xA0\x82\xC6 statusbox \x82\xF0\x90V\x8BK\x82?J\x82\xAD\x82?A\x8Ew\x92?\x82\xBD\x88?u\x82ŊJ\x82\xA9\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
          • \x83}\x83N\x83\x8D\x83t\x83@\x83C\x83\x8B\x96\xBC\x82\xAA\x92\xB7\x82\xA2\x8F?\x82?\xA8\x82\xA2\x82Ă\xE0\x81A\x83}\x83N\x83\x8D\x83E\x83B\x83\x93\x83h\x83E\x82?s\x94?\x86\x82\xAA\x95\\x8E\xA6\x82\xB3\x82\xEA\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B\x82?\xBD\x81A\x83}\x83N\x83\x8D\x83E\x83B\x83\x93\x83h\x83E\x82\xF0\x83\x8A\x83T\x83C\x83Y\x89?\\x82?\xB5\x82\xBD\x81B
          From svnnotify @ sourceforge.jp Sat Feb 28 00:41:40 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 28 Feb 2015 00:41:40 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU4MDJdICDoi7HoqLM=?= Message-ID: <1425051700.271049.18858.nullmailer@users.sourceforge.jp> Revision: 5802 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5802 Author: yutakapon Date: 2015-02-28 00:41:24 +0900 (Sat, 28 Feb 2015) Log Message: ----------- 英訳 Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/en/html/commandline/ttssh.html trunk/doc/ja/html/about/history.html trunk/doc/ja/html/commandline/ttssh.html -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-27 15:12:41 UTC (rev 5801) +++ trunk/doc/en/html/about/history.html 2015-02-27 15:41:24 UTC (rev 5802) @@ -2553,7 +2553,7 @@
        • Changes
          • When the private key is saved on the SSH key generator dialog, the round number of the bcrypt KDF can be specified.
          • - +
          • added support for specifying the X11 destination display with the /ssh-X command line option.
        • Modified: trunk/doc/en/html/commandline/ttssh.html =================================================================== --- trunk/doc/en/html/commandline/ttssh.html 2015-02-27 15:12:41 UTC (rev 5801) +++ trunk/doc/en/html/commandline/ttssh.html 2015-02-27 15:41:24 UTC (rev 5802) @@ -113,17 +113,15 @@ if <listen_addr> is omitted, it listens at localhost.
          <listen_addr> is not used with SSH1 protocol. -
          /ssh-X[[<host>]:<display>[.<screen>]]
          +
          /ssh-X[[<hostname>]:<displaynumber>[.<screennumber>]]
          enable X11 fowarding
          -
          /ssh-A
          Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2015-02-27 15:12:41 UTC (rev 5801) +++ trunk/doc/ja/html/about/history.html 2015-02-27 15:41:24 UTC (rev 5802) @@ -2558,7 +2558,7 @@
        • \x95ύX
          • SSH \x8C\xAE\x90\xB6\x90\xAC\x83_\x83C\x83A\x83\x8D\x83O\x82Ŕ閧\x8C\xAE\x82\xF0\x95?\xB6\x82\xB7\x82\xE9\x82?\xAB\x81Abcrypt KDF \x82?\x89\x83E\x83\x93\x83h\x90\x94\x82\xF0\x8Ew\x92\xE8\x82ł\xAB\x82\xE9\x82悤\x82?\xB5\x82\xBD
          • -
          • X11\x93]\x91\x97\x82\xF0\x8Ew\x92?\x82\xE9\x83R\x83}\x83\x93\x83h\x83\x89\x83C\x83\x93\x83I\x83v\x83V\x83\x87\x83\x93 /ssh-X \x82ŁA\x93]\x91\x97\x90\xE6\x82\xF0\x8Ew\x92\xE8\x82ł\xAB\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B
          • +
          • X11\x93]\x91\x97\x82\xF0\x8Ew\x92?\x82\xE9\x83R\x83}\x83\x93\x83h\x83\x89\x83C\x83\x93\x83I\x83v\x83V\x83\x87\x83\x93 /ssh-X \x82ŁA\x93]\x91\x97\x90\xE6\x83f\x83B\x83X\x83v\x83\x8C\x83C\x82\xF0\x8Ew\x92\xE8\x82ł\xAB\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B
        • Modified: trunk/doc/ja/html/commandline/ttssh.html =================================================================== --- trunk/doc/ja/html/commandline/ttssh.html 2015-02-27 15:12:41 UTC (rev 5801) +++ trunk/doc/ja/html/commandline/ttssh.html 2015-02-27 15:41:24 UTC (rev 5802) @@ -113,10 +113,10 @@ <listen_addr>\x82\xF0\x8F?\xAA\x82\xB7\x82\xE9\x82?Alocalhost\x82Ń\x8A\x83b\x83X\x83\x93\x82\xB7\x82\xE9
          SSH1\x83v\x83\x8D\x83g\x83R\x83\x8B\x82ł\xCD<listen_addr>\x82?\x98\x97p\x82\xB3\x82\xEA\x82?\xA2 -
          /ssh-X[[<host>]:<display>[.<screen>]]
          +
          /ssh-X[[<hostname>]:<displaynumber>[.<screennumber>]]
          X11\x93]\x91\x97\x82\xF0\x97L\x8C\xF8\x82?\xB7\x82\xE9
          - \x93]\x91\x97\x90\xE6\x82\xF0\x8Ew\x92?\x82\xBD\x8F?\x82?\xBB\x82?]\x91\x97\x90\xE6\x82\xD6X11\x90?\xB1\x82\xF0\x93]\x91\x97\x82\xB7\x82\xE9
          - \x93]\x91\x97\x90\xE6\x82\xF0\x8Ew\x92?\x82?\xA9\x82\xC1\x82\xBD\x8F?\x82??\xBA\x82?D\x90?\x88?œ]\x91\x97\x90悪\x8C\x88\x92?\x82\xEA\x82\xE9\x81B + \x93]\x91\x97\x90\xE6\x83f\x83B\x83X\x83v\x83\x8C\x83C\x82\xF0\x8Ew\x92?\x82\xBD\x8F?\x82?A\x82\xBB\x82?]\x91\x97\x90\xE6\x82\xD6X11\x90?\xB1\x82\xF0\x93]\x91\x97\x82\xB7\x82\xE9\x81B
          + \x93]\x91\x97\x90\xE6\x83f\x83B\x83X\x83v\x83\x8C\x83C\x82\xF0\x8Ew\x92?\x82?\xA9\x82\xC1\x82\xBD\x8F?\x82?A\x88?\xBA\x82?D\x90?\x88?œ]\x91\x97\x90悪\x8C\x88\x92?\x82\xEA\x82\xE9\x81B
          1. \x90?\xE8\x83t\x83@\x83C\x83\x8B\x82\xCC [TTSSH] \x83Z\x83N\x83V\x83\x87\x83\x93\x82\xCC X11Display \x90?\xE8
          2. \x8A?\xAB\x95?\x94 DISPLAY \x82?l
          3. From svnnotify @ sourceforge.jp Sat Feb 28 00:47:48 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 28 Feb 2015 00:47:48 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU4MDNdICDoi7HoqLM=?= Message-ID: <1425052068.509989.11100.nullmailer@users.sourceforge.jp> Revision: 5803 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5803 Author: yutakapon Date: 2015-02-28 00:47:47 +0900 (Sat, 28 Feb 2015) Log Message: ----------- 英訳 Modified Paths: -------------- trunk/doc/en/html/about/history.html -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-27 15:41:24 UTC (rev 5802) +++ trunk/doc/en/html/about/history.html 2015-02-27 15:47:47 UTC (rev 5803) @@ -49,7 +49,7 @@
          4. YMODEM: When the received file information contains only a file name, an end of the file name is broken.
          5. YMODEM: When the received file information does not include the file size, the file data can not be recorded well.
          6. The setting value of the Log Rotate will not display well.
          7. - +
          8. When the DECBI control sequence is used on the left of the screen, the wide character of the left screen will be incorrectly removed.
          9. When the x=0,y=0 is specified by the setdlgpos marco command, the statusbox will be newly opened and however the statusbox can not be properly shown.
          10. When the macro filename is so longer, the currently executing line number can not be shown. And also, the macro window can be resizable.
        From svnnotify @ sourceforge.jp Sat Feb 28 21:59:50 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 28 Feb 2015 21:59:50 +0900 Subject: [Ttssh2-commit] [5804] bump up the version. Message-ID: <1425128390.781177.32758.nullmailer@users.sourceforge.jp> Revision: 5804 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5804 Author: maya Date: 2015-02-28 21:59:48 +0900 (Sat, 28 Feb 2015) Log Message: ----------- bump up the version. Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/ja/html/about/history.html trunk/installer/teraterm.iss trunk/teraterm/teraterm/ttermpro.rc trunk/teraterm/ttpmacro/ttm_res.h trunk/teraterm/ttpmacro/ttpmacro.rc trunk/ttssh2/ttxssh/ttxssh.rc -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2015-02-27 15:47:47 UTC (rev 5803) +++ trunk/doc/en/html/about/history.html 2015-02-28 12:59:48 UTC (rev 5804) @@ -30,7 +30,7 @@

        Tera Term

        -

        2015.xx.xx (Ver 4.86) not released

        +

        2015.02.28 (Ver 4.86)

        • Changes
            @@ -44,12 +44,12 @@
          • Bug fixes
              +
            • When the DECBI control sequence is used on the left of the screen, the wide character of the left screen will be incorrectly removed.
            • The KEYBOARD.CNF file can not be loaded when the Tera Term is performed with the macro script.
            • YMODEM: When the data is sent, the CANCEL command from the remote host does not work well.
            • YMODEM: When the received file information contains only a file name, an end of the file name is broken.
            • YMODEM: When the received file information does not include the file size, the file data can not be recorded well.
            • The setting value of the Log Rotate will not display well.
            • -
            • When the DECBI control sequence is used on the left of the screen, the wide character of the left screen will be incorrectly removed.
            • When the x=0,y=0 is specified by the setdlgpos marco command, the statusbox will be newly opened and however the statusbox can not be properly shown.
            • When the macro filename is so longer, the currently executing line number can not be shown. And also, the macro window can be resizable.
            @@ -2548,7 +2548,7 @@

            TTSSH

            -

            2015.xx.xx (Ver 2.72)

            +

            2015.02.28 (Ver 2.72)

            • Changes
                Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2015-02-27 15:47:47 UTC (rev 5803) +++ trunk/doc/ja/html/about/history.html 2015-02-28 12:59:48 UTC (rev 5804) @@ -30,7 +30,7 @@

                Tera Term

                -

                2015.xx.xx (Ver 4.86) not released

                +

                2015.02.28 (Ver 4.86)

                • \x95ύX
                    @@ -44,12 +44,12 @@
                  • \x83o\x83O\x8FC\x90\xB3
                      +
                    • \x89\xE6\x96?\xB6\x92[\x82ł\xCC DECBI \x90\xA7\x8C\xE4\x83V\x81[\x83P\x83\x93\x83X\x82ŁA\x89\xE6\x96?\xB6\x92[\x82?\xA0\x82?\x83C\x83h\x95\xB6\x8E\x9A\x82\xAA\x8F\xC1\x82\xA6\x82\xE9\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
                    • \x83}\x83N\x83\x8D\x82\xA9\x82\xE7\x8BN\x93\xAE\x82\xB5\x82\xBD\x8F?\x82\xC9 KEYBOARD.CNF \x82??肪\x94\xBD\x89f\x82\xB3\x82\xEA\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
                    • YMODEM \x91\x97\x90M\x8E\x9E\x82?\x8A\x83\x82\x81[\x83g\x82\xA9\x82\xE7\x82?L\x83\x83\x83\x93\x83Z\x83\x8B\x82?\xB5\x82\xAD\x8F\x88\x97\x9D\x82\xB5\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
                    • YMODEM \x82?\xF3\x90M\x82\xB5\x82\xBD\x83t\x83@\x83C\x83\x8B\x8F\xEE\x95?Ō\xE3\x82?Ńt\x83@\x83C\x83\x8B\x96\xBC\x82\xBE\x82\xC1\x82\xBD\x8F?\x82?A\x95?\xB6\x82\xB3\x82\xEA\x82\xE9\x83t\x83@\x83C\x83\x8B\x96\xBC\x82?I\x92[\x82\xAA\x89\xF3\x82\xEA\x82\xE9\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
                    • YMODEM \x82?\xF3\x90M\x82\xB5\x82\xBD\x83t\x83@\x83C\x83\x8B\x8F\xEE\x95\xF1\x82?t\x83@\x83C\x83\x8B\x83T\x83C\x83Y\x82\xAA\x82?\xA9\x82\xC1\x82\xBD\x8F?\x82?A\x83t\x83@\x83C\x83\x8B\x82?\x86\x90g\x82\xAA\x95?\xB6\x82\xB3\x82\xEA\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD
                    • \x83\x8D\x83O\x81E\x83\x8D\x81[\x83e\x81[\x83g\x82??\xE8\x92l\x82\xAA\x90?\xE8\x89\xE6\x96\xCA\x82?\xB3\x82\xB5\x82\xAD\x95\\x8E\xA6\x82\xB3\x82\xEA\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
                    • -
                    • \x89\xE6\x96?\xB6\x92[\x82ł\xCC DECBI \x90\xA7\x8C\xE4\x83V\x81[\x83P\x83\x93\x83X\x82ŁA\x89\xE6\x96?\xB6\x92[\x82?\xA0\x82?\x83C\x83h\x95\xB6\x8E\x9A\x82\xAA\x8F\xC1\x82\xA6\x82\xE9\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
                    • setdlgpos \x83}\x83N\x83\x8D\x83R\x83}\x83\x93\x83h\x82\xC5 x=0,y=0 \x82\xF0\x8Ew\x92?\x82\xBD\x82\xA0\x82\xC6 statusbox \x82\xF0\x90V\x8BK\x82?J\x82\xAD\x82?A\x8Ew\x92?\x82\xBD\x88?u\x82ŊJ\x82\xA9\x82?\xA2\x96\xE2\x91\xE8\x82\xF0\x8FC\x90\xB3\x82\xB5\x82\xBD\x81B
                    • \x83}\x83N\x83\x8D\x83t\x83@\x83C\x83\x8B\x96\xBC\x82\xAA\x92\xB7\x82\xA2\x8F?\x82?\xA8\x82\xA2\x82Ă\xE0\x81A\x83}\x83N\x83\x8D\x83E\x83B\x83\x93\x83h\x83E\x82?s\x94?\x86\x82\xAA\x95\\x8E\xA6\x82\xB3\x82\xEA\x82\xE9\x82悤\x82?\xB5\x82\xBD\x81B\x82?\xBD\x81A\x83}\x83N\x83\x8D\x83E\x83B\x83\x93\x83h\x83E\x82\xF0\x83\x8A\x83T\x83C\x83Y\x89?\\x82?\xB5\x82\xBD\x81B
                    @@ -2553,7 +2553,7 @@

                    TTSSH

                    -

                    2015.xx.xx (Ver 2.72)

                    +

                    2015.02.28 (Ver 2.72)

                    • \x95ύX
                        Modified: trunk/installer/teraterm.iss =================================================================== --- trunk/installer/teraterm.iss 2015-02-27 15:47:47 UTC (rev 5803) +++ trunk/installer/teraterm.iss 2015-02-28 12:59:48 UTC (rev 5804) @@ -1,5 +1,5 @@ #define AppName "Tera Term" -#define AppVer "4.86-RC1" +#define AppVer "4.86" ;#define snapshot GetDateTimeString('yyyymmdd_hhnnss', '', ''); [InnoIDE_PreCompile] Modified: trunk/teraterm/teraterm/ttermpro.rc =================================================================== --- trunk/teraterm/teraterm/ttermpro.rc 2015-02-27 15:47:47 UTC (rev 5803) +++ trunk/teraterm/teraterm/ttermpro.rc 2015-02-28 12:59:48 UTC (rev 5804) @@ -417,8 +417,8 @@ // VS_VERSION_INFO VERSIONINFO - FILEVERSION 4,85,0,0 - PRODUCTVERSION 4,85,0,0 + FILEVERSION 4,86,0,0 + PRODUCTVERSION 4,86,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -435,12 +435,12 @@ BEGIN VALUE "CompanyName", "TeraTerm Project T. Teranishi" VALUE "FileDescription", "Tera Term" - VALUE "FileVersion", "4, 85, 0, 0" + VALUE "FileVersion", "4, 86, 0, 0" VALUE "InternalName", "TTERMPRO" VALUE "LegalCopyright", "(C)TeraTerm Project 2004-2014, (C)T. Teranishi 1994-1998" VALUE "OriginalFilename", "TTERMPRO.EXE" VALUE "ProductName", "Tera Term" - VALUE "ProductVersion", "4, 85, 0, 0" + VALUE "ProductVersion", "4, 86, 0, 0" END END BLOCK "VarFileInfo" Modified: trunk/teraterm/ttpmacro/ttm_res.h =================================================================== --- trunk/teraterm/ttpmacro/ttm_res.h 2015-02-27 15:47:47 UTC (rev 5803) +++ trunk/teraterm/ttpmacro/ttm_res.h 2015-02-28 12:59:48 UTC (rev 5804) @@ -1,6 +1,6 @@ //{{NO_DEPENDENCIES}} -// Microsoft Visual C++ \x82Ő\xB6\x90\xAC\x82\xB3\x82?\x83C\x83\x93\x83N\x83\x8B\x81[\x83h \x83t\x83@\x83C\x83\x8B\x81B -// ttpmacro.rc \x82?g\x97p +// Microsoft Visual C++ generated include file. +// Used by ttpmacro.rc // #define IDD_CTRLWIN 100 #define IDI_TTMACRO 100 Modified: trunk/teraterm/ttpmacro/ttpmacro.rc =================================================================== --- trunk/teraterm/ttpmacro/ttpmacro.rc 2015-02-27 15:47:47 UTC (rev 5803) +++ trunk/teraterm/ttpmacro/ttpmacro.rc 2015-02-28 12:59:48 UTC (rev 5804) @@ -16,8 +16,10 @@ // \x89p\x8C\xEA (\x95č\x91) resources #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US #pragma code_page(1252) +#endif //_WIN32 #ifdef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// @@ -116,7 +118,7 @@ // #ifdef APSTUDIO_INVOKED -GUIDELINES DESIGNINFO +GUIDELINES DESIGNINFO BEGIN IDD_CTRLWIN, DIALOG BEGIN @@ -128,10 +130,6 @@ RIGHTMARGIN, 260 END - IDD_STATDLG, DIALOG - BEGIN - END - IDD_LISTDLG, DIALOG BEGIN LEFTMARGIN, 7 @@ -149,8 +147,8 @@ // VS_VERSION_INFO VERSIONINFO - FILEVERSION 4,85,0,0 - PRODUCTVERSION 4,85,0,0 + FILEVERSION 4,86,0,0 + PRODUCTVERSION 4,86,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -167,12 +165,12 @@ BEGIN VALUE "CompanyName", "TeraTerm Project T. Teranishi" VALUE "FileDescription", "TTPMACRO" - VALUE "FileVersion", "4, 85, 0, 0" + VALUE "FileVersion", "4, 86, 0, 0" VALUE "InternalName", "TTPMACRO" VALUE "LegalCopyright", "Copyright (C) TeraTerm Project 2004-2014, T. Teranishi 1994-1998" VALUE "OriginalFilename", "TTPMACRO.EXE" VALUE "ProductName", "TTPMACRO" - VALUE "ProductVersion", "4, 85, 0, 0" + VALUE "ProductVersion", "4, 86, 0, 0" END END BLOCK "VarFileInfo" Modified: trunk/ttssh2/ttxssh/ttxssh.rc =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.rc 2015-02-27 15:47:47 UTC (rev 5803) +++ trunk/ttssh2/ttxssh/ttxssh.rc 2015-02-28 12:59:48 UTC (rev 5804) @@ -609,8 +609,8 @@ // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,71,0,0 - PRODUCTVERSION 2,71,0,0 + FILEVERSION 2,72,0,0 + PRODUCTVERSION 2,72,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -626,12 +626,12 @@ BLOCK "040904b0" BEGIN VALUE "FileDescription", "TTXSSH" - VALUE "FileVersion", "2, 71, 0, 0" + VALUE "FileVersion", "2, 72, 0, 0" VALUE "InternalName", "TTXSSH" VALUE "LegalCopyright", "(C)2004-2014 TeraTerm Project, (C)1998-1999 Robert O'Callahan" VALUE "OriginalFilename", "TTXSSH.dll" VALUE "ProductName", "TTSSH" - VALUE "ProductVersion", "2, 71, 0, 0" + VALUE "ProductVersion", "2, 72, 0, 0" END END BLOCK "VarFileInfo" From svnnotify @ sourceforge.jp Sat Feb 28 22:07:44 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 28 Feb 2015 22:07:44 +0900 Subject: [Ttssh2-commit] [5805] Release 4.86 Message-ID: <1425128864.329629.3350.nullmailer@users.sourceforge.jp> Revision: 5805 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5805 Author: maya Date: 2015-02-28 22:07:43 +0900 (Sat, 28 Feb 2015) Log Message: ----------- Release 4.86 Added Paths: ----------- tags/teraterm-4_86/ -------------- next part -------------- Property changes on: tags/teraterm-4_86 ___________________________________________________________________ Added: svn:ignore + Makefile* Log Added: svn:mergeinfo + /branches/ssh_ed25519:5495-5544 From svnnotify @ sourceforge.jp Sat Feb 28 22:33:12 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 28 Feb 2015 22:33:12 +0900 Subject: [Ttssh2-commit] [5806] unfrozen Message-ID: <1425130392.610411.13201.nullmailer@users.sourceforge.jp> Revision: 5806 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5806 Author: maya Date: 2015-02-28 22:33:11 +0900 (Sat, 28 Feb 2015) Log Message: ----------- unfrozen Modified Paths: -------------- trunk/installer/teraterm.iss -------------- next part -------------- Modified: trunk/installer/teraterm.iss =================================================================== --- trunk/installer/teraterm.iss 2015-02-28 13:07:43 UTC (rev 5805) +++ trunk/installer/teraterm.iss 2015-02-28 13:33:11 UTC (rev 5806) @@ -1,30 +1,30 @@ #define AppName "Tera Term" #define AppVer "4.86" -;#define snapshot GetDateTimeString('yyyymmdd_hhnnss', '', ''); +#define snapshot GetDateTimeString('yyyymmdd_hhnnss', '', ''); [InnoIDE_PreCompile] Name: makechm.bat -;Name: build.bat -Name: build.bat; Parameters: rebuild +Name: build.bat +;Name: build.bat; Parameters: rebuild [InnoIDE_PostCompile] -Name: makearchive.bat; Parameters: release +;Name: makearchive.bat; Parameters: release [PreCompile] Name: makechm.bat -;Name: build.bat -Name: build.bat; Parameters: rebuild +Name: build.bat +;Name: build.bat; Parameters: rebuild [PostCompile] -Name: makearchive.bat; Parameters: release +;Name: makearchive.bat; Parameters: release [_ISToolPreCompile] Name: makechm.bat -;Name: build.bat -Name: build.bat; Parameters: rebuild +Name: build.bat +;Name: build.bat; Parameters: rebuild [_ISToolPostCompile] -Name: makearchive.bat; Parameters: release +;Name: makearchive.bat; Parameters: release [Setup] AppCopyright=TeraTerm Project From svnnotify @ sourceforge.jp Sat Feb 28 23:26:14 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 28 Feb 2015 23:26:14 +0900 Subject: [Ttssh2-commit] [5807] year++ Message-ID: <1425133574.026777.29086.nullmailer@users.sourceforge.jp> Revision: 5807 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5807 Author: maya Date: 2015-02-28 23:26:11 +0900 (Sat, 28 Feb 2015) Log Message: ----------- year++ Modified Paths: -------------- trunk/teraterm/teraterm/ttermpro.rc trunk/teraterm/ttpdlg/ttpdlg.rc trunk/teraterm/ttpmacro/ttpmacro.rc trunk/ttssh2/ttxssh/ttxssh.rc -------------- next part -------------- Modified: trunk/teraterm/teraterm/ttermpro.rc =================================================================== --- trunk/teraterm/teraterm/ttermpro.rc 2015-02-28 13:33:11 UTC (rev 5806) +++ trunk/teraterm/teraterm/ttermpro.rc 2015-02-28 14:26:11 UTC (rev 5807) @@ -437,7 +437,7 @@ VALUE "FileDescription", "Tera Term" VALUE "FileVersion", "4, 86, 0, 0" VALUE "InternalName", "TTERMPRO" - VALUE "LegalCopyright", "(C)TeraTerm Project 2004-2014, (C)T. Teranishi 1994-1998" + VALUE "LegalCopyright", "(C)TeraTerm Project 2004-2015, (C)T. Teranishi 1994-1998" VALUE "OriginalFilename", "TTERMPRO.EXE" VALUE "ProductName", "Tera Term" VALUE "ProductVersion", "4, 86, 0, 0" Modified: trunk/teraterm/ttpdlg/ttpdlg.rc =================================================================== --- trunk/teraterm/ttpdlg/ttpdlg.rc 2015-02-28 13:33:11 UTC (rev 5806) +++ trunk/teraterm/ttpdlg/ttpdlg.rc 2015-02-28 14:26:11 UTC (rev 5807) @@ -238,7 +238,7 @@ "Static",SS_LEFTNOWORDWRAP | WS_GROUP,38,59,134,8 DEFPUSHBUTTON "OK",IDOK,145,6,32,16,WS_GROUP CONTROL "All Rights Reserved.",IDC_RIGHTS_LABEL,"Static",SS_LEFTNOWORDWRAP | WS_GROUP,38,75,76,8 - CONTROL "(C) 2004-2014 Tera Term Project",IDC_PROJECT_LABEL, + CONTROL "(C) 2004-2015 Tera Term Project",IDC_PROJECT_LABEL, "Static",SS_LEFTNOWORDWRAP | WS_GROUP,38,67,122,9 LTEXT "Includes:",IDC_INLUCDE_LABEL,38,26,31,8 LTEXT "Version",IDC_TT_VERSION,38,10,101,8 Modified: trunk/teraterm/ttpmacro/ttpmacro.rc =================================================================== --- trunk/teraterm/ttpmacro/ttpmacro.rc 2015-02-28 13:33:11 UTC (rev 5806) +++ trunk/teraterm/ttpmacro/ttpmacro.rc 2015-02-28 14:26:11 UTC (rev 5807) @@ -167,7 +167,7 @@ VALUE "FileDescription", "TTPMACRO" VALUE "FileVersion", "4, 86, 0, 0" VALUE "InternalName", "TTPMACRO" - VALUE "LegalCopyright", "Copyright (C) TeraTerm Project 2004-2014, T. Teranishi 1994-1998" + VALUE "LegalCopyright", "Copyright (C) TeraTerm Project 2004-2015, T. Teranishi 1994-1998" VALUE "OriginalFilename", "TTPMACRO.EXE" VALUE "ProductName", "TTPMACRO" VALUE "ProductVersion", "4, 86, 0, 0" Modified: trunk/ttssh2/ttxssh/ttxssh.rc =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.rc 2015-02-28 13:33:11 UTC (rev 5806) +++ trunk/ttssh2/ttxssh/ttxssh.rc 2015-02-28 14:26:11 UTC (rev 5807) @@ -80,7 +80,7 @@ LTEXT "Tera Term Secure Shell extension, ",IDC_TTSSH_VERSION,6,7,220,15 ICON "",IDC_TTSSH_ICON,234,7,20,20 LTEXT "Compatible with SSH protocol version 1.5 and 2.0",IDC_SSHVERSIONS,6,23,206,11 - LTEXT "Includes:\r\nTTSSH 1.5.4 (Robert O'Callahan roc+tt @ cs.cmu.edu), 1998-2001\r\nIPv6 extention version 0.81 (kato @ win6.jp), 2000-2003\r\nSSH2 support (Tera Term Project), 2004-2014",IDC_INCLUDES,6,36,248,34 + LTEXT "Includes:\r\nTTSSH 1.5.4 (Robert O'Callahan roc+tt @ cs.cmu.edu), 1998-2001\r\nIPv6 extention version 0.81 (kato @ win6.jp), 2000-2003\r\nSSH2 support (Tera Term Project), 2004-2015",IDC_INCLUDES,6,36,248,34 LTEXT "OpenSSL:",IDC_OPENSSL_VERSION,6,69,175,8 LTEXT "zlib:",IDC_ZLIB_VERSION,6,78,181,8 LTEXT "PuTTY:",IDC_PUTTY_VERSION,6,87,207,8 @@ -628,7 +628,7 @@ VALUE "FileDescription", "TTXSSH" VALUE "FileVersion", "2, 72, 0, 0" VALUE "InternalName", "TTXSSH" - VALUE "LegalCopyright", "(C)2004-2014 TeraTerm Project, (C)1998-1999 Robert O'Callahan" + VALUE "LegalCopyright", "(C)2004-2015 TeraTerm Project, (C)1998-1999 Robert O'Callahan" VALUE "OriginalFilename", "TTXSSH.dll" VALUE "ProductName", "TTSSH" VALUE "ProductVersion", "2, 72, 0, 0" From svnnotify @ sourceforge.jp Sat Feb 28 23:43:31 2015 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 28 Feb 2015 23:43:31 +0900 Subject: [Ttssh2-commit] [5808] year++ Message-ID: <1425134611.066997.30222.nullmailer@users.sourceforge.jp> Revision: 5808 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5808 Author: maya Date: 2015-02-28 23:43:30 +0900 (Sat, 28 Feb 2015) Log Message: ----------- year++ Modified Paths: -------------- tags/teraterm-4_86/teraterm/teraterm/ttermpro.rc tags/teraterm-4_86/teraterm/ttpdlg/ttpdlg.rc tags/teraterm-4_86/teraterm/ttpmacro/ttpmacro.rc tags/teraterm-4_86/ttssh2/ttxssh/ttxssh.rc -------------- next part -------------- Modified: tags/teraterm-4_86/teraterm/teraterm/ttermpro.rc =================================================================== --- tags/teraterm-4_86/teraterm/teraterm/ttermpro.rc 2015-02-28 14:26:11 UTC (rev 5807) +++ tags/teraterm-4_86/teraterm/teraterm/ttermpro.rc 2015-02-28 14:43:30 UTC (rev 5808) @@ -437,7 +437,7 @@ VALUE "FileDescription", "Tera Term" VALUE "FileVersion", "4, 86, 0, 0" VALUE "InternalName", "TTERMPRO" - VALUE "LegalCopyright", "(C)TeraTerm Project 2004-2014, (C)T. Teranishi 1994-1998" + VALUE "LegalCopyright", "(C)TeraTerm Project 2004-2015, (C)T. Teranishi 1994-1998" VALUE "OriginalFilename", "TTERMPRO.EXE" VALUE "ProductName", "Tera Term" VALUE "ProductVersion", "4, 86, 0, 0" Modified: tags/teraterm-4_86/teraterm/ttpdlg/ttpdlg.rc =================================================================== --- tags/teraterm-4_86/teraterm/ttpdlg/ttpdlg.rc 2015-02-28 14:26:11 UTC (rev 5807) +++ tags/teraterm-4_86/teraterm/ttpdlg/ttpdlg.rc 2015-02-28 14:43:30 UTC (rev 5808) @@ -238,7 +238,7 @@ "Static",SS_LEFTNOWORDWRAP | WS_GROUP,38,59,134,8 DEFPUSHBUTTON "OK",IDOK,145,6,32,16,WS_GROUP CONTROL "All Rights Reserved.",IDC_RIGHTS_LABEL,"Static",SS_LEFTNOWORDWRAP | WS_GROUP,38,75,76,8 - CONTROL "(C) 2004-2014 Tera Term Project",IDC_PROJECT_LABEL, + CONTROL "(C) 2004-2015 Tera Term Project",IDC_PROJECT_LABEL, "Static",SS_LEFTNOWORDWRAP | WS_GROUP,38,67,122,9 LTEXT "Includes:",IDC_INLUCDE_LABEL,38,26,31,8 LTEXT "Version",IDC_TT_VERSION,38,10,101,8 Modified: tags/teraterm-4_86/teraterm/ttpmacro/ttpmacro.rc =================================================================== --- tags/teraterm-4_86/teraterm/ttpmacro/ttpmacro.rc 2015-02-28 14:26:11 UTC (rev 5807) +++ tags/teraterm-4_86/teraterm/ttpmacro/ttpmacro.rc 2015-02-28 14:43:30 UTC (rev 5808) @@ -167,7 +167,7 @@ VALUE "FileDescription", "TTPMACRO" VALUE "FileVersion", "4, 86, 0, 0" VALUE "InternalName", "TTPMACRO" - VALUE "LegalCopyright", "Copyright (C) TeraTerm Project 2004-2014, T. Teranishi 1994-1998" + VALUE "LegalCopyright", "Copyright (C) TeraTerm Project 2004-2015, T. Teranishi 1994-1998" VALUE "OriginalFilename", "TTPMACRO.EXE" VALUE "ProductName", "TTPMACRO" VALUE "ProductVersion", "4, 86, 0, 0" Modified: tags/teraterm-4_86/ttssh2/ttxssh/ttxssh.rc =================================================================== --- tags/teraterm-4_86/ttssh2/ttxssh/ttxssh.rc 2015-02-28 14:26:11 UTC (rev 5807) +++ tags/teraterm-4_86/ttssh2/ttxssh/ttxssh.rc 2015-02-28 14:43:30 UTC (rev 5808) @@ -80,7 +80,7 @@ LTEXT "Tera Term Secure Shell extension, ",IDC_TTSSH_VERSION,6,7,220,15 ICON "",IDC_TTSSH_ICON,234,7,20,20 LTEXT "Compatible with SSH protocol version 1.5 and 2.0",IDC_SSHVERSIONS,6,23,206,11 - LTEXT "Includes:\r\nTTSSH 1.5.4 (Robert O'Callahan roc+tt @ cs.cmu.edu), 1998-2001\r\nIPv6 extention version 0.81 (kato @ win6.jp), 2000-2003\r\nSSH2 support (Tera Term Project), 2004-2014",IDC_INCLUDES,6,36,248,34 + LTEXT "Includes:\r\nTTSSH 1.5.4 (Robert O'Callahan roc+tt @ cs.cmu.edu), 1998-2001\r\nIPv6 extention version 0.81 (kato @ win6.jp), 2000-2003\r\nSSH2 support (Tera Term Project), 2004-2015",IDC_INCLUDES,6,36,248,34 LTEXT "OpenSSL:",IDC_OPENSSL_VERSION,6,69,175,8 LTEXT "zlib:",IDC_ZLIB_VERSION,6,78,181,8 LTEXT "PuTTY:",IDC_PUTTY_VERSION,6,87,207,8 @@ -628,7 +628,7 @@ VALUE "FileDescription", "TTXSSH" VALUE "FileVersion", "2, 72, 0, 0" VALUE "InternalName", "TTXSSH" - VALUE "LegalCopyright", "(C)2004-2014 TeraTerm Project, (C)1998-1999 Robert O'Callahan" + VALUE "LegalCopyright", "(C)2004-2015 TeraTerm Project, (C)1998-1999 Robert O'Callahan" VALUE "OriginalFilename", "TTXSSH.dll" VALUE "ProductName", "TTSSH" VALUE "ProductVersion", "2, 72, 0, 0"