mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-23 21:29:45 +00:00
4879056d84
Fixed defect introduced in version 2.0d5: when a background job completed while gsh was waiting for command line input, gsh would print a bogus error message and quit.
36 lines
647 B
Plaintext
36 lines
647 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: gsh.rez,v 1.7 1998/11/02 17:40:56 tribby Exp $
|
|
*/
|
|
|
|
#define PROG "gsh"
|
|
#define DESC "GNO/Shell\n"
|
|
|
|
#include "Types.rez"
|
|
#include "/src/gno/build.tools/builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 0, /* Version 2.0.0 */
|
|
development, /* development|alpha|beta|final|release */
|
|
6 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC
|
|
BUILD_DATE
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v2.0\n"
|
|
DESC
|
|
"Written by Tim Meekins. Updated by Dave Tribby\n"
|
|
BUILD_DATE
|
|
};
|