FFFTPのソースコードです。
Revisión | 1510dc3e02f35a00424420523b504be0dcfe6856 (tree) |
---|---|
Tiempo | 2011-11-04 21:00:16 |
Autor | s_kawamoto <s_kawamoto@user...> |
Commiter | s_kawamoto |
Modify documents.
@@ -43,6 +43,15 @@ Changes in Ver.1.99 | ||
43 | 43 | |
44 | 44 | -- Fixed bugs of corruption on resuming downloading files larger than 4GB. |
45 | 45 | |
46 | +-- Fixed communication routines to match specifications of Windows 2000. | |
47 | + | |
48 | +-- Enhanced responses of aborting. | |
49 | + | |
50 | +-- Fixed bugs of INI file backup. | |
51 | + | |
52 | +-- Fixed bugs of handling multi-byte character filenames on hosts whose Kanji | |
53 | + code of filenames are Shift_JIS. | |
54 | + | |
46 | 55 | |
47 | 56 | Outline |
48 | 57 | ------- |
@@ -15,6 +15,15 @@ Changes in Ver.1.99 | ||
15 | 15 | |
16 | 16 | -- Fixed bugs of corruption on resuming downloading files larger than 4GB. |
17 | 17 | |
18 | +-- Fixed communication routines to match specifications of Windows 2000. | |
19 | + | |
20 | +-- Enhanced responses of aborting. | |
21 | + | |
22 | +-- Fixed bugs of INI file backup. | |
23 | + | |
24 | +-- Fixed bugs of handling multi-byte character filenames on hosts whose Kanji | |
25 | + code of filenames are Shift_JIS. | |
26 | + | |
18 | 27 | Changes in Ver.1.98b |
19 | 28 | -------------------- |
20 | 29 |
@@ -46,6 +46,16 @@ Ver 1.99 | ||
46 | 46 | ・ダウンロードのリジューム時に4GBを超えるファイルが正常に扱えないバグを |
47 | 47 | 修正しました。 |
48 | 48 | |
49 | +・通信のルーチンをWindows 2000の仕様に合うように修正しました。 | |
50 | + | |
51 | +・中止ボタンの応答を改善しました。 | |
52 | + | |
53 | +・設定をINIファイルに保存している場合にINIファイルを日本語を含むパスに | |
54 | + 保存できないバグを修正しました。 | |
55 | + | |
56 | +・ホストのファイル名の漢字コードがShift_JISの場合に一部日本語を含む | |
57 | + ファイル名を扱えないバグを修正しました。 | |
58 | + | |
49 | 59 | |
50 | 60 | Ver 1.96d以前へ戻す場合 |
51 | 61 | ----------------------- |
@@ -18,6 +18,16 @@ FFFTP | ||
18 | 18 | ・ダウンロードのリジューム時に4GBを超えるファイルが正常に扱えないバグを |
19 | 19 | 修正しました。 |
20 | 20 | |
21 | +・通信のルーチンをWindows 2000の仕様に合うように修正しました。 | |
22 | + | |
23 | +・中止ボタンの応答を改善しました。 | |
24 | + | |
25 | +・設定をINIファイルに保存している場合にINIファイルを日本語を含むパスに | |
26 | + 保存できないバグを修正しました。 | |
27 | + | |
28 | +・ホストのファイル名の漢字コードがShift_JISの場合に一部日本語を含む | |
29 | + ファイル名を扱えないバグを修正しました。 | |
30 | + | |
21 | 31 | ■Ver 1.98b |
22 | 32 | |
23 | 33 | ・信頼できないDLLの読み込みを防ぐ機能を追加しました。Microsoftの署名が |