ncdc 1.3 released + misc. fixes

This commit is contained in:
Yorhel 2011-10-14 18:23:54 +02:00
parent 9290e21c3b
commit a328048251
3 changed files with 57 additions and 9 deletions

View file

@ -1,3 +1,19 @@
1.3 - 2011-10-14
- Added multi-source downloading
- Added user information view and management keys to download queue tab
- Added "search for alternative" key to queue, file browser and search tabs
- Added "match queue" key to file browser and search tabs
- Added ui_time_format setting
- Added chat_only setting
- Changed default value of color_log_time to dark grey
- Improved tracking of a parent for each tab
- Improved portability for Solaris
- Fixed crash when closing a hub tab while it is connecting
- Fixed crash when auto-completing settings without auto-completion
- Fixed bug with file name display if download_dir ends with a slash
- Fixed bug with uploading chunks larger than 2GiB
- Fixed handling of directory search results on ADC
1.2 - 2011-09-25
- Fixed incorrect handling of outgoing NMDC connections

View file

@ -227,7 +227,7 @@ INTERACTIVE COMMANDS
Available options:
-hub Search the current hub only. (default)
-all Search all connected hubs.
-all Search all connected hubs, except those with `chat_only' set.
-le <s> Size of the file must be less than <s>.
-ge <s> Size of the file must be larger than <s>.
-t <t> File must be of type <t>. (see below)
@ -343,6 +343,11 @@ SETTINGS
that, while this setting can be set on a per-hub basis, PM windows will
use the global value (global.backlog).
chat_only <boolean>
Set to true to indicate that this hub is only used for chatting. That is,
you won't or can't download from it. This setting affects the /search
command when it is given the -all option.
color_* <color>
The settings starting with the `color_' prefix allow you to change the
interface colors. The following is a list of available color settings:
@ -498,6 +503,15 @@ SETTINGS
note that, even if you set this to `prefer', TLS will only be used if the
connecting party also supports it.
ui_time_format <string>
The format of the time displayed in the lower-left of the screen. Set `-'
to not display a time at all. The string is passed to the Glib
g_date_time_format() function, which accepts roughly the same formats as
strftime(). Check out the strftime(3) man page or the Glib documentation
for more information. Note that this setting does not influence the
date/time format used in other places, such as the chat window or log
files.
KEY BINDINGS
@ -545,6 +559,9 @@ KEY BINDINGS
Right/l Open selected directory.
Left/h Open parent directory.
d Add selected file/directory to the download queue.
m Match selected item with the download queue.
M Match entire file list with the download queue.
a Search for alternative download sources.
Connection list
Up/Down Select one item up/down.
@ -561,10 +578,16 @@ KEY BINDINGS
k/j Select one item up/down.
PgUp/PgDown Select one page of items up/down.
End/Home Select last/first item in the list.
K/J Select one user up/down.
f Find user in user list.
c Find connection in the connection list.
a Search for alternative download sources.
d Remove selected file from the queue.
+/- Increase/decrease priority.
i/Return Toggle user list.
r Remove selected user for this file.
R Remove selected user from all files in the download queue.
x Clear error state for the selected user.
Note: when an item in the queue has `ERR' indicated in the priority col
umn, you have two choices: You can remove the item from the queue using
@ -583,6 +606,9 @@ KEY BINDINGS
s Order by file size.
l Order by free slots.
n Order by file name.
m Match selected item with the download queue.
M Match all search results with the download queue.
a Search for alternative download sources.
User list tab
Up/Down Select one item up/down.
@ -688,4 +714,4 @@ SEE ALSO
ncdc-1.2 September 2011 ncdc(1)
ncdc-1.3 October 2011 ncdc(1)