From svnnotify @ sourceforge.jp Fri Aug 8 00:39:20 2014 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 08 Aug 2014 00:39:20 +0900 Subject: [Ttssh2-commit] [5645] Update to OpenSSL 1.0.1i Message-ID: <1407425960.183320.29592.nullmailer@users.sourceforge.jp> Revision: 5645 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5645 Author: yutakapon Date: 2014-08-08 00:39:19 +0900 (Fri, 08 Aug 2014) Log Message: ----------- Update to OpenSSL 1.0.1i Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/en/html/reference/develop.txt trunk/doc/ja/html/about/history.html trunk/doc/ja/html/reference/develop.txt -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2014-07-29 14:11:19 UTC (rev 5644) +++ trunk/doc/en/html/about/history.html 2014-08-07 15:39:19 UTC (rev 5645) @@ -2486,7 +2486,7 @@
+[Resize Menu] ; ; width 80 columns, height 37 rows Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2014-08-12 13:50:47 UTC (rev 5646) +++ trunk/doc/ja/html/about/history.html 2014-08-18 10:04:00 UTC (rev 5647) @@ -51,6 +51,7 @@
+[Resize Menu] ; ; \x89\xA1\x95\x9D 80\x8C\x85, \x8Fc\x95\x9D 37\x8Ds From svnnotify @ sourceforge.jp Tue Aug 26 17:00:15 2014 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 26 Aug 2014 17:00:15 +0900 Subject: [Ttssh2-commit] =?utf-8?b?WzU2NDhdICA2NGJpdCBDeWd3aW4g5a++5b+c?= =?utf-8?b?5by35YyW?= Message-ID: <1409040015.986504.21022.nullmailer@users.sourceforge.jp> Revision: 5648 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5648 Author: maya Date: 2014-08-26 17:00:13 +0900 (Tue, 26 Aug 2014) Log Message: ----------- 64bit Cygwin 対応強化 cygwin64 でコンパイルしたバイナリをインストーラに同梱するようにした cygwin64 バイナリをソース管理に追加 32bit版は今まで通り Windows XP・Cygwin 1.5 でコンパイルする cygwin64 でのコンパイル用に Makefile を調整 cygwin64 でのコンパイルに必要なパッケージについて説明を追加 Modified Paths: -------------- trunk/cygterm/Makefile trunk/doc/en/html/usage/cygwin.html trunk/doc/ja/html/usage/cygwin.html trunk/installer/teraterm.iss Added Paths: ----------- trunk/cygterm/cygterm+-x86_64/ trunk/cygterm/cygterm+-x86_64/cyglaunch.exe trunk/cygterm/cygterm+-x86_64/cygterm.exe -------------- next part -------------- Modified: trunk/cygterm/Makefile =================================================================== --- trunk/cygterm/Makefile 2014-08-18 10:04:00 UTC (rev 5647) +++ trunk/cygterm/Makefile 2014-08-26 08:00:13 UTC (rev 5648) @@ -21,7 +21,8 @@ all : $(EXE) $(LAUNCH) $(ARCHIVE) -$(EXE) : $(SRC) $(RES) +$(EXE) : $(SRC) $(ICO) $(RC) + windres -O coff -o $(RES) $(RC) ifeq (0, $(shell nm /usr/lib/crt0.o | grep -c WinMainCRTStartup)) $(CC) $(CFLAGS) $(LDFLAGS) -DNO_WIN_MAIN -o $(EXE) $(SRC) $(RES) else @@ -29,27 +30,30 @@ endif strip $(EXE) -$(LAUNCH) : $(LAUNCH_SRC) $(RES) +$(LAUNCH) : $(LAUNCH_SRC) $(ICO) $(RC) @# gcc 4.3.2? or later doesn't support "-mno-cygwin" flag. @# @# $(CC) gcc less than 4.3.2 (supports "-mno-cygwin") @# gcc-3 gcc3 (supports "-mno-cygwin") - @# x86_64-w64-mingw32-gcc mingw32 gcc host:64bit target:64bit (64bit cygwin) - @# i686-w64-mingw32-gcc mingw32 gcc host:32bit target:64bit (32bit cygwin on 64bit Windows) - @# i686-pc-mingw32-gcc mingw32 gcc host:32bit target:32bit (32bit cygwin) + @# i686-pc-mingw32-gcc mingw-gcc-core + @# i686-w64-mingw32-gcc mingw64-i686-gcc-core + @# x86_64-w64-mingw32-gcc mingw64-x86_64-gcc-core + ifeq (i686, $(shell uname -m)) + windres -O coff -o $(RES) $(RC) + ( i686-pc-mingw32-gcc $(CFLAGS) $(LDFLAGS) -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) || \ + ( i686-w64-mingw32-gcc $(CFLAGS) $(LDFLAGS) -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) || \ ( $(CC) $(CFLAGS) $(LDFLAGS) -mno-cygwin -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) || \ - ( gcc-3 $(CFLAGS) $(LDFLAGS) -mno-cygwin -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) || \ - ( x86_64-w64-mingw32-gcc $(CFLAGS) $(LDFLAGS) -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) || \ - ( i686-w64-mingw32-gcc $(CFLAGS) $(LDFLAGS) -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) || \ - ( i686-pc-mingw32-gcc $(CFLAGS) $(LDFLAGS) -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) + ( gcc-3 $(CFLAGS) $(LDFLAGS) -mno-cygwin -o $(LAUNCH) $(LAUNCH_SRC) $(RES) ) strip $(LAUNCH) + else + x86_64-w64-mingw32-windres -O coff -o $(RES) $(RC) + x86_64-w64-mingw32-gcc $(CFLAGS) $(LDFLAGS) -o $(LAUNCH) $(LAUNCH_SRC) $(RES) + x86_64-w64-mingw32-strip $(LAUNCH) + endif $(RC): echo 'icon ICON $(ICO)' > $(RC) -$(RES): $(ICO) $(RC) - windres -O coff -o $(RES) $(RC) - clean : rm -f $(EXE) $(RC) $(RES) $(LAUNCH) $(ARCHIVE) Added: trunk/cygterm/cygterm+-x86_64/cyglaunch.exe =================================================================== (Binary files differ) Property changes on: trunk/cygterm/cygterm+-x86_64/cyglaunch.exe ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/cygterm/cygterm+-x86_64/cygterm.exe =================================================================== (Binary files differ) Property changes on: trunk/cygterm/cygterm+-x86_64/cygterm.exe ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/doc/en/html/usage/cygwin.html =================================================================== --- trunk/doc/en/html/usage/cygwin.html 2014-08-18 10:04:00 UTC (rev 5647) +++ trunk/doc/en/html/usage/cygwin.html 2014-08-26 08:00:13 UTC (rev 5648) @@ -40,13 +40,25 @@[NOTE]
-
If cygterm fails to start you might need to download its source and recompile it.
+ Latest source code is included as cygterm+.tar.gz.-[NOTE] About 64bit Cygwin
+
-Your cygterm needs to rebuild on the 64bit Cygwin environment. The re-compiling requires the mingw64-x86_64-gcc-core package into your cygwin environment. -
32bit Cygwin | +64bit Cygwin | +
---|---|
Devel/gcc-g++ + Devel/make + Devel/mingw-gcc-core |
+ Devel/gcc-g++ + Devel/make + Devel/mingw64-x86_64-gcc-core |
+
Be careful not to save [Setup] [Save setup] in the situation that it was started by cygterm.exe.
Modified: trunk/doc/ja/html/usage/cygwin.html
===================================================================
--- trunk/doc/ja/html/usage/cygwin.html 2014-08-18 10:04:00 UTC (rev 5647)
+++ trunk/doc/ja/html/usage/cygwin.html 2014-08-26 08:00:13 UTC (rev 5648)
@@ -40,13 +40,25 @@
\x81\xA6\x92\x8D\x88?F
cygterm\x82\xAA\x82\xA4\x82?\xAD\x8BN\x93\xAE\x82\xB5\x82?\xA2\x8F?\x82?Acygterm\x82\xF0\x83r\x83\x8B\x83h\x82\xB5\x92\xBC\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B
+64bit Cygwin \x82ŗ\x98\x97p\x82\xB7\x82\xE9\x82??Acygterm+-x86_64 \x83t\x83H\x83\x8B\x83_\x93\xE0\x82?\xC0\x8Ds\x83t\x83@\x83C\x83\x8B\x82\xF0 Tera Term \x83C\x83\x93\x83X\x83g\x81[\x83\x8B\x83t\x83H\x83\x8B\x83_\x82??\x82\xAB\x82\xB7\x82?\x81Acygterm\x82\xF0\x83r\x83\x8B\x83h\x82\xB5\x92\xBC\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B
\x8DŐV\x82?\\x81[\x83X\x83R\x81[\x83h\x82\xCD cygterm+.tar.gz \x82?\xB5\x82ē\xAF\x8D\xAB\x82\xB3\x82\xEA\x82Ă\xA2\x82?\xB7\x81B
-\x81\xA6\x92\x8D\x88?F64bit Cygwin \x82??\xA2\x82\xC4
-64bit Cygwin \x82ŗ\x98\x97p\x82\xB7\x82\xE9\x82??Acygterm\x82?ăR\x83\x93\x83p\x83C\x83\x8B\x82\xAA\x95K\x97v\x82ł\xB7\x81B\x83R\x83\x93\x83p\x83C\x83\x8B\x82\xB7\x82\xE9\x82?\xCD Cygwin \x82\xC9 mingw64-x86_64-gcc-core \x82\xF0\x83C\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB7\x82\xE9\x95K\x97v\x82\xAA\x82\xA0\x82\xE8\x82?\xB7\x81B
-
32bit Cygwin | +64bit Cygwin | +
---|---|
Devel/gcc-g++ + Devel/make + Devel/mingw-gcc-core |
+ Devel/gcc-g++ + Devel/make + Devel/mingw64-x86_64-gcc-core |
+
cygterm.exe \x82\xA9\x82\xE7\x8BN\x93\xAE\x82\xB3\x82?\x8F\xF3\x91?Ő?\xE8\x95?\xB6 [Setup][Save setup] \x82\xF0\x8Ds\x82\xED\x82?\xA2\x82悤\x92\x8D\x88?\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81BTCP/IP\x90?\xE8\x82\xCC Telnet\x83|\x81[\x83g\x94?\x86\x82\xAA 23 \x88?O\x82ŕ?\xB6\x82\xB3\x82\xEA\x81A\x92?\xED\x82\xCC Telnet\x96?I\x82?\xC0\x8Ds\x8E\x9E\x82??\xB1\x82ł\xAB\x82\xB8\x81A\x8DQ\x82Ă邱\x82???\xC1\x82Ă\xB5\x82?\xA2\x82?\xB7\x81B
Modified: trunk/installer/teraterm.iss
===================================================================
--- trunk/installer/teraterm.iss 2014-08-18 10:04:00 UTC (rev 5647)
+++ trunk/installer/teraterm.iss 2014-08-26 08:00:13 UTC (rev 5648)
@@ -100,6 +100,8 @@
Source: ..\cygterm\cygterm.cfg; DestDir: {app}; Components: cygterm; Flags: onlyifdoesntexist uninsneveruninstall; Permissions: authusers-modify
Source: ..\cygterm\cyglaunch.exe; DestDir: {app}; Components: cygterm
Source: ..\cygterm\cygterm+.tar.gz; DestDir: {app}; Components: cygterm
+Source: ..\cygterm\cygterm+-x86_64\cygterm.exe; DestDir: {app}\cygterm+-x86_64; Components: cygterm
+Source: ..\cygterm\cygterm+-x86_64\cyglaunch.exe; DestDir: {app}\cygterm+-x86_64; Components: cygterm
Source: ..\libs\logmett\Setup_LogMeTT_2_10_2.exe; DestDir: {tmp}; Components: LogMeTT; Flags: deleteafterinstall
Source: ..\libs\logmett\Setup_TTLEditor_1_5_1.exe; DestDir: {tmp}; Components: TTLEdit; Flags: deleteafterinstall
Source: ..\ttpmenu\Release\ttpmenu.exe; DestDir: {app}; Components: TeraTerm_Menu; Flags: ignoreversion
From svnnotify @ sourceforge.jp Tue Aug 26 17:05:45 2014
From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
Date: Tue, 26 Aug 2014 17:05:45 +0900
Subject: [Ttssh2-commit] =?utf-8?b?WzU2NDldICDlpInmm7TlsaXmrbTjga7poIY=?=
=?utf-8?b?55Wq5aSJ5pu0?=
Message-ID: <1409040345.809634.4926.nullmailer@users.sourceforge.jp>
Revision: 5649
http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5649
Author: maya
Date: 2014-08-26 17:05:44 +0900 (Tue, 26 Aug 2014)
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 2014-08-26 08:00:13 UTC (rev 5648)
+++ trunk/doc/en/html/about/history.html 2014-08-26 08:05:44 UTC (rev 5649)
@@ -41,8 +41,8 @@
[NOTE]
If cygterm fails to start you might need to download its source and recompile it.
-
+If a user uses the 64bit Cygwin, please overwrite an execution file of the cygterm+-x86_64 folder at the
+Tera Term installation folder. Or, rebuild the cygterm program.
Latest source code is included as cygterm+.tar.gz.
32bit Cygwin | 64bit Cygwin | Modified: trunk/doc/en/html/usage/resizemenu.html =================================================================== --- trunk/doc/en/html/usage/resizemenu.html 2014-08-26 08:06:15 UTC (rev 5650) +++ trunk/doc/en/html/usage/resizemenu.html 2014-08-27 15:15:58 UTC (rev 5651) @@ -30,7 +30,7 @@ Add a [Resize Menu] section in the teraterm.ini file, and describe the "ResizeMenuN = X, Y" entry. N is an 1-origin number.|
---|---|---|
0x02 | STX | |
0x03 | ETX | |
0x04 | EOT | |
0x05 | ENQ | Sends the answerback message. |
0x05 | ENQ | Sends the answerback message. |
0x06 | ACK | |
0x07 | BEL | Sounds the bell tone. |
0x08 | BS | Moves the cursor one character position to the left. |
-NOTICE: The Wait4allMacroCommand entry in the teraterm.ini file must be "on" to use this macro command. Rarely, the macro command does not work well. +NOTICE: The Wait4allMacroCommand entry in the teraterm.ini file must be "on" to use this macro command. Rarely, the macro command does not work well.
@@ -253,7 +253,7 @@
@@ -264,20 +264,20 @@
@@ -330,64 +330,64 @@ Specify default path to save log file. It is used when the log file name is not a full path.
-\x82?\xBD\x81A\x90?f\x8C?\x93\xAE\x93I\x82?E\x83B\x83\x93\x83h\x83E\x82\xF0\x95?\xB6\x82\xE9\x90?\xE8\x82??\x81A\x88?\xBA\x82?悤\x82\xC9unlink\x83R\x83}\x83\x93\x83h\x82\xC5Tera Term\x82\xF0\x90??\x82\xB5\x82Ă\xE0\x82悢\x81B +\x82?\xBD\x81A\x90?f\x8C?\x93\xAE\x93I\x82?E\x83B\x83\x93\x83h\x83E\x82\xF0\x95?\xB6\x82\xE9\x90?\xE8\x82??\x81A\x88?\xBA\x82?悤\x82\xC9unlink\x83R\x83}\x83\x93\x83h\x82\xC5Tera Term\x82\xF0\x90??\x82\xB5\x82Ă\xE0\x82悢\x81B
Modified: trunk/doc/ja/html/macro/command/wait4all.html =================================================================== --- trunk/doc/ja/html/macro/command/wait4all.html 2014-08-30 14:56:08 UTC (rev 5652) +++ trunk/doc/ja/html/macro/command/wait4all.html 2014-08-30 14:57:49 UTC (rev 5653) @@ -61,7 +61,7 @@-\x82?\xA8\x81A\x93\x96\x8AY\x83R\x83}\x83\x93\x83h\x82?p\x82\xB7\x82邽\x82???Ateraterm.ini \x82\xCC Wait4allMacroCommand \x83G\x83\x93\x83g\x83\x8A\x82\xF0"on"\x82?\xB7\x82\xE9\x95K\x97v\x82\xAA\x82\xA0\x82\xE9\x81B\x82?\xBD\x81A\x82?\xEA\x82?R\x83}\x83\x93\x83h\x82\xAA\x8A\xFA\x91??\xE8\x82?\xAE\x82\xA9\x82?\xA2\x82\xB1\x82?\xAA\x82\xA0\x82\xE9\x81B +\x82?\xA8\x81A\x93\x96\x8AY\x83R\x83}\x83\x93\x83h\x82?p\x82\xB7\x82邽\x82???Ateraterm.ini \x82\xCC Wait4allMacroCommand \x83G\x83\x93\x83g\x83\x8A\x82\xF0"on"\x82?\xB7\x82\xE9\x95K\x97v\x82\xAA\x82\xA0\x82\xE9\x81B\x82?\xBD\x81A\x82?\xEA\x82?R\x83}\x83\x93\x83h\x82\xAA\x8A\xFA\x91??\xE8\x82?\xAE\x82\xA9\x82?\xA2\x82\xB1\x82?\xAA\x82\xA0\x82\xE9\x81B
\x97\xE1
Modified: trunk/doc/ja/html/menu/setup-additional.html =================================================================== --- trunk/doc/ja/html/menu/setup-additional.html 2014-08-30 14:56:08 UTC (rev 5652) +++ trunk/doc/ja/html/menu/setup-additional.html 2014-08-30 14:57:49 UTC (rev 5653) @@ -14,38 +14,38 @@"General" \x83^\x83u
@@ -251,7 +251,7 @@
@@ -262,20 +262,20 @@
@@ -323,66 +323,66 @@