ncdc 1.24

This commit is contained in:
Yorhel 2024-01-07 18:53:01 +01:00
parent 660466e13b
commit 8f8f599f66
24 changed files with 122 additions and 22 deletions

View file

@ -19,6 +19,10 @@ the incidental article on this site. Enjoy your stay!
<!-- These announcements are parsed by mkfeed.pl, see that file for formatting -->
## Announcements <a href="/feed.atom"><img src="/img/feed_icon.png" alt="Atom feed"></a>
`2024-01-07` - ncdc 1.24 released <!-- link: /ncdc -->
: A bunch of small fixes and updates that accumulated over the years, nothing
special. [Ncdc homepage](/ncdc) - [changelog](/ncdc/changes)
`2023-12-10` - torreas 0.2 released <!-- link: /torreas -->
: Adds support for partial reassembly and fixes a bug.
[Homepage](/torreas) - [Changelog](/torreas/changes).

View file

@ -5,14 +5,14 @@ Ncdc is a lightweight direct connect client with a friendly ncurses interface.
## Get ncdc! <a href="/ncdc/feed.atom"><img src="/img/feed_icon.png" alt="Atom feed"></a>
Latest version
: 1.23.1 ([ncdc-1.23.1.tar.gz](/download/ncdc-1.23.1.tar.gz)
: 1.24 ([ncdc-1.24.tar.gz](/download/ncdc-1.24.tar.gz)
\- [changes](https://dev.yorhel.nl/ncdc/changes))
Convenient static binaries for Linux:
[x86-64](/download/ncdc-linux-x86_64-1.23.1.tar.gz) -
[i486](/download/ncdc-linux-i486-1.23.1.tar.gz) -
[ARM](/download/ncdc-linux-arm-1.23.1.tar.gz) -
[AArch64](/download/ncdc-linux-aarch64-1.23.1.tar.gz). Check the
[x86-64](/download/ncdc-linux-x86_64-1.24.tar.gz) -
[i486](/download/ncdc-linux-i486-1.24.tar.gz) -
[ARM](/download/ncdc-linux-arm-1.24.tar.gz) -
[AArch64](/download/ncdc-linux-aarch64-1.24.tar.gz). Check the
[installation instructions](/ncdc/install) for more info.
Development version

View file

@ -27,10 +27,10 @@ this page are of course highly welcomed as well. :-)
If you just want to get ncdc running without going through the trouble of
compiling and/or installing it, I also offer statically linked binaries:
- [Linux, x86-64](/download/ncdc-linux-x86_64-1.23.1.tar.gz)
- [Linux, i486](/download/ncdc-linux-i486-1.23.1.tar.gz)
- [Linux, ARM](/download/ncdc-linux-arm-1.23.1.tar.gz)
- [Linux, AArch64](/download/ncdc-linux-aarch64-1.23.1.tar.gz)
- [Linux, x86-64](/download/ncdc-linux-x86_64-1.24.tar.gz)
- [Linux, i486](/download/ncdc-linux-i486-1.24.tar.gz)
- [Linux, ARM](/download/ncdc-linux-arm-1.24.tar.gz)
- [Linux, AArch64](/download/ncdc-linux-aarch64-1.24.tar.gz)
To use them, simply download and extract the tarball, and then run `./ncdc` on
the command line.
@ -88,9 +88,9 @@ Ncdc is available in [Homebrew](https://formulae.brew.sh/formula/ncdc).
Compile & install from source:
doas pkg_add -i glib2
ftp https://dev.yorhel.nl/download/ncdc-1.23.1.tar.gz
tar zxvf ncdc-1.23.1.tar.gz
cd ncdc-1.23.1
ftp https://dev.yorhel.nl/download/ncdc-1.24.tar.gz
tar zxvf ncdc-1.24.tar.gz
cd ncdc-1.24
./configure NCURSES_CFLAGS="-lncurses" NCURSES_LIBS="-lncursesw"\
CPPFLAGS="-I/usr/include -I/usr/local/include"\
LDFLAGS="-L/usr/lib -L/usr/local/lib"
@ -107,9 +107,9 @@ First install some required packages (as root):
Then, fetch the ncdc source tarball, extract and build as follows:
wget https://dev.yorhel.nl/download/ncdc-1.23.1.tar.gz
tar -xf ncdc-1.23.1.tar.gz
cd ncdc-1.23.1
wget https://dev.yorhel.nl/download/ncdc-1.24.tar.gz
tar -xf ncdc-1.24.tar.gz
cd ncdc-1.24
export PATH="$PATH:/usr/perl5/5.10.0/bin"
./configure --prefix=/usr LDFLAGS='-L/usr/gnu/lib -R/usr/gnu/lib'
make
@ -140,9 +140,9 @@ install the required libraries:
Then run the following commands to download and install ncdc:
wget https://dev.yorhel.nl/download/ncdc-1.23.1.tar.gz
tar -xf ncdc-1.23.1.tar.gz
cd ncdc-1.23.1
wget https://dev.yorhel.nl/download/ncdc-1.24.tar.gz
tar -xf ncdc-1.24.tar.gz
cd ncdc-1.24
./configure --prefix=/usr
make
sudo make install
@ -168,8 +168,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 https://dev.yorhel.nl/download/ncdc-1.23.1.tar.gz
tar -xf ncdc-1.23.1.tar.gz
cd ncdc-1.23.1
wget https://dev.yorhel.nl/download/ncdc-1.24.tar.gz
tar -xf ncdc-1.24.tar.gz
cd ncdc-1.24
./configure --prefix=/usr
make install

View file

@ -684,6 +684,7 @@ C</help keys> command, and is reproduced below.
Right/l Open selected directory.
Left/h Open parent directory.
t Toggle sorting directories before files.
u Toggle sorting unknown files before files existing locally.
s Order by file size.
n Order by file name.
d Add selected file/directory to the download queue.
@ -993,7 +994,7 @@ see the same uploaded file several times with a different file offset.
=head1 LICENSE
Copyright (C) 2011-2019 Yoran Heling <projects@yorhel.nl>
Copyright (C) Yoran Heling <projects@yorhel.nl>
ncdc is distributed under the MIT license, please read the COPYING file for
more information.