diff --git a/dat/ncdc-changelog b/dat/ncdc-changelog index d4f9958..adb1747 100644 --- a/dat/ncdc-changelog +++ b/dat/ncdc-changelog @@ -1,3 +1,16 @@ +0.3 - 2011-07-15 + - Added file list browser + - Added downloading of other people's file list + - Added 'hubname' setting to rename hub tabs + - Added -v, -c and -n commandline options + - Added -n option to /open to prevent an autoconnect + - Added referer notification + - Improved handling of some ADC commands + - Improved logging of debug messages + - Fixed error when uploading an empty file list + - Fixed display of join/quits on ADC hubs + - Fixed several crashes + 0.2 - 2011-06-27 - ADC support - Added slot granting and /grant command diff --git a/img/ncdcstart.png b/img/ncdcstart.png index 99e622d..0f6b47c 100644 Binary files a/img/ncdcstart.png and b/img/ncdcstart.png differ diff --git a/index.cgi b/index.cgi index f561a77..4860a99 100755 --- a/index.cgi +++ b/index.cgi @@ -51,6 +51,8 @@ sub home { E; end; h2 'Updates'; + 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; b '2011-06-11'; txt ' Added NCurses colour experiment at code dump => nc-colour'; br; b '2011-06-03'; txt ' Added my latest project: ncdc'; br; @@ -196,13 +198,14 @@ sub ncdc { 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 'Replying to search requests from other clients,'; + li 'File list browsing.'; end; h2 'Try it out'; p; - b 'Latest version:'; txt ' 0.2 ('; - a href => '/download/ncdc-0.2.tar.gz', 'download'; + b 'Latest version:'; txt ' 0.3 ('; + a href => '/download/ncdc-0.3.tar.gz', 'download'; txt ' - '; a href => '/ncdc/changes', 'changes'; txt ' - '; a href => '/download/ncdc.md5', 'md5'; txt ' - '; a href => '/download/ncdc.sha1', 'sha1'; @@ -214,7 +217,7 @@ sub ncdc { a href => 'http://g.blicky.net/ncdc.git/', 'this git repository'; txt '. The README includes instructions to build ncdc.'; br; txt 'Check out the '; a href => '/ncdc/guide', 'user guide'; - txt ' to get started. Connect to dchub://dc.blicky.net:8888/ to join the (chat-only) development hub!'; + txt ' to get started. Connect to adc://dc.blicky.net:2780/ to join the (chat-only) development hub!'; end; h2 'Requirements'; @@ -250,7 +253,7 @@ sub ncdc { the hash data from other clients to ncdc\'s format.'; br;br; end; li; txt 'What protocol features does ncdc support?'; br; - txt 'For ADC: Only BASE and TIGR so far. For NMDC:'; br; + txt 'For ADC: Only BASE, RF, TIGR and BZIP so far. For NMDC:'; br; txt 'Hub: NoGetINFO and NoHello.'; br; txt 'Client: MiniSlots, XmlBZList, ADCGet, TTHL and TTHF.'; br; txt q|That is pretty much everything you'd expect any modern client to @@ -324,7 +327,7 @@ sub ncdcguide { you can use '/connect' to actually connect to the hub:"; pre class => 'code'; txt '/open '; b 'ncdc'; br; - txt '/connect '; b 'dchub://dc.blicky.net:8888/'; + txt '/connect '; b 'adc://dc.blicky.net:2780/'; end; p "The name you specify with '/open' will be used by ncdc to refer to this hub. After this, you can always reconnect to this hub simply by typing '/open @@ -345,6 +348,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+o'; txt ' open own file list.'; br; b 'Ctrl+c'; txt ' quit ncdc.'; br; end; p "Lots of functionality is hidden behind commands and settings, use '/help' @@ -366,6 +370,7 @@ sub ncdcguide { b 'c'; txt ' toggle connection column.'; br; b 'i'; txt ' toggle information box.'; br; b 'm'; txt ' PM the selected user.'; br; + b 'b'; txt ' browse the selected users\' list.'; br; end; $s->htmlFooter; }