ncdc 0.7 released + thing about daemonizing added to FAQ
This commit is contained in:
parent
4a672c8428
commit
419085024b
3 changed files with 28 additions and 4 deletions
|
|
@ -1,3 +1,14 @@
|
||||||
|
0.7 - 2011-08-17
|
||||||
|
- Added word wrapping for the log window
|
||||||
|
- Added basic colors and nick highlighting to the log window
|
||||||
|
- Allow colors to be changed with the /set command
|
||||||
|
- Added backlog feature and setting
|
||||||
|
- Added silent building to the configure script
|
||||||
|
- Automatically re-open log files when they are moved/truncated externally
|
||||||
|
- Accept 'nmdc://' URLs as alternative to 'dchub://'
|
||||||
|
- Fixed spamming of useless $MyINFO and BINF commands every 5 minutes
|
||||||
|
- Fixed minor memory leak when closing/clearing the log window
|
||||||
|
|
||||||
0.6 - 2011-08-08
|
0.6 - 2011-08-08
|
||||||
- Added file searching, through a /search command
|
- Added file searching, through a /search command
|
||||||
- Added tab to display the search results
|
- Added tab to display the search results
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
21
index.cgi
21
index.cgi
|
|
@ -52,6 +52,7 @@ sub home {
|
||||||
E;
|
E;
|
||||||
end;
|
end;
|
||||||
h2 'Updates';
|
h2 'Updates';
|
||||||
|
b '2011-08-17'; txt ' ncdc 0.7 released!'; br;
|
||||||
b '2011-08-08'; txt ' ncdc 0.6 released & user guide updated'; br;
|
b '2011-08-08'; txt ' ncdc 0.6 released & user guide updated'; br;
|
||||||
b '2011-08-02'; txt ' ncdc 0.5 released!'; br;
|
b '2011-08-02'; txt ' ncdc 0.5 released!'; br;
|
||||||
b '2011-07-23'; txt ' ncdc 0.4 released!'; br;
|
b '2011-07-23'; txt ' ncdc 0.4 released!'; br;
|
||||||
|
|
@ -209,8 +210,8 @@ sub ncdc {
|
||||||
|
|
||||||
h2 'Try it out';
|
h2 'Try it out';
|
||||||
p;
|
p;
|
||||||
b 'Latest version:'; txt ' 0.6 (';
|
b 'Latest version:'; txt ' 0.7 (';
|
||||||
a href => '/download/ncdc-0.6.tar.gz', 'download';
|
a href => '/download/ncdc-0.7.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';
|
||||||
|
|
@ -230,8 +231,8 @@ sub ncdc {
|
||||||
may have all of these installed already.<br />
|
may have all of these installed already.<br />
|
||||||
Ncdc has been developed on a recent Arch Linux installation and has been
|
Ncdc has been developed on a recent Arch Linux installation and has been
|
||||||
tested on FreeBSD 8.2 and Debian Squeeze. I have also received reports from
|
tested on FreeBSD 8.2 and Debian Squeeze. I have also received reports from
|
||||||
people who successfully used it on Mac OS X, Ubuntu and CentOS. It should
|
people who successfully used it on Gentoo, Mac OS X, Ubuntu and CentOS. It
|
||||||
be fairly trivial to port to other POSIX-like systems.<br />
|
should be fairly trivial to port to other POSIX-like systems.<br />
|
||||||
Ncdc is entirely written in C and available under a liberal MIT license.
|
Ncdc is entirely written in C and available under a liberal MIT license.
|
||||||
E;
|
E;
|
||||||
end;
|
end;
|
||||||
|
|
@ -277,6 +278,18 @@ sub ncdcfaq {
|
||||||
However, on popular demand I could write a conversion utility to transfer
|
However, on popular demand I could write a conversion utility to transfer
|
||||||
the hash data from other clients to ncdc\'s format.';
|
the hash data from other clients to ncdc\'s format.';
|
||||||
|
|
||||||
|
h2 'Can ncdc run in the background / as a daemon?';
|
||||||
|
p;
|
||||||
|
lit <<' E;';
|
||||||
|
As with most ncurses applications: no. At least, it does not have this
|
||||||
|
functionality built-in. Ncdc is designed to be used in combination with a
|
||||||
|
separate terminal multiplexer or detach utility to handle this. Have a look
|
||||||
|
at <a href="http://www.gnu.org/s/screen/">GNU screen</a>,
|
||||||
|
<a href="http://tmux.sourceforge.net/">tmux</a> or
|
||||||
|
<a href="http://dtach.sourceforge.net/">dtach</a>.
|
||||||
|
E;
|
||||||
|
end;
|
||||||
|
|
||||||
h2 'Does ncdc support TLS?';
|
h2 'Does ncdc support TLS?';
|
||||||
p;
|
p;
|
||||||
lit <<' E;';
|
lit <<' E;';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue