FFFTPのソースコードです。
Revisão | 89de61dfd039abb401b00fb337c9624360858aa4 (tree) |
---|---|
Hora | 2012-09-06 18:45:09 |
Autor | s_kawamoto <s_kawamoto@user...> |
Commiter | s_kawamoto |
Modify documents.
@@ -1,8 +1,8 @@ | ||
1 | 1 | ============================================================ |
2 | -[Software Name] FFFTP Ver.1.98f (FTP Client software) | |
2 | +[Software Name] FFFTP Ver.1.99 (FTP Client software) | |
3 | 3 | [Copyright] Copyright(C) 1997-2010 Sota & cooperators |
4 | 4 | Copyright(C) 2011-2012 FFFTP Project (Hiromichi Matsushima, Suguru Kawamoto, IWAMOTO Kouichi, vitamin0x, unarist, Asami, fortran90, tomo1192, Yuji Tanaka, Moriguchi Hirokazu). |
5 | -[Environment] Windows 7, Vista, XP, 2000 | |
5 | +[Environment] Windows 8, 7, Vista, XP, 2000 | |
6 | 6 | ============================================================ |
7 | 7 | |
8 | 8 | About INI File |
@@ -28,34 +28,21 @@ following menu. | ||
28 | 28 | File -> Settings -> Change Master password |
29 | 29 | |
30 | 30 | |
31 | -Changes in Ver.1.98f | |
31 | +Changes in Ver.1.99 | |
32 | 32 | -------------------- |
33 | 33 | |
34 | --- Fixed bugs of incorrect behavior of Select dialog. | |
34 | +-- Tested on Windows 8 (32bit/64bit). | |
35 | 35 | |
36 | --- Added an option for retaining timestamps on uploading. | |
36 | +-- Added an option to overwrite files only if they are larger than their | |
37 | + originals. | |
37 | 38 | |
38 | --- Changed to require the current master password before changing it. | |
39 | +-- Added an option to set a local Kanji code chosen at startup. | |
39 | 40 | |
40 | --- Fixed bugs that files in a temporary folder was shown in local file list | |
41 | - after files in a host had been dropped into other applications. | |
41 | +-- Changed to directly show Browse For Folder dialog on clicking Change Folder button | |
42 | + in the local side. | |
42 | 43 | |
43 | --- Shortened intervals between keep alive packets. | |
44 | - | |
45 | --- Fixed bugs that UI was unlocked in some cases when commands were being sent | |
46 | - over the socket of main window. | |
47 | - | |
48 | --- Added extensions of files that will be transferred in ASCII mode. | |
49 | - | |
50 | --- Extended command line options. | |
51 | - | |
52 | --- Changed to try SSL when a host cannot recognize TLS on FTPS Explicit. | |
53 | - | |
54 | --- Fixed bugs that corruption was caused when strings were converted from | |
55 | - UTF-8 to Shift_JIS on Windows Vista or later. | |
56 | - | |
57 | --- Changed to refresh the local view automatically when files in the current | |
58 | - directory are modified. | |
44 | +-- Improved conditions to send commands for keep alive. | |
45 | + Less likely to fail such as when deleting a large number of files. | |
59 | 46 | |
60 | 47 | |
61 | 48 | Outline |
@@ -1,5 +1,21 @@ | ||
1 | 1 | FFFTP version history. |
2 | 2 | |
3 | +Changes in Ver.1.99 | |
4 | +-------------------- | |
5 | + | |
6 | +-- Tested on Windows 8 (32bit/64bit). | |
7 | + | |
8 | +-- Added an option to overwrite files only if they are larger than their | |
9 | + originals. | |
10 | + | |
11 | +-- Added an option to set a local Kanji code chosen at startup. | |
12 | + | |
13 | +-- Changed to directly show Browse For Folder dialog on clicking Change Folder button | |
14 | + in the local side. | |
15 | + | |
16 | +-- Improved conditions to send commands for keep alive. | |
17 | + Less likely to fail such as when deleting a large number of files. | |
18 | + | |
3 | 19 | Changes in Ver.1.98f |
4 | 20 | -------------------- |
5 | 21 |
@@ -1,6 +1,6 @@ | ||
1 | 1 | ============================================================ |
2 | -【ソフト名】 FTPクライアント FFFTP(sf.jp版) Ver 1.98f | |
3 | -【動作確認環境】 Windows 7、Vista、XP、2000 | |
2 | +【ソフト名】 FTPクライアント FFFTP(sf.jp版) Ver 1.99 | |
3 | +【動作確認環境】 Windows 8、7、Vista、XP、2000 | |
4 | 4 | 【サポート】 http://sourceforge.jp/projects/ffftp/ |
5 | 5 | ============================================================ |
6 | 6 |
@@ -27,36 +27,21 @@ FFFTP Ver.1.96d+009 | ||
27 | 27 | マスターパスワードの入力が求められますので、入力してください。 |
28 | 28 | |
29 | 29 | |
30 | -Ver 1.98fでの変更点 | |
30 | +Ver 1.99での変更点 | |
31 | 31 | ------------------- |
32 | 32 | |
33 | -・選択ダイアログが正常に機能しないバグを修正しました。 | |
33 | +・Windows 8 (32bit/64bit)で動作を確認しました。 | |
34 | 34 | |
35 | -・アップロード時にタイムスタンプを維持する設定を追加しました。 | |
35 | +・ファイルの上書きの確認の際に元のファイルより大きければ上書きを行う | |
36 | + 機能を追加しました。 | |
36 | 37 | |
37 | -・マスターパスワードを変更する際に現在のマスターパスワードを入力する | |
38 | - ように変更しました。 | |
38 | +・起動時に選択されるローカルの漢字コードを設定できるようにしました。 | |
39 | 39 | |
40 | -・ホスト側から外部アプリケーションへのドロップ後、ローカル側に作業 | |
41 | - フォルダの内容が表示されることがあるバグを修正しました。 | |
40 | +・ローカル側のフォルダの移動ボタンをクリックした際にフォルダの参照 | |
41 | + ダイアログが直接表示されるように変更しました。 | |
42 | 42 | |
43 | -・ソケット切断検出用のパケット送信の間隔を短くしました。 | |
44 | - | |
45 | -・メインウィンドウのソケットでコマンドを送信中にUIのロックが解除されて | |
46 | - しまう場合があるバグを修正しました。 | |
47 | - | |
48 | -・アスキーモードで転送されるファイルの拡張子を追加しました。 | |
49 | - | |
50 | -・コマンドラインオプションを拡張しました。 | |
51 | - | |
52 | -・FTPS ExplicitでホストがTLSを受け付けない場合に続けてSSLを試すように | |
53 | - 変更しました。 | |
54 | - | |
55 | -・Windows Vista以降で文字列がUTF-8からShift_JISへ変換される時に破損する | |
56 | - バグを修正しました。 | |
57 | - | |
58 | -・ローカル側のフォルダ内のファイルが変更された時にローカル側のファイル | |
59 | - 一覧を自動的に更新するように変更しました。 | |
43 | +・接続維持用のコマンドを送信する条件を改善しました。 | |
44 | + ホスト側のファイルを大量に削除する時などで失敗しにくくなります。 | |
60 | 45 | |
61 | 46 | |
62 | 47 | Ver 1.96d以前へ戻す場合 |
@@ -1,5 +1,20 @@ | ||
1 | 1 | FFFTP 改版リスト |
2 | 2 | |
3 | +■Ver 1.99 | |
4 | + | |
5 | +・Windows 8 (32bit/64bit)で動作を確認しました。 | |
6 | + | |
7 | +・ファイルの上書きの確認の際に元のファイルより大きければ上書きを行う | |
8 | + 機能を追加しました。 | |
9 | + | |
10 | +・起動時に選択されるローカルの漢字コードを設定できるようにしました。 | |
11 | + | |
12 | +・ローカル側のフォルダの移動ボタンをクリックした際にフォルダの参照 | |
13 | + ダイアログが直接表示されるように変更しました。 | |
14 | + | |
15 | +・接続維持用のコマンドを送信する条件を改善しました。 | |
16 | + ホスト側のファイルを大量に削除する時などで失敗しにくくなります。 | |
17 | + | |
3 | 18 | ■Ver 1.98f |
4 | 19 | |
5 | 20 | ・選択ダイアログが正常に機能しないバグを修正しました。 |