From svnnotify @ sourceforge.jp Sat Oct 2 21:25:19 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 02 Oct 2010 21:25:19 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMTddICBiZWVwIOODnuOCr+ODreOBqw==?= =?utf-8?b?5byV5pWw44KS6L+95Yqg44GX44Gf44CC?= Message-ID: <1286022319.443709.28590.nullmailer@users.sourceforge.jp> Revision: 4117 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4117 Author: yutakapon Date: 2010-10-02 21:25:19 +0900 (Sat, 02 Oct 2010) Log Message: ----------- beep マクロに引数を追加した。 Modified Paths: -------------- trunk/teraterm/ttpmacro/ttl.c -------------- next part -------------- Modified: trunk/teraterm/ttpmacro/ttl.c =================================================================== --- trunk/teraterm/ttpmacro/ttl.c 2010-09-29 11:14:29 UTC (rev 4116) +++ trunk/teraterm/ttpmacro/ttl.c 2010-10-02 12:25:19 UTC (rev 4117) @@ -271,13 +271,42 @@ WORD TTLBeep() { - if (GetFirstChar()==0) - { - MessageBeep(0); - return 0; + int val = 0; + WORD Err = 0; + UINT type = MB_OK; + + if (CheckParameterGiven()) { + GetIntVal(&val, &Err); + if (Err!=0) return Err; + + switch (val) { + case 0: + type = -1; + break; + case 1: + type = MB_ICONASTERISK; + break; + case 2: + type = MB_ICONEXCLAMATION; + break; + case 3: + type = MB_ICONHAND; + break; + case 4: + type = MB_ICONQUESTION; + break; + case 5: + type = MB_OK; + break; + default: + return ErrSyntax; + break; + } } - else - return ErrSyntax; + + MessageBeep(type); + + return 0; } WORD TTLBreak() { From svnnotify @ sourceforge.jp Sat Oct 2 21:43:45 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 02 Oct 2010 21:43:45 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMThdICBiZWVwIOODnuOCr+ODreOBqw==?= =?utf-8?b?5byV5pWw44KS6L+95Yqg44GX44Gf44CC?= Message-ID: <1286023425.793535.1741.nullmailer@users.sourceforge.jp> Revision: 4118 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4118 Author: yutakapon Date: 2010-10-02 21:43:45 +0900 (Sat, 02 Oct 2010) Log Message: ----------- beep ??????綣????申?????? Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/en/html/macro/command/beep.html trunk/doc/ja/html/about/history.html trunk/doc/ja/html/macro/command/beep.html -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2010-10-02 12:25:19 UTC (rev 4117) +++ trunk/doc/en/html/about/history.html 2010-10-02 12:43:45 UTC (rev 4118) @@ -42,6 +42,7 @@ +
  • added an argument of the "beep" macro command.
  • Modified: trunk/doc/en/html/macro/command/beep.html =================================================================== --- trunk/doc/en/html/macro/command/beep.html 2010-10-02 12:25:19 UTC (rev 4117) +++ trunk/doc/en/html/macro/command/beep.html 2010-10-02 12:43:45 UTC (rev 4118) @@ -18,20 +18,52 @@

    -beep
    +beep [<sound type>]
     

    Remarks

    -Plays a waveform sound(Windows Default Beep sound). +Plays a waveform sound.
    +The <sound type> parameter can be one of the following values. The default value is the Windows Default Beep sound.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ValueMeaning
    0A simple beep
    1Windows Asterisk sound
    2Windows Exclamation sound
    3Windows Critical Stop sound
    4Windows Question sound
    5Windows Default Beep sound
    +

    Example

     for i 1 10
    -	beep
    +	beep 0
     	pause 1
     next
     
    Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2010-10-02 12:25:19 UTC (rev 4117) +++ trunk/doc/ja/html/about/history.html 2010-10-02 12:43:45 UTC (rev 4118) @@ -42,6 +42,7 @@
  • "?????" ???????? "?????????" ????????????????\?????ヲ????????
  • ????????????? 16 ?? 32 ??????
  • WSAAsyncGetAddrInfo ???????????????????B
  • +
  • ??????? "beep" ?????????
  • Modified: trunk/doc/ja/html/macro/command/beep.html =================================================================== --- trunk/doc/ja/html/macro/command/beep.html 2010-10-02 12:25:19 UTC (rev 4117) +++ trunk/doc/ja/html/macro/command/beep.html 2010-10-02 12:43:45 UTC (rev 4118) @@ -18,20 +18,52 @@

    -beep
    +beep [<sound type>]
     

    ??

    -WAVE ?ョ??????SystemDefault?????????????? +WAVE ?ョ???????????
    +?????????????????uSystemDefault????????????

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ?????
    0???????????????????I?????
    1SystemAsterisk?????????j
    2SystemExclamation??????????
    3SystemHand????????
    4SystemQuestion?????????????
    5SystemDefault???????
    +

    ?

     for i 1 10
    -	beep
    +	beep 0
     	pause 1
     next
     
    From svnnotify @ sourceforge.jp Sat Oct 2 22:20:43 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 02 Oct 2010 22:20:43 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMTldICDoi7HoqLPjgpLov73liqDjgII=?= Message-ID: <1286025643.632182.15911.nullmailer@users.sourceforge.jp> Revision: 4119 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4119 Author: yutakapon Date: 2010-10-02 22:20:43 +0900 (Sat, 02 Oct 2010) Log Message: ----------- ?沿┳??申??? 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 2010-10-02 12:43:45 UTC (rev 4118) +++ trunk/doc/en/html/about/history.html 2010-10-02 13:20:43 UTC (rev 4119) @@ -39,19 +39,25 @@
  • added support for the DECSCA (Select character protection attribute), DECSED (Selective Erase in Display), DECSEL (Selective Erase in Line) and DECSERA (Selective Erase Rectangular Area) control sequence.
  • added support for the DECERA (Erase Rectangular Area) control sequence.
  • - - - +
  • A single character to indicate the window status can be shown on the "Window" menu and "Windows list" dialog. See below. +
  • +
  • Extended the maximum number of Tera Term plugins from 16 to 32.
  • +
  • The WSAAsyncGetAddrInfo function can be hooked by using plugin.
  • added an argument of the "beep" macro command.
  • Bug fixes
  • @@ -1575,7 +1581,7 @@
  • Bug fixes
  • @@ -2334,7 +2340,7 @@

    2010.xx.xx (Ver 1.0.0.17)

    2009.11.10 (Ver 1.0.0.16)

    Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2010-10-02 12:43:45 UTC (rev 4118) +++ trunk/doc/ja/html/about/history.html 2010-10-02 13:20:43 UTC (rev 4119) @@ -39,7 +39,13 @@
  • DECSCA(??????), DECSED(???????, DECSEL(??????, DECSERA(????????????????????
  • DECERA(?????????????????
  • -
  • "?????" ???????? "?????????" ????????????????\?????ヲ????????
  • +
  • "?????" ???????? "?????????" ????????????????\?????ヲ???????? +
  • ????????????? 16 ?? 32 ??????
  • WSAAsyncGetAddrInfo ???????????????????B
  • ??????? "beep" ?????????
  • From svnnotify @ sourceforge.jp Tue Oct 5 23:32:24 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 05 Oct 2010 23:32:24 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMjBdICBUYWhvbWEg44Gu44Kk44Oz44K5?= =?utf-8?b?44OI44O844Or44Gr44Gk44GE44Gm6KiY6L+w?= Message-ID: <1286289144.742037.15306.nullmailer@users.sourceforge.jp> Revision: 4120 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4120 Author: maya Date: 2010-10-05 23:32:24 +0900 (Tue, 05 Oct 2010) Log Message: ----------- Tahoma ????潟????????ゃ????菴? Modified Paths: -------------- trunk/doc/en/html/about/requirements.html trunk/doc/ja/html/about/requirements.html -------------- next part -------------- Modified: trunk/doc/en/html/about/requirements.html =================================================================== --- trunk/doc/en/html/about/requirements.html 2010-10-02 13:20:43 UTC (rev 4119) +++ trunk/doc/en/html/about/requirements.html 2010-10-05 14:32:24 UTC (rev 4120) @@ -14,9 +14,9 @@

    Supported operating systems:

    @@ -31,7 +32,8 @@ (*1) Windows Sockets2.0 ??????
    (*2) Internet Explorer 5 ???K????
    (*3) LogMeTT, TTL Editor ???????
    -(*4) Tahoma ?????????????????B +(*4) Tahoma ?????????????????B
    +(*5) ??????????????A?????????VL????????????????Japanese??????????

    From svnnotify @ sourceforge.jp Wed Oct 20 02:29:27 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 20 Oct 2010 02:29:27 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMjhdICDooYzmnKvjga7jgr/jg5bjgpI=?= =?utf-8?b?5YmK6Zmk44CC?= Message-ID: <1287509367.789835.10810.nullmailer@users.sourceforge.jp> Revision: 4128 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4128 Author: doda Date: 2010-10-20 02:29:27 +0900 (Wed, 20 Oct 2010) Log Message: ----------- 行末のタブを削除。 Modified Paths: -------------- trunk/cygterm/cyglaunch.c -------------- next part -------------- Modified: trunk/cygterm/cyglaunch.c =================================================================== --- trunk/cygterm/cyglaunch.c 2010-10-16 17:18:26 UTC (rev 4127) +++ trunk/cygterm/cyglaunch.c 2010-10-19 17:29:27 UTC (rev 4128) @@ -94,21 +94,21 @@ { char Temp[256], Cmdline[256]; int i; - + // Cygwin install path GetPrivateProfileString(Section,"CygwinDirectory","c:\\cygwin", Temp,sizeof(Temp),FName); - + //printf("%s %d\n", Temp, GetLastError()); - + Cmdline[0] = 0; for (i=1; i Revision: 4129 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4129 Author: doda Date: 2010-10-20 02:52:48 +0900 (Wed, 20 Oct 2010) Log Message: ----------- 偽の cygwin1.dll が有るディレクトリに対して CygTerm Here した時の問題への対処。 (Security Fix) [Ttssh2-devel 1771] cyglaunch.cc * cyglaunch.exe の有るディレクトリに移動してから cygterm.exe を起動するようにした。 * TERATERM.INI が読み込めない場合があったのを修正した。 cygterm.cc * '-d' オプションでのディレクトリ移動のタイミングを遅らせた。 Modified Paths: -------------- trunk/cygterm/README trunk/cygterm/README-j trunk/cygterm/cyglaunch.c trunk/cygterm/cygterm.cc -------------- next part -------------- Modified: trunk/cygterm/README =================================================================== --- trunk/cygterm/README 2010-10-19 17:29:27 UTC (rev 4128) +++ trunk/cygterm/README 2010-10-19 17:52:48 UTC (rev 4129) @@ -252,19 +252,23 @@ // T E S T E D O N // - As of 2008-Nov, CygTerm+ has been tested in the following environments. + As of 2010-Oct, CygTerm+ has been tested in the following environments. WindowsXP SP3 + Cygwin 1.5.25-15 + WindowsXP SP3 + Cygwin 1.7.7 Terminal emulator: Tera Term Pro 2.3 - Tera Term 4.60 + Tera Term 4.67 PuTTY 0.60 Shell: - bash 3.2.39 - zsh 4.3.4 + bash 3.2.51 + zsh 4.3.10 // C H A N G E S // +v1.07_20 2010/10/20 (by doda) + * Directory change timing with '-d' option is delayed. (security fix) + v1.07_19 2010/01/28 (by doda) * Accept keyword "AUTO" with '-s' option. Modified: trunk/cygterm/README-j =================================================================== --- trunk/cygterm/README-j 2010-10-19 17:29:27 UTC (rev 4128) +++ trunk/cygterm/README-j 2010-10-19 17:52:48 UTC (rev 4129) @@ -264,19 +264,24 @@ // $BF0(B $B:n(B $B3N(B $BG'(B // - 2008$BG/(B 11$B7n8=:_!"0J2<$N4D6-$GF0:n$,3NG'$G$-$F$$$^$9!#(B + 2010$BG/(B 10$B7n8=:_!"0J2<$N4D6-$GF0:n$,3NG'$G$-$F$$$^$9!#(B WindowsXP SP3 + Cygwin 1.5.25-15 + WindowsXP SP3 + Cygwin 1.7.7 $B%?!<%_%J%k%(%_%e%l!<%?(B Tera Term Pro 2.3 - Tera Term 4.60 + Tera Term 4.67 PuTTY 0.60 $B%7%'%k(B - bash 3.2.39 - zsh 4.3.4 + bash 3.2.51 + zsh 4.3.10 // $BJQ(B $B99(B $BMz(B $BNr(B // +v1.07_20 2010/10/20 (by doda) + * '-d' $B%*%W%7%g%s$G$N%G%#%l%/%H%jJQ99$N%?%$%_%s%0$rCY$i$;$?!#(B + (security fix) + v1.07_19 2010/01/28 (by doda) * '-s' $B%*%W%7%g%s$N0z?t$K(B 'AUTO' $B$r 0 && + (bs = strrchr(Temp, '\\')) != NULL) { + *bs = 0; + _chdir(Temp); + _snprintf(bs, sizeof(Temp) + Temp - bs, "\\%s", FName); + } + else { + _snprintf(Temp, sizeof(Temp), ".\\", FName); + } + // Cygwin install path - GetPrivateProfileString(Section,"CygwinDirectory","c:\\cygwin", - Temp,sizeof(Temp),FName); + GetPrivateProfileString(Section, "CygwinDirectory", "c:\\cygwin", + CygwinDir, sizeof(CygwinDir), Temp); - //printf("%s %d\n", Temp, GetLastError()); + //printf("%s %d\n", CygwinDir, GetLastError()); Cmdline[0] = 0; for (i=1; i #include @@ -149,6 +153,7 @@ char cmd_termopt[256] = ""; char cmd_shell[128] = ""; char pw_shell[128] = ""; +char change_dir[256] = ""; // TCP port for connection to another terminal application //-------------------------------------------------------- @@ -491,8 +496,7 @@ else if (!strcmp(*argv, "-d")) { // -d if (*++argv == NULL) break; - quote_cut(tmp, sizeof(tmp), *argv); - chdir(tmp); + quote_cut(change_dir, sizeof(change_dir), *argv); } else if (!strcmp(*argv, "-o")) { // -o if (*++argv == NULL) @@ -937,6 +941,9 @@ // ignore chdir(2) system-call error. chdir(home_dir); } + else if (change_dir[0] != 0) { + chdir(change_dir); + } // execute a shell char *argv[32]; get_argv(argv, 32, cmd_shell); From svnnotify @ sourceforge.jp Wed Oct 20 09:41:58 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 20 Oct 2010 09:41:58 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzBdICBzY3Ag5a++5b+c44Gu44Gf44KB?= =?utf-8?b?44GrIHR0eHNzaCAuIGRsbCDjgpIgTG9hZExpYnJhcnkg44GX44Gm44GE44KL?= =?utf-8?b?44Gu44KS5YmK6Zmk44CC?= Message-ID: <1287535318.284002.3611.nullmailer@users.sourceforge.jp> Revision: 4130 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4130 Author: doda Date: 2010-10-20 09:41:57 +0900 (Wed, 20 Oct 2010) Log Message: ----------- scp 対応のために ttxssh.dll を LoadLibrary しているのを削除。 ttxssh.dll が存在する場合、既に LoadLibrary されているはずのため。 Modified Paths: -------------- trunk/teraterm/teraterm/ttdde.c trunk/teraterm/teraterm/vtwin.cpp -------------- next part -------------- Modified: trunk/teraterm/teraterm/ttdde.c =================================================================== --- trunk/teraterm/teraterm/ttdde.c 2010-10-19 17:52:48 UTC (rev 4129) +++ trunk/teraterm/teraterm/ttdde.c 2010-10-20 00:41:57 UTC (rev 4130) @@ -742,7 +742,6 @@ //MessageBox(NULL, "hoge", "foo", MB_OK); if (func == NULL) { - h2 = LoadLibrary("ttxssh.dll"); if ( ((h = GetModuleHandle("ttxssh.dll")) == NULL) ) { _snprintf_s(msg, sizeof(msg), _TRUNCATE, "GetModuleHandle(\"ttxssh.dll\")) %d", GetLastError()); goto scp_send_error; @@ -780,7 +779,6 @@ //MessageBox(NULL, "hoge", "foo", MB_OK); if (func == NULL) { - h2 = LoadLibrary("ttxssh.dll"); if ( ((h = GetModuleHandle("ttxssh.dll")) == NULL) ) { _snprintf_s(msg, sizeof(msg), _TRUNCATE, "GetModuleHandle(\"ttxssh.dll\")) %d", GetLastError()); goto scp_rcv_error; Modified: trunk/teraterm/teraterm/vtwin.cpp =================================================================== --- trunk/teraterm/teraterm/vtwin.cpp 2010-10-19 17:52:48 UTC (rev 4129) +++ trunk/teraterm/teraterm/vtwin.cpp 2010-10-20 00:41:57 UTC (rev 4130) @@ -1893,7 +1893,6 @@ char msg[128]; if (func == NULL) { - h2 = LoadLibrary("ttxssh.dll"); if ( ((h = GetModuleHandle("ttxssh.dll")) == NULL) ) { _snprintf_s(msg, sizeof(msg), _TRUNCATE, "GetModuleHandle(\"ttxssh.dll\")) %d", GetLastError()); goto scp_send_error; From svnnotify @ sourceforge.jp Wed Oct 20 09:48:28 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 20 Oct 2010 09:48:28 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzFdICByNDEzMCDjgafjga4gRnJlZUxp?= =?utf-8?b?YnJhcnkg44Gu5YmK6Zmk44GX5b+Y44KM44CC?= Message-ID: <1287535708.940175.14088.nullmailer@users.sourceforge.jp> Revision: 4131 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4131 Author: doda Date: 2010-10-20 09:48:28 +0900 (Wed, 20 Oct 2010) Log Message: ----------- r4130 ?с? FreeLibrary ????ゃ?綽???? Modified Paths: -------------- trunk/teraterm/teraterm/ttdde.c trunk/teraterm/teraterm/vtwin.cpp -------------- next part -------------- Modified: trunk/teraterm/teraterm/ttdde.c =================================================================== --- trunk/teraterm/teraterm/ttdde.c 2010-10-20 00:41:57 UTC (rev 4130) +++ trunk/teraterm/teraterm/ttdde.c 2010-10-20 00:48:28 UTC (rev 4131) @@ -736,7 +736,7 @@ { typedef int (CALLBACK *PSSH_start_scp)(char *, char *); static PSSH_start_scp func = NULL; - static HMODULE h = NULL, h2 = NULL; + static HMODULE h = NULL; char msg[128]; //MessageBox(NULL, "hoge", "foo", MB_OK); @@ -764,7 +764,6 @@ scp_send_error: MessageBox(NULL, msg, "Tera Term: scpsend command error", MB_OK | MB_ICONERROR); - FreeLibrary(h2); return DDE_FNOTPROCESSED; } break; @@ -773,7 +772,7 @@ { typedef int (CALLBACK *PSSH_start_scp)(char *, char *); static PSSH_start_scp func = NULL; - static HMODULE h = NULL, h2 = NULL; + static HMODULE h = NULL; char msg[128]; //MessageBox(NULL, "hoge", "foo", MB_OK); @@ -801,7 +800,6 @@ scp_rcv_error: MessageBox(NULL, msg, "Tera Term: scpsend command error", MB_OK | MB_ICONERROR); - FreeLibrary(h2); return DDE_FNOTPROCESSED; } break; Modified: trunk/teraterm/teraterm/vtwin.cpp =================================================================== --- trunk/teraterm/teraterm/vtwin.cpp 2010-10-20 00:41:57 UTC (rev 4130) +++ trunk/teraterm/teraterm/vtwin.cpp 2010-10-20 00:48:28 UTC (rev 4131) @@ -1889,7 +1889,7 @@ } else if (ret == IDNO) { // SCP typedef int (CALLBACK *PSSH_start_scp)(char *, char *); static PSSH_start_scp func = NULL; - static HMODULE h = NULL, h2 = NULL; + static HMODULE h = NULL; char msg[128]; if (func == NULL) { @@ -1911,7 +1911,6 @@ scp_send_error: ::MessageBox(NULL, msg, "Tera Term: scpsend command error", MB_OK | MB_ICONERROR); - FreeLibrary(h2); send_success: FreeFileVar(&SendVar); // ??????? From svnnotify @ sourceforge.jp Sat Oct 23 23:44:44 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 23 Oct 2010 23:44:44 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzJdICDjgrXjg53jg7zjg4hPU+OBrg==?= =?utf-8?b?6KiY6L+w44KS5pW055CG?= Message-ID: <1287845084.206523.19504.nullmailer@users.sourceforge.jp> Revision: 4132 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4132 Author: maya Date: 2010-10-23 23:44:44 +0900 (Sat, 23 Oct 2010) Log Message: ----------- ?泣??若?OS???菴違??雁? Linux?????????潟?荐????????菴処? Modified Paths: -------------- trunk/doc/en/html/about/requirements.html trunk/doc/en/html/menu/setup-font.html trunk/doc/ja/html/about/requirements.html trunk/doc/ja/html/menu/setup-font.html -------------- next part -------------- Modified: trunk/doc/en/html/about/requirements.html =================================================================== --- trunk/doc/en/html/about/requirements.html 2010-10-20 00:48:28 UTC (rev 4131) +++ trunk/doc/en/html/about/requirements.html 2010-10-23 14:44:44 UTC (rev 4132) @@ -15,25 +15,24 @@
    • Microsoft Windows 95 (*1) (*2) (*3) (*4)
    • -
    • Microsoft Windows 98, Me
    • +
    • Microsoft Windows 98, 98 Second Edition
    • +
    • Microsoft Windows Me
    • Microsoft Windows NT 4.0 SP6 (*2) (*4)
    • -
    • Microsoft Windows 2000, XP
    • -
    • Microsoft Windows 2000 Server
    • -
    • Microsoft Windows XP x64
    • +
    • Microsoft Windows 2000
    • +
    • Microsoft Windows XP
    • Microsoft Windows Vista
    • Microsoft Windows Server 2003, 2003 R2
    • Microsoft Windows Server 2008, 2008 R2
    • Microsoft Windows 7
    • -
    • Fedora 13 with wine 1.3.4 (*5)

    -NOTE: Not supporting Microsoft Windows3.1.
    +NOTE1: Not supporting Microsoft Windows 3.1.
    +NOTE2: Supporting x64 Windows.
    (*1) Windows Sockets2.0 requirement
    (*2) Internet Explorer 5 later requirement
    (*3) LogMeTT and TTL Editor can not work.
    -(*4) Tahoma font is recommended.
    -(*5) When the Japanese characters are garbled, select the VL gothic font and the Japanese character set.
    +(*4) Tahoma font is recommended.

    Modified: trunk/doc/en/html/menu/setup-font.html =================================================================== --- trunk/doc/en/html/menu/setup-font.html 2010-10-20 00:48:28 UTC (rev 4131) +++ trunk/doc/en/html/menu/setup-font.html 2010-10-23 14:44:44 UTC (rev 4132) @@ -21,10 +21,20 @@ Select a font from the list. +
    Font style
    +
    + Ignored. +
    +
    Size
    Select a font size in points.
    + +
    Script
    +

    Modified: trunk/doc/ja/html/about/requirements.html =================================================================== --- trunk/doc/ja/html/about/requirements.html 2010-10-20 00:48:28 UTC (rev 4131) +++ trunk/doc/ja/html/about/requirements.html 2010-10-23 14:44:44 UTC (rev 4132) @@ -15,25 +15,24 @@

    • Microsoft Windows 95 (*1) (*2) (*3) (*4)
    • -
    • Microsoft Windows 98, Me
    • +
    • Microsoft Windows 98, 98 Second Edition
    • +
    • Microsoft Windows Me
    • Microsoft Windows NT 4.0 SP6 (*2) (*4)
    • -
    • Microsoft Windows 2000, XP
    • -
    • Microsoft Windows 2000 Server
    • -
    • Microsoft Windows XP x64
    • +
    • Microsoft Windows 2000
    • +
    • Microsoft Windows XP
    • Microsoft Windows Vista
    • Microsoft Windows Server 2003, 2003 R2
    • Microsoft Windows Server 2008, 2008 R2
    • Microsoft Windows 7
    • -
    • Fedora 13 with wine 1.3.4 (*5)

    -?: Windows 3.1 ?????????????
    +?1: Windows 3.1 ?????????????
    +?2: x64 Windows ????????????
    (*1) Windows Sockets2.0 ??????
    (*2) Internet Explorer 5 ???K????
    (*3) LogMeTT, TTL Editor ???????
    -(*4) Tahoma ?????????????????B
    -(*5) ??????????????A?????????VL????????????????Japanese??????????
    +(*4) Tahoma ?????????????????B

    Modified: trunk/doc/ja/html/menu/setup-font.html =================================================================== --- trunk/doc/ja/html/menu/setup-font.html 2010-10-20 00:48:28 UTC (rev 4131) +++ trunk/doc/ja/html/menu/setup-font.html 2010-10-23 14:44:44 UTC (rev 4132) @@ -22,10 +22,20 @@ ?????ヲ?????????????????????????? +
    ????
    +
    + ???????????? +
    +
    ???
    ????????????????????????
    + +
    ?????
    +
    + ?ヲ????????????????????????? +

    From svnnotify @ sourceforge.jp Sun Oct 24 00:16:55 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 24 Oct 2010 00:16:55 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzNdICDmlLnooYzjga7oqqzmmI7jgpI=?= =?utf-8?b?6L+95Yqg?= Message-ID: <1287847015.567977.3483.nullmailer@users.sourceforge.jp> Revision: 4133 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4133 Author: maya Date: 2010-10-24 00:16:55 +0900 (Sun, 24 Oct 2010) Log Message: ----------- ?壕???????菴遵? Modified Paths: -------------- trunk/doc/en/html/menu/setup-terminal.html trunk/doc/ja/html/menu/setup-terminal.html -------------- next part -------------- Modified: trunk/doc/en/html/menu/setup-terminal.html =================================================================== --- trunk/doc/en/html/menu/setup-terminal.html 2010-10-23 14:44:44 UTC (rev 4132) +++ trunk/doc/en/html/menu/setup-terminal.html 2010-10-23 15:16:55 UTC (rev 4133) @@ -33,18 +33,29 @@

    New-line (receive)
    - If the CR options is selected, Tera Term doesn't convert it.
    - If the CR+LF option is selected, received CR ($0D) characters are - converted to CR+LF ($0D $0A) pairs.
    - If the LF option is selected, received LF ($0A) characters are - converted to CR+LF ($0D $0A) pairs. +
    +
    CR
    +
    Tera Term doesn't convert it.
    + +
    CR+LF
    +
    Received CR ($0D) characters are converted to CR+LF ($0D $0A) pairs.
    + e.g.) Received "CR LF" is converted to "CR LF LF."
    + +
    LF
    +
    Received LF ($0A) characters are converted to CR+LF ($0D $0A) pairs.
    + e.g.) Received "CR LF" is converted to "CR CR LF."
    +
    New-line (transmit)
    - If the CR options is selected, Tera Term doesn't convert it.
    - If the CR+LF option is selected, CR ($0D) characters to be sent are - converted to CR+LF ($0D $0A) pairs before they are actually sent. +
    +
    CR
    +
    Tera Term doesn't convert it.
    + +
    CR+LF
    +
    CR ($0D) characters to be sent are converted to CR+LF ($0D $0A) pairs before they are actually sent.
    +
    Terminal ID
    Modified: trunk/doc/ja/html/menu/setup-terminal.html =================================================================== --- trunk/doc/ja/html/menu/setup-terminal.html 2010-10-23 14:44:44 UTC (rev 4132) +++ trunk/doc/ja/html/menu/setup-terminal.html 2010-10-23 15:16:55 UTC (rev 4133) @@ -33,18 +33,29 @@
    New-line (receive)
    - CR ???????A?????????
    - CR+LF ???????A????? ???? CR ($0D) ? - CR+LF ($0D $0A)???????
    - LF ???????A????? ???? LF ($0A) ? - CR+LF ($0D $0A)??????? +
    +
    CR
    +
    ?????????
    + +
    CR+LF
    +
    ????? ???? CR ($0D) ? CR+LF ($0D $0A)???????
    + ?) ????? "CR LF" ? "CR LF LF" ????????
    + +
    LF
    +
    ????? ???? LF ($0A) ? CR+LF ($0D $0A)???????
    + ?) ????? "CR LF" ? "CR CR LF" ????????
    +
    New-line (transmit)
    - CR ???????A?????????
    - CR+LF ???????A???????? CR ($0D) ? - CR+LF ($0D $0A) ??????? +
    +
    CR
    +
    ?????????
    + +
    CR+LF
    +
    ???????? CR ($0D) ? CR+LF ($0D $0A) ???????
    +
    Terminal ID
    From svnnotify @ sourceforge.jp Sun Oct 24 13:43:01 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 24 Oct 2010 13:43:01 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzRdICDjgrfjgrnjg4bjg6Djg4fjgqM=?= =?utf-8?b?44Os44Kv44OI44Oq44GuIGRsbCDoqq3jgb/ovrzjgb/mmYLjgavjg5Xjg6s=?= =?utf-8?b?44OR44K544KS5oyH5a6a44GZ44KL44KI44GG44Gr44GX44Gf44CC?= Message-ID: <1287895381.715194.23984.nullmailer@users.sourceforge.jp> Revision: 4134 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4134 Author: maya Date: 2010-10-24 13:43:01 +0900 (Sun, 24 Oct 2010) Log Message: ----------- ?激???????????????dll 茯??莨若?????????????絎??????????????ゃ??鴻??若????TERATERM.INI ?????昭?障???notepad.exe ???????鴻????????????? Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/ja/html/about/history.html trunk/installer/teraterm.iss trunk/teraterm/teraterm/ttime.c trunk/teraterm/teraterm/ttwsk.c trunk/teraterm/teraterm/vtdisp.c trunk/teraterm/teraterm/vtwin.cpp -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2010-10-23 15:16:55 UTC (rev 4133) +++ trunk/doc/en/html/about/history.html 2010-10-24 04:43:01 UTC (rev 4134) @@ -54,6 +54,7 @@
  • Bug fixes
      +
    • The baud rate can not be properly selected on the [Setup]-[Serial port] dialog.
    • Beep setting does not work.
    • The scroll area can not be cleared by using the DECALN (DEC Screen Alignment Test) control sequence.
    • Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2010-10-23 15:16:55 UTC (rev 4133) +++ trunk/doc/ja/html/about/history.html 2010-10-24 04:43:01 UTC (rev 4134) @@ -54,6 +54,7 @@
    • ????
        +
      • ???????? DLL ????????????????B
      • [Setup]-[Serial port] ???????ヲ????? Baud rate ???????????????????B
      • Beep ????????????????????B
      • DECALN (DEC Screen Alignment Test) ????????????????????????????
      • Modified: trunk/installer/teraterm.iss =================================================================== --- trunk/installer/teraterm.iss 2010-10-23 15:16:55 UTC (rev 4133) +++ trunk/installer/teraterm.iss 2010-10-24 04:43:01 UTC (rev 4134) @@ -363,21 +363,24 @@ procedure SetIniFile(iniFile: String); var - Language : String; - Locale : String; - CodePage : integer; - VTFont : String; - TEKFont : String; - FileDir : String; - TCPPort : integer; + Language : String; + Locale : String; + CodePage : integer; + VTFont : String; + TEKFont : String; + FileDir : String; + TCPPort : integer; + ViewlogEditor : String; begin - Language := GetIniString('Tera Term', 'Language', '', iniFile); - Locale := GetIniString('Tera Term', 'Locale', '', iniFile); - CodePage := GetIniInt('Tera Term', 'CodePage', 0, 0, 0, iniFile); - VTFont := GetIniString('Tera Term', 'VTFont', '', iniFile); - TEKFont := GetIniString('Tera Term', 'TEKFont', '', iniFile); - FileDir := GetIniString('Tera Term', 'FileDir', '', iniFile); + Language := GetIniString('Tera Term', 'Language', '', iniFile); + Locale := GetIniString('Tera Term', 'Locale', '', iniFile); + CodePage := GetIniInt('Tera Term', 'CodePage', 0, 0, 0, iniFile); + VTFont := GetIniString('Tera Term', 'VTFont', '', iniFile); + TEKFont := GetIniString('Tera Term', 'TEKFont', '', iniFile); + FileDir := GetIniString('Tera Term', 'FileDir', '', iniFile); + FileDir := GetIniString('Tera Term', 'FileDir', '', iniFile); + ViewlogEditor := GetIniString('Tera Term', 'ViewlogEditor', '', iniFile); case GetUILanguage and $3FF of $04: // Chinese @@ -485,6 +488,11 @@ SetIniInt('Tera Term', 'TCPPort', 23, iniFile); end; + if ViewlogEditor = 'notepad.exe' then begin + ViewlogEditor := ExpandConstant('{win}') + '\' + 'notepad.exe'; + SetIniString('Tera Term', 'ViewlogEditor', ViewlogEditor, iniFile); + end; + end; procedure InitializeWizard; Modified: trunk/teraterm/teraterm/ttime.c =================================================================== --- trunk/teraterm/teraterm/ttime.c 2010-10-23 15:16:55 UTC (rev 4133) +++ trunk/teraterm/teraterm/ttime.c 2010-10-24 04:43:01 UTC (rev 4134) @@ -52,9 +52,12 @@ PTTSet tempts; #endif char uimsg[MAX_UIMSG]; + char imm32_dll[MAX_PATH]; if (HIMEDLL != NULL) return TRUE; - HIMEDLL = LoadLibrary("IMM32.DLL"); + GetSystemDirectory(imm32_dll, sizeof(imm32_dll)); + strncat_s(imm32_dll, sizeof(imm32_dll), "\\imm32.dll", _TRUNCATE); + HIMEDLL = LoadLibrary(imm32_dll); if (HIMEDLL == NULL) { get_lang_msg("MSG_TT_ERROR", uimsg, sizeof(uimsg), "Tera Term: Error", ts.UILanguageFile); Modified: trunk/teraterm/teraterm/ttwsk.c =================================================================== --- trunk/teraterm/teraterm/ttwsk.c 2010-10-23 15:16:55 UTC (rev 4133) +++ trunk/teraterm/teraterm/ttwsk.c 2010-10-24 04:43:01 UTC (rev 4134) @@ -84,7 +84,11 @@ if (HWinsock == NULL) { - HWinsock = LoadLibrary("WSOCK32.DLL"); + char wsock32_dll[MAX_PATH]; + + GetSystemDirectory(wsock32_dll, sizeof(wsock32_dll)); + strncat_s(wsock32_dll, sizeof(wsock32_dll), "\\wsock32.dll", _TRUNCATE); + HWinsock = LoadLibrary(wsock32_dll); if (HWinsock == NULL) return FALSE; Err = FALSE; Modified: trunk/teraterm/teraterm/vtdisp.c =================================================================== --- trunk/teraterm/teraterm/vtdisp.c 2010-10-23 15:16:55 UTC (rev 4133) +++ trunk/teraterm/teraterm/vtdisp.c 2010-10-24 04:43:01 UTC (rev 4134) @@ -1139,6 +1139,7 @@ void BGInitialize(void) { char path[MAX_PATH],config_file[MAX_PATH],tempPath[MAX_PATH]; + char msimg32_dll[MAX_PATH],user32_dll[MAX_PATH]; // VTColor ????? BGVTColor[0] = ts.VTColor[0]; @@ -1266,16 +1267,22 @@ BGPreloadSrc(&BGSrc2); // AlphaBlend ?????????? - if(BGUseAlphaBlendAPI) - (FARPROC)BGAlphaBlend = GetProcAddressWithDllName("msimg32.dll","AlphaBlend"); - else + if(BGUseAlphaBlendAPI) { + GetSystemDirectory(msimg32_dll, sizeof(msimg32_dll)); + strncat_s(msimg32_dll, sizeof(msimg32_dll), "\\msimg32.dll", _TRUNCATE); + (FARPROC)BGAlphaBlend = GetProcAddressWithDllName(msimg32_dll,"AlphaBlend"); + } + else { BGAlphaBlend = NULL; + } if(!BGAlphaBlend) BGAlphaBlend = AlphaBlendWithoutAPI; //EnumDisplayMonitors ??? - (FARPROC)BGEnumDisplayMonitors = GetProcAddressWithDllName("user32.dll","EnumDisplayMonitors"); + GetSystemDirectory(user32_dll, sizeof(user32_dll)); + strncat_s(user32_dll, sizeof(user32_dll), "\\user32.dll", _TRUNCATE); + (FARPROC)BGEnumDisplayMonitors = GetProcAddressWithDllName(user32_dll,"EnumDisplayMonitors"); } void BGExchangeColor() { Modified: trunk/teraterm/teraterm/vtwin.cpp =================================================================== --- trunk/teraterm/teraterm/vtwin.cpp 2010-10-23 15:16:55 UTC (rev 4133) +++ trunk/teraterm/teraterm/vtwin.cpp 2010-10-24 04:43:01 UTC (rev 4134) @@ -217,9 +217,12 @@ typedef BOOL (WINAPI *func)(HWND,COLORREF,BYTE,DWORD); static HMODULE g_hmodUser32 = NULL; static func g_pSetLayeredWindowAttributes = NULL; + char user32_dll[MAX_PATH]; + GetSystemDirectory(user32_dll, sizeof(user32_dll)); + strncat_s(user32_dll, sizeof(user32_dll), "\\user32.dll", _TRUNCATE); if (g_hmodUser32 == NULL) { - g_hmodUser32 = LoadLibrary("user32.dll"); + g_hmodUser32 = LoadLibrary(user32_dll); if (g_hmodUser32 == NULL) { return FALSE; } @@ -351,10 +354,13 @@ int frame; char msg[3072], buf[256]; HMODULE h, h2; + char imagehlp_dll[MAX_PATH]; // Windows98/Me/NT4???????????????(2007.10.9 yutaka) - h2 = LoadLibrary("imagehlp.dll"); - if (((h = GetModuleHandle("imagehlp.dll")) == NULL) || + GetSystemDirectory(imagehlp_dll, sizeof(imagehlp_dll)); + strncat_s(imagehlp_dll, sizeof(imagehlp_dll), "\\imagehlp.dll", _TRUNCATE); + h2 = LoadLibrary(imagehlp_dll); + if (((h = GetModuleHandle(imagehlp_dll)) == NULL) || (GetProcAddress(h, "SymGetLineFromAddr") == NULL)) { FreeLibrary(h2); goto error; From svnnotify @ sourceforge.jp Mon Oct 25 20:29:50 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 25 Oct 2010 20:29:50 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzVdICDlpInmm7TlsaXmrbTmm7TmlrA=?= =?utf-8?b?44CC?= Message-ID: <1288006190.547009.3319.nullmailer@users.sourceforge.jp> Revision: 4135 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4135 Author: doda Date: 2010-10-25 20:29:50 +0900 (Mon, 25 Oct 2010) Log Message: ----------- 紊??絮ユ??贋??? 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 2010-10-24 04:43:01 UTC (rev 4134) +++ trunk/doc/en/html/about/history.html 2010-10-25 11:29:50 UTC (rev 4135) @@ -66,6 +66,7 @@
        • upgraded TTSSH version supporting SSH2 to 2.55
        • upgraded TTProxy to 1.0.0.17
        • +
        • upgraded CygTerm+ to 1.07_19
        @@ -220,7 +221,7 @@
        • stopped to write the new entry to the user's teraterm.ini file by the installer.
        • stopped to write the language configuration selected by a user to the user's teraterm.ini file by the installer.
        • -
        • upgraded CygTerm+ to 1.07_19
        • +
        • upgraded CygTerm+ to 1.07_19
        • upgraded TTXRecurringCommand Plugin to 1.01
        • upgraded TTXResizeMenu Plugin to 1.01
        • upgraded TTXttyrec Plugin to 1.02
        • @@ -2156,6 +2157,11 @@

          CygTerm+

          +

          v1.07_20 2010/10/20 (by doda)

          +
            + +
          +

          v1.07_19 2010/01/28 (by doda)

          • Accept keyword "AUTO" with '-s' option.
          • Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2010-10-24 04:43:01 UTC (rev 4134) +++ trunk/doc/ja/html/about/history.html 2010-10-25 11:29:50 UTC (rev 4135) @@ -66,6 +66,7 @@ @@ -2159,6 +2160,11 @@

            CygTerm+

            +

            v1.07_20 2010/10/20 (by doda)

            +
              +
            • ???????? '-d' ???????????????????????????
            • +
            +

            v1.07_19 2010/01/28 (by doda)

            • '-s' ????????? 'AUTO' ????????????
            • From svnnotify @ sourceforge.jp Mon Oct 25 22:29:58 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 25 Oct 2010 22:29:58 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzZdICBjeWdsYXVuY2gg44Gu5aSJ5pu0?= =?utf-8?b?5bGl5q2044KS6L+95Yqg44GX44Gf44CC?= Message-ID: <1288013398.805888.13635.nullmailer@users.sourceforge.jp> Revision: 4136 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4136 Author: doda Date: 2010-10-25 22:29:58 +0900 (Mon, 25 Oct 2010) Log Message: ----------- cyglaunch ????翫吋罩眼?菴遵?????? 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 2010-10-25 11:29:50 UTC (rev 4135) +++ trunk/doc/en/html/about/history.html 2010-10-25 13:29:58 UTC (rev 4136) @@ -15,6 +15,7 @@
            • Tera Term
            • TTSSH
            • CygTerm+
            • +
            • cyglaunch
            • TTProxy
            • TeraTerm Menu
            • TTX KanjiMenu
            • @@ -67,6 +68,7 @@
            • upgraded TTSSH version supporting SSH2 to 2.55
            • upgraded TTProxy to 1.0.0.17
            • upgraded CygTerm+ to 1.07_19
            • +
            • upgraded cyglaunch to 1.02
            @@ -462,6 +464,7 @@
            • upgraded TTSSH version supporting SSH2 to 2.50
            • upgraded TTX KanjiMenu Plugin to 0.1.5.
            • +
            • upgraded cyglaunch to 1.01
            • added support for Microsoft Windows 95.
            • added limited support for Microsoft Windows 7 beta(build7000).
            @@ -2342,7 +2345,22 @@
          • The initial version was released.
          +

          cyglaunch

          +

          2010.xx.xx (Ver 1.02)

          +
            + +
          +

          2009.3.22 (Ver 1.01)

          +
            +
          • Bug fix: PATH environment variable is truncated to 1024 bytes.
          • +
          + +

          2007.8.8 (Ver 1.00)

          +
            +
          • First release.
          • +
          +

          TTProxy

          2010.xx.xx (Ver 1.0.0.17)

          Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2010-10-25 11:29:50 UTC (rev 4135) +++ trunk/doc/ja/html/about/history.html 2010-10-25 13:29:58 UTC (rev 4136) @@ -15,6 +15,7 @@
        • Tera Term
        • TTSSH
        • CygTerm+
        • +
        • cyglaunch
        • TTProxy
        • TeraTerm Menu
        • TTX KanjiMenu
        • @@ -67,6 +68,7 @@
        • SSH2??TTSSH(2.55)???????
        • TTProxy(1.0.0.17)???????
        • CygTerm+ 1.07_20???????
        • +
        • cyglaunch(1.02)???????
        @@ -461,6 +463,7 @@ @@ -2346,6 +2349,23 @@
      +

      cyglaunch

      +

      2010.xx.xx (Ver 1.02)

      +
        +
      • ???????? ??????????? cyglaunch.exe ???????????????? cygterm.exe ???????????
      • +
      + +

      2009.3.22 (Ver 1.01)

      +
        +
      • PATH????????1024??????????A??フ?????????
      • +
      + +

      2007.8.8 (Ver 1.00)

      +
        +
      • ??/li> +
      + +

      TTProxy

      2010.xx.xx (Ver 1.0.0.17)

      From svnnotify @ sourceforge.jp Mon Oct 25 22:43:58 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 25 Oct 2010 22:43:58 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzddICDjg4fjg5Xjgqnjg6vjg4jjga4=?= =?utf-8?b?44Oh44OL44Ol44O844KS5buD5q2i44GX44Gf44Gu44KS5Y+N5pig44CC?= Message-ID: <1288014238.291992.11043.nullmailer@users.sourceforge.jp> Revision: 4137 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4137 Author: doda Date: 2010-10-25 22:43:58 +0900 (Mon, 25 Oct 2010) Log Message: ----------- ??????????<??ャ????罩≪?????????? Modified Paths: -------------- trunk/TTXSamples/TTXResizeMenu/ReadMe-ja.txt -------------- next part -------------- Modified: trunk/TTXSamples/TTXResizeMenu/ReadMe-ja.txt =================================================================== --- trunk/TTXSamples/TTXResizeMenu/ReadMe-ja.txt 2010-10-25 13:29:58 UTC (rev 4136) +++ trunk/TTXSamples/TTXResizeMenu/ReadMe-ja.txt 2010-10-25 13:43:58 UTC (rev 4137) @@ -17,19 +17,6 @@ ???????????? 20 ?????????????? TTXResizeMenu.c ? MAX_MENU_ITEMS ??????????????????? - TERATERM.INI????????A??????????????? - ??????????メ?????????????????????? - - 1. 80x37 -- ???VT???A???GA(1024x768)???????? - ???PC?????? - 2. 120x52 -- ?????????XGA(1280x1024)???????? - ??????rdesktop????? - 3. 80x24 -- VT???T??? - 4. 110x37 -- 80x37???????? - - ??????????Terminal 14??WindowsXP?Luna?????????? - ゥ???????????????? - ???: [Resize Menu] ; From svnnotify @ sourceforge.jp Tue Oct 26 00:36:05 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 26 Oct 2010 00:36:05 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzhdICDjgqjjgrnjgrHjg7zjg5fjgrc=?= =?utf-8?b?44O844Kx44Oz44K5IC0gPiAg5Yi25b6h44K344O844Kx44Oz44K5?= Message-ID: <1288020965.758030.12301.nullmailer@users.sourceforge.jp> Revision: 4138 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4138 Author: doda Date: 2010-10-26 00:36:05 +0900 (Tue, 26 Oct 2010) Log Message: ----------- ????宴?????若??潟? -> ?九勝?激??宴??? Modified Paths: -------------- trunk/doc/en/html/about/emulations.html trunk/doc/ja/html/about/emulations.html -------------- next part -------------- Modified: trunk/doc/en/html/about/emulations.html =================================================================== --- trunk/doc/en/html/about/emulations.html 2010-10-25 13:43:58 UTC (rev 4137) +++ trunk/doc/en/html/about/emulations.html 2010-10-25 15:36:05 UTC (rev 4138) @@ -13,7 +13,7 @@
      • DEC VT100 and selected features of VT200/300
      • -
      • ANSI escape sequences, which are not supported by VT100 (color attribute etc.), are also supported.
      • +
      • ANSI control sequences, which are not supported by VT100 (color attribute etc.), are also supported.
      • You can enable or disable the use of bold style font for characters with the bold attribute. You can also set the color to display them.
      • Characters with the blink attribute don't actually blink. Instead, you can set the color with which to display them.
      • Characters with double width/height and VT52 mode are not supported.
      • Modified: trunk/doc/ja/html/about/emulations.html =================================================================== --- trunk/doc/ja/html/about/emulations.html 2010-10-25 13:43:58 UTC (rev 4137) +++ trunk/doc/ja/html/about/emulations.html 2010-10-25 15:36:05 UTC (rev 4138) @@ -13,7 +13,7 @@
        • DEC VT100 ? VT200/300 ???
        • -
        • VT100 ????????? ANSI ??????????(??????)??????????
        • +
        • VT100 ????????? ANSI ???????(??????)??????????
        • Bold (??)??????????bold ????????????/?????????????????ヲ??????????
        • Blink (??)??????タ???????????????ヲ?????
        • ?????VT52 ??????????????
        • From svnnotify @ sourceforge.jp Tue Oct 26 13:14:41 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 26 Oct 2010 13:14:41 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxMzldICDlr77lv5zjgZfjgZ/poIXnm64=?= =?utf-8?b?44KS5YmK6Zmk44CC?= Message-ID: <1288066481.944439.28472.nullmailer@users.sourceforge.jp> Revision: 4139 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4139 Author: doda Date: 2010-10-26 13:14:41 +0900 (Tue, 26 Oct 2010) Log Message: ----------- 絲上???????????ゃ? Modified Paths: -------------- trunk/doc/en/html/about/requests.html trunk/doc/ja/html/about/requests.html -------------- next part -------------- Modified: trunk/doc/en/html/about/requests.html =================================================================== --- trunk/doc/en/html/about/requests.html 2010-10-25 15:36:05 UTC (rev 4138) +++ trunk/doc/en/html/about/requests.html 2010-10-26 04:14:41 UTC (rev 4139) @@ -22,7 +22,6 @@
        • Blinking and double height/width characters of VT100.
        • Faint, italic rapid blinking, invisible and strike out characters of ECMA-48 terminal.
        • VT3XX line drawing between characters (lines).
        • -
        • Selected erase of VT220.
        • Tool bar and status bar.
        • Dialer.
        • GUI tool to configure the keyboard.
        • @@ -32,15 +31,12 @@
        • Improving resolution of TEK window printing.
        • In file transfers, displaying a progress bar[1], time to finish and the transfer speed.
        • ZMODEM recovery function.
        • -
        • YMODEM
        • Chinese and Korean[2] character code sets.
        • [File] Print setup command
        • Saving selected text or text in the scroll buffer to a file.[3]
        • Selecting the text/background color by using color pallets.
        • Switching to a small font when the screen mode is switched to the 132-column mode.
        • Displaying Chinise/Japanese/Korean characters in non-Chinise/Japanese/Korean Windows.
        • -
        • Alternate Screen Buffer
        • -
        • DEC Locator mode
        • Unicode supporting in the TeraTerm internal design
        @@ -62,7 +58,7 @@
      • Improving the speed of Kermit transfer.
      • Proportional fonts.
      • ANSI/AVATAR
      • -
      • REGIS
      • +
      • ReGIS
      • Sixel
      • Direct communication I/O from MACRO.
      • Mouse protocol(NetTerm) except xterm and DEC Locator mode.
      • Modified: trunk/doc/ja/html/about/requests.html =================================================================== --- trunk/doc/ja/html/about/requests.html 2010-10-25 15:36:05 UTC (rev 4138) +++ trunk/doc/ja/html/about/requests.html 2010-10-26 04:14:41 UTC (rev 4139) @@ -22,7 +22,6 @@
      • VT100??????????
      • ECMA-48??????????????????????????????????/li>
      • VT3XX???(?)???
      • -
      • VT220?????/li>
      • ???????????????
      • ?????
      • ????????????????
      • @@ -32,15 +31,12 @@
      • TEK window ?????????????
      • ???????????????????????ヲ[1]
      • ZMODEM ???????
      • -
      • YMODEM
      • Chinese & Korean[2]?????
      • [File] Print setup ????
      • ????????????????????????????[3]
      • ??/?????????????????
      • 132 ??????????t?????????
      • ?? Windows ????ヲ
      • -
      • Alternate Screen Buffer
      • -
      • DEC Locator mode
      • ?????nicode?
      @@ -62,7 +58,7 @@
    • Kermit ???????
    • ???(????????)????
    • ANSI/AVATAR
    • -
    • REGIS
    • +
    • ReGIS
    • ????
    • ??????????????
    • xterm, DEC Locator mode???????????(NetTerm?)
    • From svnnotify @ sourceforge.jp Wed Oct 27 22:40:15 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 27 Oct 2010 22:40:15 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzQxNDBdICDoi7HoqLPjgpLov73liqDjgII=?= Message-ID: <1288186815.079563.32119.nullmailer@users.sourceforge.jp> Revision: 4140 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4140 Author: yutakapon Date: 2010-10-27 22:40:14 +0900 (Wed, 27 Oct 2010) Log Message: ----------- ?沿┳??申??? Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/en/html/menu/setup-font.html trunk/doc/en/html/usage/tips/forwarding-files.html -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2010-10-26 04:14:41 UTC (rev 4139) +++ trunk/doc/en/html/about/history.html 2010-10-27 13:40:14 UTC (rev 4140) @@ -55,7 +55,7 @@
    • Bug fixes
        - +
      • Security fix: A class of vulnerabilities affecting applications that load DLL's in an insecure mannber.
      • The baud rate can not be properly selected on the [Setup]-[Serial port] dialog.
      • Beep setting does not work.
      • The scroll area can not be cleared by using the DECALN (DEC Screen Alignment Test) control sequence.
      • @@ -2162,7 +2162,7 @@

        CygTerm+

        v1.07_20 2010/10/20 (by doda)

          - +
        • Security fix: A directory move timing delays by using -d option.

        v1.07_19 2010/01/28 (by doda)

        @@ -2348,7 +2348,7 @@

        cyglaunch

        2010.xx.xx (Ver 1.02)

          - +
        • Security fix: The current directory changes to the cyglaunch.exe existing directory, and launches the cygterm.exe program.

        2009.3.22 (Ver 1.01)

        Modified: trunk/doc/en/html/menu/setup-font.html =================================================================== --- trunk/doc/en/html/menu/setup-font.html 2010-10-26 04:14:41 UTC (rev 4139) +++ trunk/doc/en/html/menu/setup-font.html 2010-10-27 13:40:14 UTC (rev 4140) @@ -32,9 +32,9 @@
        Script
        - +
        + Select a character set from the list. +

        Modified: trunk/doc/en/html/usage/tips/forwarding-files.html =================================================================== --- trunk/doc/en/html/usage/tips/forwarding-files.html 2010-10-26 04:14:41 UTC (rev 4139) +++ trunk/doc/en/html/usage/tips/forwarding-files.html 2010-10-27 13:40:14 UTC (rev 4140) @@ -11,12 +11,12 @@

        Transfer the file via the intermediate server

        -