diff --git a/dat/ncdc-changelog b/dat/ncdc-changelog index adb1747..c4ded50 100644 --- a/dat/ncdc-changelog +++ b/dat/ncdc-changelog @@ -1,3 +1,14 @@ +0.4 - 2011-07-23 + - Added file downloading support. + WARNING: Downloaded files are not TTH checked at this moment. + - Added persistent download queue + - Added busy indicators on start-up and with /gc + - Added download speed indicator to status bar + - Improved connection list interface + - Improved performance of UI message handling + - Fixed a remote crash + - Fixed incorrect reporting of hub counters + 0.3 - 2011-07-15 - Added file list browser - Added downloading of other people's file list diff --git a/img/ncdcstart.png b/img/ncdcstart.png index 0f6b47c..0255253 100644 Binary files a/img/ncdcstart.png and b/img/ncdcstart.png differ diff --git a/index.cgi b/index.cgi index 4860a99..e992a0d 100755 --- a/index.cgi +++ b/index.cgi @@ -51,6 +51,7 @@ sub home { E; end; h2 'Updates'; + b '2011-07-23'; txt ' ncdc 0.4 released!'; br; b '2011-07-15'; txt ' ncdc 0.3 released!'; br; b '2011-06-27'; txt ' ncdc 0.2 released!'; br; b '2011-06-20'; txt ' ncdc 0.1 released! And wrote a user guide for it.'; br; @@ -196,16 +197,17 @@ sub ncdc { li 'Chatting and private messaging,'; li 'Browsing the user list of a connected hub,'; li 'Share management (file list generation, hashing, refreshing, etc),'; - li 'File uploading in active and passive mode,'; - li 'Connections tab,'; li 'Replying to search requests from other clients,'; - li 'File list browsing.'; + li 'File uploading in active and passive mode,'; + li 'Connections and download queue management,'; + li 'File list browsing,'; + li 'Single-source file downloading.'; end; h2 'Try it out'; p; - b 'Latest version:'; txt ' 0.3 ('; - a href => '/download/ncdc-0.3.tar.gz', 'download'; + b 'Latest version:'; txt ' 0.4 ('; + a href => '/download/ncdc-0.4.tar.gz', 'download'; txt ' - '; a href => '/ncdc/changes', 'changes'; txt ' - '; a href => '/download/ncdc.md5', 'md5'; txt ' - '; a href => '/download/ncdc.sha1', 'sha1'; @@ -293,7 +295,7 @@ sub ncdcguide { txt '/set email '; b 'user@example.com'; end; p 'What you can use with the \'connection\' setting is a bit vague, but - you\'re safe if you just set it to your option speed, in MBit/s. On public + you\'re safe if you just set it to your upload speed, in MBit/s. On public hubs, you probably don\'t want to set an email address.'; p 'Note: these settings can also be changed on a per-hub basis. More on that below.'; @@ -348,6 +350,7 @@ sub ncdcguide { b 'Alt+'; txt ' open tab with number .'; br; b 'Alt+c'; txt ' close current tab.'; br; b 'Alt+n'; txt ' open the connections tab.'; br; + b 'Alt+q'; txt ' open the download queue.'; br; b 'Alt+o'; txt ' open own file list.'; br; b 'Ctrl+c'; txt ' quit ncdc.'; br; end; @@ -362,6 +365,8 @@ sub ncdcguide { pre class => 'code'; b 'j'; txt ' scroll down.'; br; b 'k'; txt ' scroll up.'; br; + b 'l'; txt ' open selected directory.'; br; + b 'h'; txt ' open parent directory.'; br; b 's'; txt ' order by share size.'; br; b 'u'; txt ' order by username.'; br; b 'o'; txt ' toggle sort OPs before others.'; br;