ncdc 0.3 released.
This commit is contained in:
parent
2446073a3f
commit
e6256093a2
3 changed files with 24 additions and 6 deletions
|
|
@ -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
|
0.2 - 2011-06-27
|
||||||
- ADC support
|
- ADC support
|
||||||
- Added slot granting and /grant command
|
- Added slot granting and /grant command
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
17
index.cgi
17
index.cgi
|
|
@ -51,6 +51,8 @@ sub home {
|
||||||
E;
|
E;
|
||||||
end;
|
end;
|
||||||
h2 'Updates';
|
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-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-11'; txt ' Added NCurses colour experiment at code dump => nc-colour'; br;
|
||||||
b '2011-06-03'; txt ' Added my latest project: ncdc'; 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 'Share management (file list generation, hashing, refreshing, etc),';
|
||||||
li 'File uploading in active and passive mode,';
|
li 'File uploading in active and passive mode,';
|
||||||
li 'Connections tab,';
|
li 'Connections tab,';
|
||||||
li 'Replying to search requests from other clients.';
|
li 'Replying to search requests from other clients,';
|
||||||
|
li 'File list browsing.';
|
||||||
end;
|
end;
|
||||||
|
|
||||||
h2 'Try it out';
|
h2 'Try it out';
|
||||||
p;
|
p;
|
||||||
b 'Latest version:'; txt ' 0.2 (';
|
b 'Latest version:'; txt ' 0.3 (';
|
||||||
a href => '/download/ncdc-0.2.tar.gz', 'download';
|
a href => '/download/ncdc-0.3.tar.gz', 'download';
|
||||||
txt ' - '; a href => '/ncdc/changes', 'changes';
|
txt ' - '; a href => '/ncdc/changes', 'changes';
|
||||||
txt ' - '; a href => '/download/ncdc.md5', 'md5';
|
txt ' - '; a href => '/download/ncdc.md5', 'md5';
|
||||||
txt ' - '; a href => '/download/ncdc.sha1', 'sha1';
|
txt ' - '; a href => '/download/ncdc.sha1', 'sha1';
|
||||||
|
|
@ -214,7 +217,7 @@ sub ncdc {
|
||||||
a href => 'http://g.blicky.net/ncdc.git/', 'this git repository';
|
a href => 'http://g.blicky.net/ncdc.git/', 'this git repository';
|
||||||
txt '. The README includes instructions to build ncdc.'; br;
|
txt '. The README includes instructions to build ncdc.'; br;
|
||||||
txt 'Check out the '; a href => '/ncdc/guide', 'user guide';
|
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;
|
end;
|
||||||
|
|
||||||
h2 'Requirements';
|
h2 'Requirements';
|
||||||
|
|
@ -250,7 +253,7 @@ sub ncdc {
|
||||||
the hash data from other clients to ncdc\'s format.'; br;br;
|
the hash data from other clients to ncdc\'s format.'; br;br;
|
||||||
end;
|
end;
|
||||||
li; txt 'What protocol features does ncdc support?'; br;
|
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 'Hub: NoGetINFO and NoHello.'; br;
|
||||||
txt 'Client: MiniSlots, XmlBZList, ADCGet, TTHL and TTHF.'; br;
|
txt 'Client: MiniSlots, XmlBZList, ADCGet, TTHL and TTHF.'; br;
|
||||||
txt q|That is pretty much everything you'd expect any modern client to
|
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:";
|
you can use '/connect' to actually connect to the hub:";
|
||||||
pre class => 'code';
|
pre class => 'code';
|
||||||
txt '/open '; b 'ncdc'; br;
|
txt '/open '; b 'ncdc'; br;
|
||||||
txt '/connect '; b 'dchub://dc.blicky.net:8888/';
|
txt '/connect '; b 'adc://dc.blicky.net:2780/';
|
||||||
end;
|
end;
|
||||||
p "The name you specify with '/open' will be used by ncdc to refer to this
|
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
|
hub. After this, you can always reconnect to this hub simply by typing '/open
|
||||||
|
|
@ -345,6 +348,7 @@ sub ncdcguide {
|
||||||
b 'Alt+<num>'; txt ' open tab with number <num>.'; br;
|
b 'Alt+<num>'; txt ' open tab with number <num>.'; br;
|
||||||
b 'Alt+c'; txt ' close current tab.'; br;
|
b 'Alt+c'; txt ' close current tab.'; br;
|
||||||
b 'Alt+n'; txt ' open the connections 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;
|
b 'Ctrl+c'; txt ' quit ncdc.'; br;
|
||||||
end;
|
end;
|
||||||
p "Lots of functionality is hidden behind commands and settings, use '/help'
|
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 'c'; txt ' toggle connection column.'; br;
|
||||||
b 'i'; txt ' toggle information box.'; br;
|
b 'i'; txt ' toggle information box.'; br;
|
||||||
b 'm'; txt ' PM the selected user.'; br;
|
b 'm'; txt ' PM the selected user.'; br;
|
||||||
|
b 'b'; txt ' browse the selected users\' list.'; br;
|
||||||
end;
|
end;
|
||||||
$s->htmlFooter;
|
$s->htmlFooter;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue