* Handle device reconnected more smoothly (USB-serial dongles) * Translation updates: Danish * Several fixes (see ChangeLog) Changes 2.4: * Add -D and -b options to specify device and baud rate on the command line. * Do character conversion between local and remote side (-R option) * Added indonesian translation * Compatibility fixes for recent build environments * Remove code that handled very old systems Changes 2.3: * Fix build on Mac OS X * New version of the dial format to be little and big endian as well as 32/64 bit safe * Support more baud rates * Handle device disappearances (e.g. serial-USB device unplug) * Various build and other fixes Changes 2.2: * Vietnamese translation added * Norwegian translation added * Traditional chinese translation added * Swedish translation added * Romanian translation added * default to 8bit mode if LANG or LC_ALL are set * default baud rate set to 115200 * Various code cleanups and fixes
13 lines
598 B
Text
13 lines
598 B
Text
$NetBSD: patch-ac,v 1.6 2011/08/01 09:30:33 adam Exp $
|
|
|
|
--- src/updown.c.orig 2010-05-30 20:34:00.000000000 +0000
|
|
+++ src/updown.c
|
|
@@ -294,7 +294,7 @@ void updown(int what, int nr)
|
|
do_log("%s", cmdline); /* jl 22.06.97 */
|
|
|
|
if (P_PFULL(g) == 'N') {
|
|
- win = mc_wopen(10, 7, 70, 13, BSINGLE, stdattr, mfcolor, mbcolor, 1, 0, 1);
|
|
+ win = mc_wopen(5, 5, 74, 11, BSINGLE, stdattr, mfcolor, mbcolor, 1, 0, 1);
|
|
snprintf(title, sizeof(title), _("%.30s %s - Press CTRL-C to quit"), P_PNAME(g),
|
|
what == 'U' ? _("upload") : _("download"));
|
|
mc_wtitle(win, TMID, title);
|