svnno****@sourc*****
svnno****@sourc*****
2009年 6月 17日 (水) 00:56:01 JST
Revision: 3509 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=3509 Author: maya Date: 2009-06-17 00:56:01 +0900 (Wed, 17 Jun 2009) Log Message: ----------- Windows 95 ã§è¤æ°è¡ã®è²¼ãä»ãæã«ãã«ãã¢ãã¿ API ã使ãããã¢ããªã±ã¼ã·ã§ã³ãè½ã¡ãåé¡ãä¿®æ£ããã Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/ja/html/about/history.html trunk/teraterm/teraterm/clipboar.c -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2009-06-16 15:49:55 UTC (rev 3508) +++ trunk/doc/en/html/about/history.html 2009-06-16 15:56:01 UTC (rev 3509) @@ -94,6 +94,7 @@ <li>The continuedline copy does not work well.</li> <li>When a user connects to the server after duplicating the ssh and cygwin session, <a href="../setup/teraterm-com.html#port/nontelnet">TCPLocalEcho/TCPCRSend</a> is ignored.</li> <li>When the clickable URL characters are over 1024 byte, the application fault would occur.</li> + <!--li>Windows 95 ÅNbv{[hÉ é¡sÌeLXgð\èt¯éÆAAvP[VG[ÆÈéoOðC³µ½B</li--> <li>changed Korean language implementation <ul> <li>Hangeul can not be selected by using double-click.</li> Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2009-06-16 15:49:55 UTC (rev 3508) +++ trunk/doc/ja/html/about/history.html 2009-06-16 15:56:01 UTC (rev 3509) @@ -94,6 +94,7 @@ <li>p±sRs[ª¤Ü©È¢êª éÌðC³µ½B</li> <li>ssh/cygwinڱ𡻵½ãÌVKÚ±ÅA<a href="../setup/teraterm-com.html#port/nontelnet">TCPLocalEcho/TCPCRSend</a>ª³³êéÌðC³µ½B</li> <li>NbJuURLɨ¢ÄAURL¶ñª1024oCgð´¦éÆAAvP[VG[ÆÈéoOðC³µ½B</li> + <li>Windows 95 ÅNbv{[hÉ é¡sÌeLXgð\èt¯éÆAAvP[VG[ÆÈéoOðC³µ½B</li> <li>Øê[h̲® <ul> <li>Øê[hAnOÈÇÌ2oCg¶ð}EXųµIðÅ«È¢êª éÌðC³µ½B</li> Modified: trunk/teraterm/teraterm/clipboar.c =================================================================== --- trunk/teraterm/teraterm/clipboar.c 2009-06-16 15:49:55 UTC (rev 3508) +++ trunk/teraterm/teraterm/clipboar.c 2009-06-16 15:56:01 UTC (rev 3509) @@ -323,8 +323,9 @@ // EChE©çÍÝoµ½êɲ߷é (2008.4.24 maya) osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&osvi); - if (osvi.dwPlatformId == VER_PLATFORM_WIN32_NT && osvi.dwMajorVersion == 4) { - // NT4.0 Í}`j^APIÉñÎ + if ( (osvi.dwPlatformId == VER_PLATFORM_WIN32_NT && osvi.dwMajorVersion == 4) || + (osvi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS && osvi.dwMinorVersion < 10) ) { + // NT4.0, 95 Í}`j^APIÉñÎ SystemParametersInfo(SPI_GETWORKAREA, 0, &rc_dsk, 0); } else {