Ignore:
Timestamp:
02/11/03 06:48:12 (21 years ago)
Author:
Nicholas Riley
Message:

appswitch 1.0b2

Location:
trunk/appswitch/appswitch
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/appswitch/appswitch/README

    r92 r97  
    1 appswitch 1.0b1 [10 February 2003]
     1appswitch 1.0b2 [11 February 2003]
    22===============
    33
     
    7373---------------
    7474
     751.0b2 - 11 February 2003
     76 - display ? characters for unprintable creator code characters
     77   (e.g. java)
     78 - fixed -P/-p error in man page
     79 - revised and clarified man page
    75801.0b1 - 10 February 2003
    7681 - added -S, -S, -h, -H, -k, -P, -l, -F options
  • trunk/appswitch/appswitch/VERSION

    r92 r97  
    1 1.0b1
     11.0b2
  • trunk/appswitch/appswitch/appswitch.1

    r96 r97  
    1 .Dd Mon Feb 10 2003               \" DATE
     1.Dd Mon Feb 11 2003               \" DATE
    22.Dt APPSWITCH 1 LOCAL      \" Program name and manual section number
    3 .Os appswitch 1.0b1
     3.Os appswitch 1.0b2
    44.Sh NAME
    55.Nm appswitch
  • trunk/appswitch/appswitch/main.c

    r92 r97  
    2424const char *APP_NAME;
    2525
    26 #define VERSION "1.0b1"
     26#define VERSION "1.0b2"
    2727
    2828struct {
     
    298298        if (OPTS.appAction == APP_LIST) {
    299299            char *type = (char *)&(info->ExecFileType), *crea = (char *)&(info->ExecFileCreator);
     300#define CXX(c) ( (c) < ' ' ? '?' : (c) )
     301#define OSTYPE_CHAR_ARGS(t) CXX(t[0]), CXX(t[1]), CXX(t[2]), CXX(t[3])
    300302            printf(format, psn.hi, psn.lo, info->UnixPID,
    301                    type[0], type[1], type[2], type[3],
    302                    crea[0], crea[1], crea[2], crea[3],
     303                   OSTYPE_CHAR_ARGS(type), OSTYPE_CHAR_ARGS(crea),
    303304                   name, path);
    304305            continue;
Note: See TracChangeset for help on using the changeset viewer.