ncdc 1.17

This commit is contained in:
Yorhel 2013-06-24 16:59:03 +02:00
parent 2c6db29f18
commit 8cf8e6eeb2
9 changed files with 126 additions and 19 deletions

View file

@ -10,14 +10,14 @@ ncurses interface.
=item Latest version
1.16.1 ([dllink ncdc-1.16.1.tar.gz download]
1.17 ([dllink ncdc-1.17.tar.gz download]
- L<changes|http://dev.yorhel.nl/ncdc/changes>
- L<mirror|https://sourceforge.net/projects/ncdc/files/ncdc/>)
Convenient static binaries for Linux:
L<64-bit|http://dev.yorhel.nl/download/ncdc-linux-x86_64-1.16.1.tar.gz> -
L<32-bit|http://dev.yorhel.nl/download/ncdc-linux-i486-1.16.1.tar.gz> -
L<ARM|http://dev.yorhel.nl/download/ncdc-linux-arm-1.16.1.tar.gz>. Check the
L<64-bit|http://dev.yorhel.nl/download/ncdc-linux-x86_64-1.17.tar.gz> -
L<32-bit|http://dev.yorhel.nl/download/ncdc-linux-i486-1.17.tar.gz> -
L<ARM|http://dev.yorhel.nl/download/ncdc-linux-arm-1.17.tar.gz>. Check the
L<installation instructions|http://dev.yorhel.nl/ncdc/install> for more info.
B<Note:> The static binaries have some problems with chatting and searching on
KOI8-R NMDC hubs, use an alternative installation method if you're affected by

View file

@ -1,3 +1,14 @@
1.17 - 2013-06-15
- Add 'q' key to user list for matching a users' files with download queue
- Add transfers.log format documentation to manual page
- Consider non-alphanumeric characters as word separators in input line
- Fix outgoing UDP messages to respect local_address setting
- Fix Alt+Backspace on xterm-like terminals
- Fix handling of "." and ".." file/directory names in files.xml.bz2
- Fix possible crash when receiving unexpected encrypted search results
- Fix sendfile() handling to use fallback on EOVERFLOW
- Fix possible crash when logging UDP messages
1.16.1 - 2013-03-23
- Fix crash when opening connection on ADC in passive mode
- Fix documentation of 'd' key in download_exclude setting

View file

@ -90,7 +90,7 @@ low-end devices. Updating to ncdc 1.15 or later should fix this.
=head2 Ncdc crashes a lot!
Ncdc 1.16.1 has no known bugs that may cause a crash. If you're running an
Ncdc 1.17 has no known bugs that may cause a crash. If you're running an
older version of ncdc, please upgrade. If your ncdc is up to date and you still
have a crash, please report a bug.

View file

@ -38,11 +38,11 @@ compiling and/or installing it, I also offer statically linked binaries:
=over
=item * L<Linux, 64-bit|http://dev.yorhel.nl/download/ncdc-linux-x86_64-1.16.1.tar.gz>
=item * L<Linux, 64-bit|http://dev.yorhel.nl/download/ncdc-linux-x86_64-1.17.tar.gz>
=item * L<Linux, 32-bit|http://dev.yorhel.nl/download/ncdc-linux-i486-1.16.1.tar.gz>
=item * L<Linux, 32-bit|http://dev.yorhel.nl/download/ncdc-linux-i486-1.17.tar.gz>
=item * L<Linux, ARM|http://dev.yorhel.nl/download/ncdc-linux-arm-1.16.1.tar.gz>
=item * L<Linux, ARM|http://dev.yorhel.nl/download/ncdc-linux-arm-1.17.tar.gz>
=back
@ -115,9 +115,9 @@ First install some required packages (as root):
Then, fetch the ncdc source tarball, extract and build as follows:
wget http://dev.yorhel.nl/download/ncdc-1.16.1.tar.gz
tar -xf ncdc-1.16.1.tar.gz
cd ncdc-1.16.1
wget http://dev.yorhel.nl/download/ncdc-1.17.tar.gz
tar -xf ncdc-1.17.tar.gz
cd ncdc-1.17
export PATH="$PATH:/usr/perl5/5.10.0/bin"
./configure --prefix=/usr LDFLAGS='-L/usr/gnu/lib -R/usr/gnu/lib'
make
@ -165,9 +165,9 @@ required libraries:
Then run the following commands to download and install ncdc:
wget http://dev.yorhel.nl/download/ncdc-1.16.1.tar.gz
tar -xf ncdc-1.16.1.tar.gz
cd ncdc-1.16.1
wget http://dev.yorhel.nl/download/ncdc-1.17.tar.gz
tar -xf ncdc-1.17.tar.gz
cd ncdc-1.17
./configure --prefix=/usr
make
sudo make install
@ -209,8 +209,8 @@ website|http://cygwin.com/> and use it to install the following packages:
Then open a Cygwin terminal and run the following commands to download,
compile, and install ncdc:
wget http://dev.yorhel.nl/download/ncdc-1.16.1.tar.gz
tar -xf ncdc-1.16.1.tar.gz
cd ncdc-1.16.1
wget http://dev.yorhel.nl/download/ncdc-1.17.tar.gz
tar -xf ncdc-1.17.tar.gz
cd ncdc-1.17
./configure --prefix=/usr
make install

View file

@ -731,6 +731,7 @@ C</help keys> command, and is reproduced below.
m Send a PM to the selected user.
g Grant a slot to the selected user.
b/B Browse the selected users' list, B to force a redownload.
q Match selected users' list with the download queue.
=back
@ -814,6 +815,79 @@ directory at the same time.
=back
=head2 Format of transfers.log
Uploads and downloads are logged in the transfers.log file. Transfers are
separated by a newline (C<0x0a>). Each log line has the following fields,
separated by a space:
=over
=item 1.
Date/time when the transfer ended, formatted as C<[YYYY-MM-DD HH:MM:SS ZONE]>,
=item 2.
Hub name, including the C<#> prefix,
=item 3.
Base32-encoded CID of the other user for ADC transfers, or a '-' for NMDC,
=item 4.
User name (escaped),
=item 5.
IPv4 or IPv6 address,
=item 6.
Direction, C<u> for upload or C<d> for download,
=item 7.
Whether the transfer completed successfully (C<c>) or has been
interrupted/disconnected before all requested file data has been transferred
(C<i>),
=item 8.
Base32-encoded TTH of the transferred file, or '-' for C<files.xml.bz2>,
=item 9.
Total transfer time, in seconds,
=item 10.
File size, in bytes,
=item 11.
File offset, in bytes,
=item 12.
Transfer size, in bytes,
=item 13.
File path (escaped). Absolute virtual path for uploads, destination path for
downloads.
=back
All fields are encoded in UTF-8. Fields that may contain a space or newline are
escaped as follows: A space is escaped as C<\s>, a newline as C<\n> and a
backslash as C<\\>. The timestamp is not escaped.
Many clients download files is separate (smallish) chunks. Ncdc makes no
attempt to combine multiple chunk requests in a single log entry, so you may
see the same uploaded file several times with a different file offset.
=head1 LICENSE
@ -824,8 +898,10 @@ more information.
=head1 BUGS
Please report bugs or feature requests to projects@yorhel.nl or connect to the
development hub at adc://dc.blicky.net:2780/.
Please report bugs or feature requests to the bug tracker or the mailing list.
Both can be found on the ncdc homepage at L<http://dev.yorhel.nl/ncdc>. There
is also an ADC hub available at C<adc://dc.blicky.net:2780/> for general
support and discussions.
=head1 AUTHOR