Changeset 314 for trunk/launch/launch


Ignore:
Timestamp:
11/17/06 23:31:14 (17 years ago)
Author:
Nicholas Riley
Message:

VERSION: Updated for 1.1.1d1.

main.c: Updated error list for 10.4, a bit belatedly.

README: Updated for 1.1.1d1.

Location:
trunk/launch/launch
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/launch/launch/README

    r310 r314  
    1 launch 1.1 [30 October 2006]
    2 ==========
     1launch 1.1.1 [unreleased]
     2============
    33
    44A command-line launcher for Mac OS X in the spirit of open(1).
     
    223223---------------
    224224
     2251.1.1 - unreleased
     226 - updated error codes for Mac OS X 10.4
    2252271.1 - 30 October 2006
    226228 - -L: send "launch" (ascr/noop) event to app, bypasses automatic
  • trunk/launch/launch/VERSION

    r309 r314  
    1 1.1
     11.1.1d1
  • trunk/launch/launch/main.c

    r309 r314  
    7070static errList ERRS = {
    7171    // Launch Services errors
     72    { kLSAppInTrashErr, "application is in the Trash" },
     73    { kLSExecutableIncorrectFormat, "executable is unsupported on this processor architecture" },
    7274    { kLSUnknownErr, "unknown Launch Services error" },
    73     { kLSApplicationNotFoundErr, "application not found" },
     75    { kLSNotAnApplicationErr, "item is not an application" },
     76    { kLSDataUnavailableErr, "item metadata is unavailable" },
     77    { kLSApplicationNotFoundErr, "application not found for document" },
     78    { kLSUnknownTypeErr, "cannot determine item kind" },
    7479    { kLSLaunchInProgressErr, "application is being opened; please try again after the application is open" },
    75     { kLSNotRegisteredErr, "application not registered in Launch Services database" },
     80    { kLSServerCommunicationErr, "unable to connect to Launch Services.\nAre you logged in?" },
     81    { kLSIncompatibleSystemVersionErr, "application is incompatible with this version of Mac OS X" },
     82    { kLSNoLaunchPermissionErr, "no permission to launch this application", },
    7683    { kLSNoExecutableErr, "application package contains no executable, or an unusable executable" },
    7784    { kLSNoClassicEnvironmentErr, "Classic environment required but not available" },
Note: See TracChangeset for help on using the changeset viewer.