dtach 0.8
This commit is contained in:
parent
4e2a059044
commit
637bafd129
17
README
17
README
|
|
@ -114,6 +114,23 @@ method is used as the default redraw method for the session.
|
|||
|
||||
6. CHANGES
|
||||
|
||||
The changes in version 0.8 are:
|
||||
- When using dtach -A or dtach -c, the master will now wait until the client
|
||||
attaches before trying to read from the program being executed. This avoids
|
||||
a race condition when the program prints something and exits before the
|
||||
client can attach itself.
|
||||
- Instead of exiting quietly, dtach will now report any errors that occur
|
||||
while trying to execute the program.
|
||||
- dtach -n can now be used without a terminal.
|
||||
- dtach -A will now try to detect and remove stale sockets.
|
||||
- Removed a Linux-specific escape sequence from the code that restores the
|
||||
original terminal settings.
|
||||
- Changed dtach.1 to use \- for the dashes in command line options, and
|
||||
fix an ambiguous backslash.
|
||||
- Use non-blocking mode in the master process, and avoid data loss by ensuring
|
||||
that at least one attaching client succesfully completes a write.
|
||||
- Fix -e ^<char> to work with lowercase characters.
|
||||
|
||||
The changes in version 0.7 are:
|
||||
- The redraw method can now be explicitly specified on the command line
|
||||
(either no redraw at all, the old ^L character method, and the new WINCH
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Process this file with autoconf to produce a configure script.
|
||||
AC_INIT(dtach, 0.7, crigler@users.sourceforge.net)
|
||||
AC_INIT(dtach, 0.8, crigler@users.sourceforge.net)
|
||||
AC_PREREQ(2.59)
|
||||
AC_CONFIG_SRCDIR(main.c)
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
|
|
|
|||
2
dtach.1
2
dtach.1
|
|
@ -1,4 +1,4 @@
|
|||
.TH dtach 1 "Jul 2004" "dtach 0.7"
|
||||
.TH dtach 1 "Jan 2008" "dtach 0.8"
|
||||
.SH NAME
|
||||
dtach \- simple program that emulates the detach feature of screen.
|
||||
.SH SYNOPSIS
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Summary: A simple program that emulates the detach feature of screen.
|
||||
Name: dtach
|
||||
Version: 0.7
|
||||
Version: 0.8
|
||||
Release: 1
|
||||
License: GPL
|
||||
URL: http://dtach.sourceforge.net
|
||||
|
|
@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
|||
%{_mandir}/*/*
|
||||
|
||||
%changelog
|
||||
* Wed Jan 30 2008 Ned T. Crigler <crigler@users.sourceforge.net> 0.8
|
||||
- New release
|
||||
|
||||
* Sat Jul 3 2004 Ned T. Crigler <crigler@users.sourceforge.net> 0.7
|
||||
- New release
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue